Class: AWSCDK::Interfaces::AWSLakeformation::DataCellsFilterReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/aws_lakeformation/data_cells_filter_reference.rb

Overview

A reference to a DataCellsFilter resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(database_name:, data_cells_filter_name:, table_catalog_id:, table_name:) ⇒ DataCellsFilterReference

Returns a new instance of DataCellsFilterReference.

Parameters:

  • database_name (String)

    The DatabaseName of the DataCellsFilter resource.

  • data_cells_filter_name (String)

    The Name of the DataCellsFilter resource.

  • table_catalog_id (String)

    The TableCatalogId of the DataCellsFilter resource.

  • table_name (String)

    The TableName of the DataCellsFilter resource.



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_nameString (readonly)

The Name of the DataCellsFilter resource.

Returns:

  • (String)


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_nameString (readonly)

The DatabaseName of the DataCellsFilter resource.

Returns:

  • (String)


25
26
27
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 25

def database_name
  @database_name
end

#table_catalog_idString (readonly)

The TableCatalogId of the DataCellsFilter resource.

Returns:

  • (String)


33
34
35
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 33

def table_catalog_id
  @table_catalog_id
end

#table_nameString (readonly)

The TableName of the DataCellsFilter resource.

Returns:

  • (String)


37
38
39
# File 'interfaces/aws_lakeformation/data_cells_filter_reference.rb', line 37

def table_name
  @table_name
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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