You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::AppMesh::Types::VirtualGatewayClientPolicyTls

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing VirtualGatewayClientPolicyTls as input to an Aws::Client method, you can use a vanilla Hash:

{
  enforce: false,
  ports: [1],
  validation: { # required
    trust: { # required
      acm: {
        certificate_authority_arns: ["Arn"], # required
      },
      file: {
        certificate_chain: "FilePath", # required
      },
    },
  },
}

An object that represents a Transport Layer Security (TLS) client policy.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#enforceBoolean

Whether the policy is enforced. The default is True, if a value isn\'t specified.

Returns:

  • (Boolean)

    Whether the policy is enforced.

#portsArray<Integer>

One or more ports that the policy is enforced for.

Returns:

  • (Array<Integer>)

    One or more ports that the policy is enforced for.

#validationTypes::VirtualGatewayTlsValidationContext

A reference to an object that represents a TLS validation context.

Returns: