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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-servicecatalog/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)


1960
1961
1962
1963
1964
1965
1966
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1960

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)


1960
1961
1962
1963
1964
1965
1966
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1960

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)


1960
1961
1962
1963
1964
1965
1966
# File 'gems/aws-sdk-servicecatalog/lib/aws-sdk-servicecatalog/types.rb', line 1960

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