Class: Aws::AppMesh::Types::ListenerTls

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

Overview

Note:

When making an API call, you may pass ListenerTls data as a hash:

{
  certificate: { # required
    acm: {
      certificate_arn: "Arn", # required
    },
    file: {
      certificate_chain: "FilePath", # required
      private_key: "FilePath", # required
    },
    sds: {
      secret_name: "SdsSecretName", # required
    },
  },
  mode: "STRICT", # required, accepts STRICT, PERMISSIVE, DISABLED
  validation: {
    subject_alternative_names: {
      match: { # required
        exact: ["SubjectAlternativeName"], # required
      },
    },
    trust: { # required
      file: {
        certificate_chain: "FilePath", # required
      },
      sds: {
        secret_name: "SdsSecretName", # required
      },
    },
  },
}

An object that represents the Transport Layer Security (TLS) properties for a listener.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificateTypes::ListenerTlsCertificate

A reference to an object that represents a listener's Transport Layer Security (TLS) certificate.


5439
5440
5441
5442
5443
5444
5445
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5439

class ListenerTls < Struct.new(
  :certificate,
  :mode,
  :validation)
  SENSITIVE = []
  include Aws::Structure
end

#modeString

Specify one of the following modes.

  • ****STRICT – Listener only accepts connections with TLS enabled.

  • ****PERMISSIVE – Listener accepts connections with or without TLS enabled.

  • ****DISABLED – Listener only accepts connections without TLS.

Returns:

  • (String)

5439
5440
5441
5442
5443
5444
5445
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5439

class ListenerTls < Struct.new(
  :certificate,
  :mode,
  :validation)
  SENSITIVE = []
  include Aws::Structure
end

#validationTypes::ListenerTlsValidationContext

A reference to an object that represents a listener's Transport Layer Security (TLS) validation context.


5439
5440
5441
5442
5443
5444
5445
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/types.rb', line 5439

class ListenerTls < Struct.new(
  :certificate,
  :mode,
  :validation)
  SENSITIVE = []
  include Aws::Structure
end