Class: AWSCDK::MSK::CfnCluster::VPCConnectivityIAMProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
msk/cfn_cluster.rb

Overview

Details for SASL/IAM client authentication for VpcConnectivity.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(enabled:) ⇒ VPCConnectivityIAMProperty

Returns a new instance of VPCConnectivityIAMProperty.

Parameters:



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

#enabledBoolean, 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_propertiesObject



1893
1894
1895
1896
1897
# File 'msk/cfn_cluster.rb', line 1893

def self.jsii_properties
  {
    :enabled => "enabled",
  }
end

Instance Method Details

#to_jsiiObject



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