Class: Aws::APIGateway::Types::TlsConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::TlsConfig
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
When making an API call, you may pass TlsConfig data as a hash:
{
insecure_skip_verification: false,
}
Specifies the TLS configuration for an integration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#insecure_skip_verification ⇒ Boolean
Specifies whether or not API Gateway skips verification that the certificate for an integration endpoint is issued by a supported certificate authority.
Instance Attribute Details
#insecure_skip_verification ⇒ Boolean
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.
6280 6281 6282 6283 6284 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6280 class TlsConfig < Struct.new( :insecure_skip_verification) SENSITIVE = [] include Aws::Structure end |