Class: Aws::ServiceCatalog::Types::DescribeProvisionedProductInput

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#accept_languageString

The language code.

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


1933
1934
1935
1936
1937
1938
1939
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1933

class DescribeProvisionedProductInput < Struct.new(
  :accept_language,
  :id,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#idString

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.

Returns:

  • (String)


1933
1934
1935
1936
1937
1938
1939
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1933

class DescribeProvisionedProductInput < Struct.new(
  :accept_language,
  :id,
  :name)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

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.

Returns:

  • (String)


1933
1934
1935
1936
1937
1938
1939
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1933

class DescribeProvisionedProductInput < Struct.new(
  :accept_language,
  :id,
  :name)
  SENSITIVE = []
  include Aws::Structure
end