Class: AWSCDK::MediaConnect::CfnFlowOutput::SecretsManagerEncryptionKeyConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaConnect::CfnFlowOutput::SecretsManagerEncryptionKeyConfigurationProperty
- Defined in:
- media_connect/cfn_flow_output.rb
Overview
The configuration settings for transit encryption of a flow output using AWS Secrets Manager, including the secret ARN and role ARN.
Instance Attribute Summary collapse
-
#role_arn ⇒ String
readonly
The ARN of the IAM role used for transit encryption to the router input using AWS Secrets Manager.
-
#secret_arn ⇒ String
readonly
The ARN of the AWS Secrets Manager secret used for transit encryption to the router input.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(role_arn:, secret_arn:) ⇒ SecretsManagerEncryptionKeyConfigurationProperty
constructor
A new instance of SecretsManagerEncryptionKeyConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(role_arn:, secret_arn:) ⇒ SecretsManagerEncryptionKeyConfigurationProperty
Returns a new instance of SecretsManagerEncryptionKeyConfigurationProperty.
1141 1142 1143 1144 1145 1146 |
# File 'media_connect/cfn_flow_output.rb', line 1141 def initialize(role_arn:, secret_arn:) @role_arn = role_arn Jsii::Type.check_type(@role_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "roleArn") @secret_arn = secret_arn Jsii::Type.check_type(@secret_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "secretArn") end |
Instance Attribute Details
#role_arn ⇒ String (readonly)
The ARN of the IAM role used for transit encryption to the router input using AWS Secrets Manager.
1152 1153 1154 |
# File 'media_connect/cfn_flow_output.rb', line 1152 def role_arn @role_arn end |
#secret_arn ⇒ String (readonly)
The ARN of the AWS Secrets Manager secret used for transit encryption to the router input.
1157 1158 1159 |
# File 'media_connect/cfn_flow_output.rb', line 1157 def secret_arn @secret_arn end |
Class Method Details
.jsii_properties ⇒ Object
1159 1160 1161 1162 1163 1164 |
# File 'media_connect/cfn_flow_output.rb', line 1159 def self.jsii_properties { :role_arn => "roleArn", :secret_arn => "secretArn", } end |
Instance Method Details
#to_jsii ⇒ Object
1166 1167 1168 1169 1170 1171 1172 1173 |
# File 'media_connect/cfn_flow_output.rb', line 1166 def to_jsii result = {} result.merge!({ "roleArn" => @role_arn, "secretArn" => @secret_arn, }) result.compact end |