Class: AWSCDK::MSK::CfnCluster::VPCConnectivityIAMProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MSK::CfnCluster::VPCConnectivityIAMProperty
- Defined in:
- msk/cfn_cluster.rb
Overview
Details for SASL/IAM client authentication for VpcConnectivity.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean, AWSCDK::IResolvable
readonly
SASL/IAM authentication is enabled or not.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(enabled:) ⇒ VPCConnectivityIAMProperty
constructor
A new instance of VPCConnectivityIAMProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(enabled:) ⇒ VPCConnectivityIAMProperty
Returns a new instance of VPCConnectivityIAMProperty.
1882 1883 1884 1885 |
# File 'msk/cfn_cluster.rb', line 1882 def initialize(enabled:) @enabled = enabled Jsii::Type.check_type(@enabled, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3sicHJpbWl0aXZlIjoiYm9vbGVhbiJ9LHsiZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifV19fQ==")), "enabled") end |
Instance Attribute Details
#enabled ⇒ Boolean, AWSCDK::IResolvable (readonly)
SASL/IAM authentication is enabled or not.
1891 1892 1893 |
# File 'msk/cfn_cluster.rb', line 1891 def enabled @enabled end |
Class Method Details
.jsii_properties ⇒ Object
1893 1894 1895 1896 1897 |
# File 'msk/cfn_cluster.rb', line 1893 def self.jsii_properties { :enabled => "enabled", } end |
Instance Method Details
#to_jsii ⇒ Object
1899 1900 1901 1902 1903 1904 1905 |
# File 'msk/cfn_cluster.rb', line 1899 def to_jsii result = {} result.merge!({ "enabled" => @enabled, }) result.compact end |