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

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-servicecatalog/types.rb

Overview

Note:

When making an API call, you may pass DescribeProvisionedProductInput data as a hash:

{
  accept_language: "AcceptLanguage",
  id: "Id", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


1954
1955
1956
1957
1958
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1954

class DescribeProvisionedProductInput < Struct.new(
  :accept_language,
  :id)
  include Aws::Structure
end

#idString

The provisioned product identifier.

Returns:

  • (String)


1954
1955
1956
1957
1958
# File 'lib/aws-sdk-servicecatalog/types.rb', line 1954

class DescribeProvisionedProductInput < Struct.new(
  :accept_language,
  :id)
  include Aws::Structure
end