Class: Aws::MediaConnect::Types::RouterInputTransitEncryptionKeyConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::MediaConnect::Types::RouterInputTransitEncryptionKeyConfiguration
- Includes:
- Structure, Structure::Union
- Defined in:
- lib/aws-sdk-mediaconnect/types.rb
Overview
RouterInputTransitEncryptionKeyConfiguration is a union - when making an API calls you must set exactly one of the members.
RouterInputTransitEncryptionKeyConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of RouterInputTransitEncryptionKeyConfiguration corresponding to the set member.
Defines the configuration settings for 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.
6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6237 class RouterInputTransitEncryptionKeyConfiguration < Struct.new( :secrets_manager, :automatic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SecretsManager < RouterInputTransitEncryptionKeyConfiguration; end class Automatic < RouterInputTransitEncryptionKeyConfiguration; end class Unknown < RouterInputTransitEncryptionKeyConfiguration; end end |
#secrets_manager ⇒ Types::SecretsManagerEncryptionKeyConfiguration
The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.
6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6237 class RouterInputTransitEncryptionKeyConfiguration < Struct.new( :secrets_manager, :automatic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class SecretsManager < RouterInputTransitEncryptionKeyConfiguration; end class Automatic < RouterInputTransitEncryptionKeyConfiguration; end class Unknown < RouterInputTransitEncryptionKeyConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
6237 6238 6239 |
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6237 def unknown @unknown end |