Class: AWSCDK::Connect::CfnDataTableAttribute::LockVersionProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Connect::CfnDataTableAttribute::LockVersionProperty
- Defined in:
- connect/cfn_data_table_attribute.rb
Overview
Instance Attribute Summary collapse
- #attribute ⇒ String? readonly
- #data_table ⇒ String? readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(attribute: nil, data_table: nil) ⇒ LockVersionProperty
constructor
A new instance of LockVersionProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(attribute: nil, data_table: nil) ⇒ LockVersionProperty
Returns a new instance of LockVersionProperty.
639 640 641 642 643 644 |
# File 'connect/cfn_data_table_attribute.rb', line 639 def initialize(attribute: nil, data_table: nil) @attribute = attribute Jsii::Type.check_type(@attribute, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "attribute") unless @attribute.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
#attribute ⇒ String? (readonly)
648 649 650 |
# File 'connect/cfn_data_table_attribute.rb', line 648 def attribute @attribute end |
#data_table ⇒ String? (readonly)
651 652 653 |
# File 'connect/cfn_data_table_attribute.rb', line 651 def data_table @data_table end |
Class Method Details
.jsii_properties ⇒ Object
653 654 655 656 657 658 |
# File 'connect/cfn_data_table_attribute.rb', line 653 def self.jsii_properties { :attribute => "attribute", :data_table => "dataTable", } end |
Instance Method Details
#to_jsii ⇒ Object
660 661 662 663 664 665 666 667 |
# File 'connect/cfn_data_table_attribute.rb', line 660 def to_jsii result = {} result.merge!({ "attribute" => @attribute, "dataTable" => @data_table, }) result.compact end |