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",
  name: "ProvisionedProductName",
}

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.

  • ‘en` - English (default)

  • ‘jp` - Japanese

  • ‘zh` - Chinese

Returns:

  • (String)


2266
2267
2268
2269
2270
2271
2272
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2266

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)


2266
2267
2268
2269
2270
2271
2272
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2266

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)


2266
2267
2268
2269
2270
2271
2272
# File 'lib/aws-sdk-servicecatalog/types.rb', line 2266

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