Class: AWSCDK::MSK::CfnCluster::VPCConnectivityTLSProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MSK::CfnCluster::VPCConnectivityTLSProperty
- Defined in:
- msk/cfn_cluster.rb
Overview
Details for client authentication using TLS for VpcConnectivity.
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean, AWSCDK::IResolvable
readonly
TLS authentication is enabled or not.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(enabled:) ⇒ VPCConnectivityTLSProperty
constructor
A new instance of VPCConnectivityTLSProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(enabled:) ⇒ VPCConnectivityTLSProperty
Returns a new instance of VPCConnectivityTLSProperty.
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
#enabled ⇒ Boolean, 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_properties ⇒ Object
2035 2036 2037 2038 2039 |
# File 'msk/cfn_cluster.rb', line 2035 def self.jsii_properties { :enabled => "enabled", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |