Class: Aws::MediaConnect::Types::FlowTransitEncryptionKeyConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::FlowTransitEncryptionKeyConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
FlowTransitEncryptionKeyConfiguration is a union - when making an API calls you must set exactly one of the members.
FlowTransitEncryptionKeyConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of FlowTransitEncryptionKeyConfiguration corresponding to the set member.
Configuration settings for flow transit encryption keys.
Direct Known Subclasses
Defined Under Namespace
Classes: Automatic, SecretsManager, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#automatic ⇒ Types::AutomaticEncryptionKeyConfiguration
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
-
#secrets_manager ⇒ Types::SecretsManagerEncryptionKeyConfiguration
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#automatic ⇒ Types::AutomaticEncryptionKeyConfiguration
Configuration settings for automatic encryption key management, where MediaConnect handles key creation and rotation.
2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2607 class FlowTransitEncryptionKeyConfiguration < Struct.new( :secrets_manager, :automatic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SecretsManager < FlowTransitEncryptionKeyConfiguration; end class Automatic < FlowTransitEncryptionKeyConfiguration; end class Unknown < FlowTransitEncryptionKeyConfiguration; end end |
#secrets_manager ⇒ Types::SecretsManagerEncryptionKeyConfiguration
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2607 class FlowTransitEncryptionKeyConfiguration < Struct.new( :secrets_manager, :automatic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SecretsManager < FlowTransitEncryptionKeyConfiguration; end class Automatic < FlowTransitEncryptionKeyConfiguration; end class Unknown < FlowTransitEncryptionKeyConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
2607 2608 2609 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 2607 def unknown @unknown end |