Class: Aws::MarketplaceAgreement::Types::Resource

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

Overview

The list of resources involved in the agreement.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#idString

The unique identifier of the resource.

<note markdown=“1”> We mention the term resource, which is most commonly a product, so a ‘resourceId` is also a `productId`.

</note>

Returns:

  • (String)


918
919
920
921
922
923
# File 'lib/aws-sdk-marketplaceagreement/types.rb', line 918

class Resource < Struct.new(
  :id,
  :type)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

Type of the resource, which is the product. Values include ‘SaaSProduct` or `AmiProduct`.

Returns:

  • (String)


918
919
920
921
922
923
# File 'lib/aws-sdk-marketplaceagreement/types.rb', line 918

class Resource < Struct.new(
  :id,
  :type)
  SENSITIVE = []
  include Aws::Structure
end