Class: Aws::MediaConnect::Types::TlsEncryptionConfiguration

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb

Overview

Note:

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

Note:

TlsEncryptionConfiguration is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of TlsEncryptionConfiguration corresponding to the set member.

The configuration settings for TLS encryption.

Defined Under Namespace

Classes: Public, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#public ⇒ Types::PublicTlsEncryptionConfiguration

The TLS encryption configuration that validates the destination by using a publicly trusted certificate authority.

Returns:

  • (Types::PublicTlsEncryptionConfiguration)


8315
8316
8317
8318
8319
8320
8321
8322
8323
8324
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 8315

class TlsEncryptionConfiguration < Struct.new(
  :public,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Public < TlsEncryptionConfiguration; end
  class Unknown < TlsEncryptionConfiguration; end
end

#unknown ⇒ Object

Returns the value of attribute unknown

Returns:

  • (Object) —

    the current value of unknown



8315
8316
8317
# File 'gems/aws-sdk-mediaconnect/lib/aws-sdk-mediaconnect/types.rb', line 8315

def unknown
  @unknown
end