Class: Aws::APIGateway::Types::TlsConfig

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

Overview

Note:

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

{
  insecure_skip_verification: false,
}

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#insecure_skip_verificationBoolean

Specifies whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a [supported certificate authority]. This isn’t recommended, but it enables you to use certificates that are signed by private certificate authorities, or certificates that are self-signed. If enabled, API Gateway still performs basic certificate validation, which includes checking the certificate’s expiration date, hostname, and presence of a root certificate authority. Supported only for ‘HTTP` and `HTTP_PROXY` integrations.

[1]: docs.aws.amazon.com/apigateway/latest/developerguide/api-gateway-supported-certificate-authorities-for-http-endpoints.html

Returns:

  • (Boolean)


7117
7118
7119
7120
7121
# File 'lib/aws-sdk-apigateway/types.rb', line 7117

class TlsConfig < Struct.new(
  :insecure_skip_verification)
  SENSITIVE = []
  include Aws::Structure
end