Class: Aws::MediaConnect::Types::MediaLiveTransitEncryptionKeyConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::MediaLiveTransitEncryptionKeyConfiguration
- Defined in:
- gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb
Overview
MediaLiveTransitEncryptionKeyConfiguration is a union - when making an API calls you must set exactly one of the members.
MediaLiveTransitEncryptionKeyConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of MediaLiveTransitEncryptionKeyConfiguration corresponding to the set member.
Configuration settings for the MediaLive transit encryption key.
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 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.
4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 4590 class MediaLiveTransitEncryptionKeyConfiguration < Struct.new( :secrets_manager, :automatic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SecretsManager < MediaLiveTransitEncryptionKeyConfiguration; end class Automatic < MediaLiveTransitEncryptionKeyConfiguration; end class Unknown < MediaLiveTransitEncryptionKeyConfiguration; end end |
#secrets_manager ⇒ Types::SecretsManagerEncryptionKeyConfiguration
The configuration settings for transit encryption using Secrets Manager, including the secret ARN and role ARN.
4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 4590 class MediaLiveTransitEncryptionKeyConfiguration < Struct.new( :secrets_manager, :automatic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SecretsManager < MediaLiveTransitEncryptionKeyConfiguration; end class Automatic < MediaLiveTransitEncryptionKeyConfiguration; end class Unknown < MediaLiveTransitEncryptionKeyConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
4590 4591 4592 |
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 4590 def unknown @unknown end |