Class: AWSCDK::AppFlow::CfnFlow::GlueDataCatalogProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::AppFlow::CfnFlow::GlueDataCatalogProperty
- Defined in:
- app_flow/cfn_flow.rb
Overview
Trigger settings of the flow.
Instance Attribute Summary collapse
-
#database_name ⇒ String
readonly
A string containing the value for the tag.
-
#role_arn ⇒ String
readonly
A string containing the value for the tag.
-
#table_prefix ⇒ String
readonly
A string containing the value for the tag.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(database_name:, role_arn:, table_prefix:) ⇒ GlueDataCatalogProperty
constructor
A new instance of GlueDataCatalogProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(database_name:, role_arn:, table_prefix:) ⇒ GlueDataCatalogProperty
Returns a new instance of GlueDataCatalogProperty.
1475 1476 1477 1478 1479 1480 1481 1482 |
# File 'app_flow/cfn_flow.rb', line 1475 def initialize(database_name:, role_arn:, table_prefix:) @database_name = database_name Jsii::Type.check_type(@database_name, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "databaseName") @role_arn = role_arn Jsii::Type.check_type(@role_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "roleArn") @table_prefix = table_prefix Jsii::Type.check_type(@table_prefix, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "tablePrefix") end |
Instance Attribute Details
#database_name ⇒ String (readonly)
A string containing the value for the tag.
1488 1489 1490 |
# File 'app_flow/cfn_flow.rb', line 1488 def database_name @database_name end |
#role_arn ⇒ String (readonly)
A string containing the value for the tag.
1493 1494 1495 |
# File 'app_flow/cfn_flow.rb', line 1493 def role_arn @role_arn end |
#table_prefix ⇒ String (readonly)
A string containing the value for the tag.
1498 1499 1500 |
# File 'app_flow/cfn_flow.rb', line 1498 def table_prefix @table_prefix end |
Class Method Details
.jsii_properties ⇒ Object
1500 1501 1502 1503 1504 1505 1506 |
# File 'app_flow/cfn_flow.rb', line 1500 def self.jsii_properties { :database_name => "databaseName", :role_arn => "roleArn", :table_prefix => "tablePrefix", } end |
Instance Method Details
#to_jsii ⇒ Object
1508 1509 1510 1511 1512 1513 1514 1515 1516 |
# File 'app_flow/cfn_flow.rb', line 1508 def to_jsii result = {} result.merge!({ "databaseName" => @database_name, "roleArn" => @role_arn, "tablePrefix" => @table_prefix, }) result.compact end |