Class: Aws::MediaConnect::Types::MediaLiveTransitEncryptionKeyConfiguration

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

Overview

Note:

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

Note:

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.

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.



4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
# File 'lib/aws-sdk-mediaconnect/types.rb', line 4498

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_managerTypes::SecretsManagerEncryptionKeyConfiguration

The configuration settings for transit encryption using AWS Secrets Manager, including the secret ARN and role ARN.



4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
# File 'lib/aws-sdk-mediaconnect/types.rb', line 4498

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



4498
4499
4500
# File 'lib/aws-sdk-mediaconnect/types.rb', line 4498

def unknown
  @unknown
end