Class: AWSCDK::MSK::CfnCluster::VPCConnectivityTLSProperty

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

Overview

Details for client authentication using TLS for VpcConnectivity.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(enabled:) ⇒ VPCConnectivityTLSProperty

Returns a new instance of VPCConnectivityTLSProperty.

Parameters:



2024
2025
2026
2027
# File 'msk/cfn_cluster.rb', line 2024

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)

TLS authentication is enabled or not.



2033
2034
2035
# File 'msk/cfn_cluster.rb', line 2033

def enabled
  @enabled
end

Class Method Details

.jsii_propertiesObject



2035
2036
2037
2038
2039
# File 'msk/cfn_cluster.rb', line 2035

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

Instance Method Details

#to_jsiiObject



2041
2042
2043
2044
2045
2046
2047
# File 'msk/cfn_cluster.rb', line 2041

def to_jsii
  result = {}
  result.merge!({
    "enabled" => @enabled,
  })
  result.compact
end