Class: Aws::ServiceCatalog::Types::GetProvisionedProductOutputsOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::GetProvisionedProductOutputsOutput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicecatalog/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
The page token to use to retrieve the next set of results.
-
#outputs ⇒ Array<Types::RecordOutput>
Information about the product created as the result of a request.
Instance Attribute Details
#next_page_token ⇒ String
The page token to use to retrieve the next set of results. If there are no additional results, this value is null.
2812 2813 2814 2815 2816 2817 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2812 class GetProvisionedProductOutputsOutput < Struct.new( :outputs, :next_page_token) SENSITIVE = [] include Aws::Structure end |
#outputs ⇒ Array<Types::RecordOutput>
Information about the product created as the result of a request. For example, the output for a CloudFormation-backed product that creates an S3 bucket would include the S3 bucket URL.
2812 2813 2814 2815 2816 2817 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2812 class GetProvisionedProductOutputsOutput < Struct.new( :outputs, :next_page_token) SENSITIVE = [] include Aws::Structure end |