Class: AWSCDK::Connect::CfnDataTable::LockVersionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnDataTable::LockVersionProperty
- Defined in:
- connect/cfn_data_table.rb
Overview
The lock version of the Data Table.
Instance Attribute Summary collapse
-
#data_table ⇒ String?
readonly
The data table for the lock version.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(data_table: nil) ⇒ LockVersionProperty
constructor
A new instance of LockVersionProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(data_table: nil) ⇒ LockVersionProperty
Returns a new instance of LockVersionProperty.
631 632 633 634 |
# File 'connect/cfn_data_table.rb', line 631 def initialize(data_table: nil) @data_table = data_table Jsii::Type.check_type(@data_table, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "dataTable") unless @data_table.nil? end |
Instance Attribute Details
#data_table ⇒ String? (readonly)
The data table for the lock version.
640 641 642 |
# File 'connect/cfn_data_table.rb', line 640 def data_table @data_table end |
Class Method Details
.jsii_properties ⇒ Object
642 643 644 645 646 |
# File 'connect/cfn_data_table.rb', line 642 def self.jsii_properties { :data_table => "dataTable", } end |
Instance Method Details
#to_jsii ⇒ Object
648 649 650 651 652 653 654 |
# File 'connect/cfn_data_table.rb', line 648 def to_jsii result = {} result.merge!({ "dataTable" => @data_table, }) result.compact end |