Class: Aws::LakeFormation::Types::CreateDataCellsFilterRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::LakeFormation::Types::CreateDataCellsFilterRequest
- Defined in:
- gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb
Overview
Note:
When making an API call, you may pass CreateDataCellsFilterRequest data as a hash:
{
table_data: { # required
table_catalog_id: "CatalogIdString", # required
database_name: "NameString", # required
table_name: "NameString", # required
name: "NameString", # required
row_filter: {
filter_expression: "PredicateString",
all_rows_wildcard: {
},
},
column_names: ["NameString"],
column_wildcard: {
excluded_column_names: ["NameString"],
},
},
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#table_data ⇒ Types::DataCellsFilter
A
DataCellsFilter
structure containing information about the data cells filter.
Instance Attribute Details
#table_data ⇒ Types::DataCellsFilter
A DataCellsFilter
structure containing information about the data
cells filter.
679 680 681 682 683 |
# File 'gems/aws-sdk-lakeformation/lib/aws-sdk-lakeformation/types.rb', line 679 class CreateDataCellsFilterRequest < Struct.new( :table_data) SENSITIVE = [] include Aws::Structure end |