Class: AWSCDK::Interfaces::AWSLakeformation::DataCellsFilterReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSLakeformation::DataCellsFilterReference
- Defined in:
- interfaces/aws_lakeformation/data_cells_filter_reference.rb
Overview
A reference to a DataCellsFilter resource.
Instance Attribute Summary collapse
-
#data_cells_filter_name ⇒ String
readonly
The Name of the DataCellsFilter resource.
-
#database_name ⇒ String
readonly
The DatabaseName of the DataCellsFilter resource.
-
#table_catalog_id ⇒ String
readonly
The TableCatalogId of the DataCellsFilter resource.
-
#table_name ⇒ String
readonly
The TableName of the DataCellsFilter resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(database_name:, data_cells_filter_name:, table_catalog_id:, table_name:) ⇒ DataCellsFilterReference
constructor
A new instance of DataCellsFilterReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(database_name:, data_cells_filter_name:, table_catalog_id:, table_name:) ⇒ DataCellsFilterReference
Returns a new instance of DataCellsFilterReference.
11 12 13 14 15 16 17 18 19 20 |
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 11 def initialize(database_name:, data_cells_filter_name:, table_catalog_id:, table_name:) @database_name = database_name Jsii::Type.check_type(@database_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "databaseName") @data_cells_filter_name = data_cells_filter_name Jsii::Type.check_type(@data_cells_filter_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "dataCellsFilterName") @table_catalog_id = table_catalog_id Jsii::Type.check_type(@table_catalog_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "tableCatalogId") @table_name = table_name Jsii::Type.check_type(@table_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "tableName") end |
Instance Attribute Details
#data_cells_filter_name ⇒ String (readonly)
The Name of the DataCellsFilter resource.
29 30 31 |
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 29 def data_cells_filter_name @data_cells_filter_name end |
#database_name ⇒ String (readonly)
The DatabaseName of the DataCellsFilter resource.
25 26 27 |
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 25 def database_name @database_name end |
#table_catalog_id ⇒ String (readonly)
The TableCatalogId of the DataCellsFilter resource.
33 34 35 |
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 33 def table_catalog_id @table_catalog_id end |
#table_name ⇒ String (readonly)
The TableName of the DataCellsFilter resource.
37 38 39 |
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 37 def table_name @table_name end |
Class Method Details
.jsii_properties ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 39 def self.jsii_properties { :database_name => "databaseName", :data_cells_filter_name => "dataCellsFilterName", :table_catalog_id => "tableCatalogId", :table_name => "tableName", } end |
Instance Method Details
#to_jsii ⇒ Object
48 49 50 51 52 53 54 55 56 57 |
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 48 def to_jsii result = {} result.merge!({ "databaseName" => @database_name, "dataCellsFilterName" => @data_cells_filter_name, "tableCatalogId" => @table_catalog_id, "tableName" => @table_name, }) result.compact end |