Class: Aws::MarketplaceCatalog::Types::Filter
- Inherits:
-
Struct
- Object
- Struct
- Aws::MarketplaceCatalog::Types::Filter
- Defined in:
- gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb
Overview
A filter object, used to optionally filter results from calls to the
ListEntities
and ListChangeSets
actions.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
For
ListEntities
, the supported value for this is anEntityId
. -
#value_list ⇒ Array<String>
ListEntities
- This is a list of uniqueEntityId
s.
Instance Attribute Details
#name ⇒ String
For ListEntities
, the supported value for this is an EntityId
.
For ListChangeSets
, the supported values are as follows:
1222 1223 1224 1225 1226 1227 |
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 1222 class Filter < Struct.new( :name, :value_list) SENSITIVE = [] include Aws::Structure end |
#value_list ⇒ Array<String>
ListEntities
- This is a list of unique EntityId
s.
ListChangeSets
- The supported filter names and associated
ValueList
s is as follows:
ChangeSetName
- The supportedValueList
is a list of non-uniqueChangeSetName
s. These are defined when you call theStartChangeSet
action.Status
- The supportedValueList
is a list of statuses for all change set requests.EntityId
- The supportedValueList
is a list of uniqueEntityId
s.BeforeStartTime
- The supportedValueList
is a list of all change sets that started before the filter value.AfterStartTime
- The supportedValueList
is a list of all change sets that started after the filter value.BeforeEndTime
- The supportedValueList
is a list of all change sets that ended before the filter value.AfterEndTime
- The supportedValueList
is a list of all change sets that ended after the filter value.
1222 1223 1224 1225 1226 1227 |
# File 'gems/aws-sdk-marketplacecatalog/lib/aws-sdk-marketplacecatalog/types.rb', line 1222 class Filter < Struct.new( :name, :value_list) SENSITIVE = [] include Aws::Structure end |