Class: AWSCDK::MSK::CfnCluster::IAMProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MSK::CfnCluster::IAMProperty
- Defined in:
- msk/cfn_cluster.rb
Overview
Details for SASL/IAM client authentication.
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:) ⇒ IAMProperty
constructor
A new instance of IAMProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(enabled:) ⇒ IAMProperty
Returns a new instance of IAMProperty.
1280 1281 1282 1283 |
# File 'msk/cfn_cluster.rb', line 1280 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.
1289 1290 1291 |
# File 'msk/cfn_cluster.rb', line 1289 def enabled @enabled end |
Class Method Details
.jsii_properties ⇒ Object
1291 1292 1293 1294 1295 |
# File 'msk/cfn_cluster.rb', line 1291 def self.jsii_properties { :enabled => "enabled", } end |
Instance Method Details
#to_jsii ⇒ Object
1297 1298 1299 1300 1301 1302 1303 |
# File 'msk/cfn_cluster.rb', line 1297 def to_jsii result = {} result.merge!({ "enabled" => @enabled, }) result.compact end |