Class: Aws::MarketplaceCatalog::Types::EntityRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceCatalog::Types::EntityRequest
- Defined in:
- gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb
Overview
An object that contains entity ID and the catalog in which the entity is present.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog ⇒ String
The name of the catalog the entity is present in.
-
#entity_id ⇒ String
The ID of the entity.
Instance Attribute Details
#catalog ⇒ String
The name of the catalog the entity is present in. The only value at
this time is AWSMarketplace
.
975 976 977 978 979 980 |
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 975 class EntityRequest < Struct.new( :catalog, :entity_id) SENSITIVE = [] include Aws::Structure end |
#entity_id ⇒ String
The ID of the entity.
975 976 977 978 979 980 |
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 975 class EntityRequest < Struct.new( :catalog, :entity_id) SENSITIVE = [] include Aws::Structure end |