Class: Aws::MarketplaceDiscovery::Types::LegalTerm
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceDiscovery::Types::LegalTerm
- Defined in:
- gems/aws-sdk-marketplacediscovery/lib/aws-sdk-marketplacediscovery/types.rb
Overview
Defines a legal term containing documents proposed to buyers, such as EULAs and data subscription agreements.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#documents ⇒ Array<Types::DocumentItem>
The legal documents proposed to the buyer as part of this term.
-
#id ⇒ String
The unique identifier of the term.
-
#type ⇒ String
The category of the term.
Instance Attribute Details
#documents ⇒ Array<Types::DocumentItem>
The legal documents proposed to the buyer as part of this term.
1607 1608 1609 1610 1611 1612 1613 |
# File 'gems/aws-sdk-marketplacediscovery/lib/aws-sdk-marketplacediscovery/types.rb', line 1607 class LegalTerm < Struct.new( :id, :type, :documents) SENSITIVE = [] include Aws::Structure end |