Class: AWSCDK::MediaConnect::CfnRouterInput::FlowTransitEncryptionKeyConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::MediaConnect::CfnRouterInput::FlowTransitEncryptionKeyConfigurationProperty
- 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) ⇒ FlowTransitEncryptionKeyConfigurationProperty
constructor
A new instance of FlowTransitEncryptionKeyConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(automatic: nil, secrets_manager: nil) ⇒ FlowTransitEncryptionKeyConfigurationProperty
Returns a new instance of FlowTransitEncryptionKeyConfigurationProperty.
826 827 828 829 830 831 |
# File 'media_connect/cfn_router_input.rb', line 826 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.
837 838 839 |
# File 'media_connect/cfn_router_input.rb', line 837 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.
842 843 844 |
# File 'media_connect/cfn_router_input.rb', line 842 def secrets_manager @secrets_manager end |
Class Method Details
.jsii_properties ⇒ Object
844 845 846 847 848 849 |
# File 'media_connect/cfn_router_input.rb', line 844 def self.jsii_properties { :automatic => "automatic", :secrets_manager => "secretsManager", } end |
Instance Method Details
#to_jsii ⇒ Object
851 852 853 854 855 856 857 858 |
# File 'media_connect/cfn_router_input.rb', line 851 def to_jsii result = {} result.merge!({ "automatic" => @automatic, "secretsManager" => @secrets_manager, }) result.compact end |