Class: Aws::MediaConnect::Types::RouterInputTransitEncryptionKeyConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-mediaconnect/types.rb

Overview

Note:

RouterInputTransitEncryptionKeyConfiguration is a union - when making an API calls you must set exactly one of the members.

Note:

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

Automatic, SecretsManager, Unknown

Defined Under Namespace

Classes: Automatic, SecretsManager, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#automaticTypes::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_managerTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



6237
6238
6239
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6237

def unknown
  @unknown
end