Class: Aws::ServiceCatalog::Types::DescribeProvisionedProductInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServiceCatalog::Types::DescribeProvisionedProductInput
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-servicecatalog/types.rb
Overview
DescribeProvisionedProductAPI input structure. AcceptLanguage - [Optional] The language code for localization. Id - [Optional] The provisioned product identifier. Name - [Optional] Another provisioned product identifier. Customers must provide either Id or Name.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#accept_language ⇒ String
The language code.
-
#id ⇒ String
The provisioned product identifier.
-
#name ⇒ String
The name of the provisioned product.
Instance Attribute Details
#accept_language ⇒ String
The language code.
-
‘jp` - Japanese
-
‘zh` - Chinese
1960 1961 1962 1963 1964 1965 1966 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1960 class DescribeProvisionedProductInput < Struct.new( :accept_language, :id, :name) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The provisioned product identifier. You must provide the name or ID, but not both.
If you do not provide a name or ID, or you provide both name and ID, an ‘InvalidParametersException` will occur.
1960 1961 1962 1963 1964 1965 1966 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1960 class DescribeProvisionedProductInput < Struct.new( :accept_language, :id, :name) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the provisioned product. You must provide the name or ID, but not both.
If you do not provide a name or ID, or you provide both name and ID, an ‘InvalidParametersException` will occur.
1960 1961 1962 1963 1964 1965 1966 |
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1960 class DescribeProvisionedProductInput < Struct.new( :accept_language, :id, :name) SENSITIVE = [] include Aws::Structure end |