Class: AWSCDK::MSK::CfnReplicator::KafkaClusterMtlsAuthenticationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MSK::CfnReplicator::KafkaClusterMtlsAuthenticationProperty
- Defined in:
- msk/cfn_replicator.rb
Overview
Details for mTLS client authentication.
Instance Attribute Summary collapse
-
#secret_arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the Secrets Manager secret.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(secret_arn:) ⇒ KafkaClusterMtlsAuthenticationProperty
constructor
A new instance of KafkaClusterMtlsAuthenticationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(secret_arn:) ⇒ KafkaClusterMtlsAuthenticationProperty
Returns a new instance of KafkaClusterMtlsAuthenticationProperty.
970 971 972 973 |
# File 'msk/cfn_replicator.rb', line 970 def initialize(secret_arn:) @secret_arn = secret_arn Jsii::Type.check_type(@secret_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "secretArn") end |
Instance Attribute Details
#secret_arn ⇒ String (readonly)
The Amazon Resource Name (ARN) of the Secrets Manager secret.
979 980 981 |
# File 'msk/cfn_replicator.rb', line 979 def secret_arn @secret_arn end |
Class Method Details
.jsii_properties ⇒ Object
981 982 983 984 985 |
# File 'msk/cfn_replicator.rb', line 981 def self.jsii_properties { :secret_arn => "secretArn", } end |
Instance Method Details
#to_jsii ⇒ Object
987 988 989 990 991 992 993 |
# File 'msk/cfn_replicator.rb', line 987 def to_jsii result = {} result.merge!({ "secretArn" => @secret_arn, }) result.compact end |