Class: Aws::ElasticLoadBalancingV2::Types::MutualAuthenticationAttributes

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

Overview

Information about the mutual authentication attributes of a listener.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#ignore_client_certificate_expiryBoolean

Indicates whether expired client certificates are ignored.

Returns:

  • (Boolean)


2729
2730
2731
2732
2733
2734
2735
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2729

class MutualAuthenticationAttributes < Struct.new(
  :mode,
  :trust_store_arn,
  :ignore_client_certificate_expiry)
  SENSITIVE = []
  include Aws::Structure
end

#modeString

The client certificate handling method. Options are ‘off`, `passthrough` or `verify`. The default value is `off`.

Returns:

  • (String)


2729
2730
2731
2732
2733
2734
2735
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2729

class MutualAuthenticationAttributes < Struct.new(
  :mode,
  :trust_store_arn,
  :ignore_client_certificate_expiry)
  SENSITIVE = []
  include Aws::Structure
end

#trust_store_arnString

The Amazon Resource Name (ARN) of the trust store.

Returns:

  • (String)


2729
2730
2731
2732
2733
2734
2735
# File 'lib/aws-sdk-elasticloadbalancingv2/types.rb', line 2729

class MutualAuthenticationAttributes < Struct.new(
  :mode,
  :trust_store_arn,
  :ignore_client_certificate_expiry)
  SENSITIVE = []
  include Aws::Structure
end