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.



6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6488

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 Secrets Manager, including the secret ARN and role ARN.



6488
6489
6490
6491
6492
6493
6494
6495
6496
6497
6498
6499
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6488

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



6488
6489
6490
# File 'lib/aws-sdk-mediaconnect/types.rb', line 6488

def unknown
  @unknown
end