Class: Aws::DataZone::Types::AssetFilterConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DataZone::Types::AssetFilterConfiguration
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
Note:
AssetFilterConfiguration is a union - when making an API calls you must set exactly one of the members.
Note:
AssetFilterConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AssetFilterConfiguration corresponding to the set member.
The configuration details of the asset filter.
Direct Known Subclasses
Defined Under Namespace
Classes: ColumnConfiguration, RowConfiguration, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#column_configuration ⇒ Types::ColumnFilterConfiguration
The column configuration of the asset filter.
-
#row_configuration ⇒ Types::RowFilterConfiguration
The row configuration of the asset filter.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#column_configuration ⇒ Types::ColumnFilterConfiguration
The column configuration of the asset filter.
434 435 436 437 438 439 440 441 442 443 444 445 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 434 class AssetFilterConfiguration < Struct.new( :column_configuration, :row_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ColumnConfiguration < AssetFilterConfiguration; end class RowConfiguration < AssetFilterConfiguration; end class Unknown < AssetFilterConfiguration; end end |
#row_configuration ⇒ Types::RowFilterConfiguration
The row configuration of the asset filter.
434 435 436 437 438 439 440 441 442 443 444 445 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 434 class AssetFilterConfiguration < Struct.new( :column_configuration, :row_configuration, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ColumnConfiguration < AssetFilterConfiguration; end class RowConfiguration < AssetFilterConfiguration; end class Unknown < AssetFilterConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
434 435 436 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 434 def unknown @unknown end |