Class: Aws::MarketplaceAgreement::Types::Resource
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceAgreement::Types::Resource
- 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
-
#id ⇒ String
The unique identifier of the resource.
-
#type ⇒ String
Type of the resource, which is the product.
Instance Attribute Details
#id ⇒ String
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>
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 |