Class: AWSCDK::MediaConnect::CfnRouterInput::MediaLiveTransitEncryptionKeyConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaConnect::CfnRouterInput::MediaLiveTransitEncryptionKeyConfigurationProperty
- Defined in:
- media_connect/cfn_router_input.rb
Overview
Instance Attribute Summary collapse
-
#automatic ⇒ Object?
readonly
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
-
#secrets_manager ⇒ AWSCDK::IResolvable, ...
readonly
The configuration settings for transit encryption using Secrets Manager, including the secret ARN and role ARN.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(automatic: nil, secrets_manager: nil) ⇒ MediaLiveTransitEncryptionKeyConfigurationProperty
constructor
A new instance of MediaLiveTransitEncryptionKeyConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(automatic: nil, secrets_manager: nil) ⇒ MediaLiveTransitEncryptionKeyConfigurationProperty
Returns a new instance of MediaLiveTransitEncryptionKeyConfigurationProperty.
1065 1066 1067 1068 1069 1070 |
# File 'media_connect/cfn_router_input.rb', line 1065 def initialize(automatic: nil, secrets_manager: nil) @automatic = automatic Jsii::Type.check_type(@automatic, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJhbnkifQ==")), "automatic") unless @automatic.nil? @secrets_manager = secrets_manager.is_a?(Hash) ? ::AWSCDK::MediaConnect::CfnRouterInput::SecretsManagerEncryptionKeyConfigurationProperty.new(**secrets_manager.transform_keys(&:to_sym)) : secrets_manager Jsii::Type.check_type(@secrets_manager, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19tZWRpYWNvbm5lY3QuQ2ZuUm91dGVySW5wdXQuU2VjcmV0c01hbmFnZXJFbmNyeXB0aW9uS2V5Q29uZmlndXJhdGlvblByb3BlcnR5In1dfX0=")), "secretsManager") unless @secrets_manager.nil? end |
Instance Attribute Details
#automatic ⇒ Object? (readonly)
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
1076 1077 1078 |
# File 'media_connect/cfn_router_input.rb', line 1076 def automatic @automatic end |
#secrets_manager ⇒ AWSCDK::IResolvable, ... (readonly)
The configuration settings for transit encryption using Secrets Manager, including the secret ARN and role ARN.
1081 1082 1083 |
# File 'media_connect/cfn_router_input.rb', line 1081 def secrets_manager @secrets_manager end |
Class Method Details
.jsii_properties ⇒ Object
1083 1084 1085 1086 1087 1088 |
# File 'media_connect/cfn_router_input.rb', line 1083 def self.jsii_properties { :automatic => "automatic", :secrets_manager => "secretsManager", } end |
Instance Method Details
#to_jsii ⇒ Object
1090 1091 1092 1093 1094 1095 1096 1097 |
# File 'media_connect/cfn_router_input.rb', line 1090 def to_jsii result = {} result.merge!({ "automatic" => @automatic, "secretsManager" => @secrets_manager, }) result.compact end |