Class: Aws::SecurityHub::Types::AwsElasticsearchDomainDomainEndpointOptions

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

Overview

Additional options for the domain endpoint, such as whether to require HTTPS for all traffic.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#enforce_httpsBoolean

Whether to require that all traffic to the domain arrive over HTTPS.

Returns:

  • (Boolean)


12183
12184
12185
12186
12187
12188
# File 'lib/aws-sdk-securityhub/types.rb', line 12183

class AwsElasticsearchDomainDomainEndpointOptions < Struct.new(
  :enforce_https,
  :tls_security_policy)
  SENSITIVE = []
  include Aws::Structure
end

#tls_security_policyString

The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.

Valid values:

  • ‘Policy-Min-TLS-1-0-2019-07`, which supports TLSv1.0 and higher

  • ‘Policy-Min-TLS-1-2-2019-07`, which only supports TLSv1.2

Returns:

  • (String)


12183
12184
12185
12186
12187
12188
# File 'lib/aws-sdk-securityhub/types.rb', line 12183

class AwsElasticsearchDomainDomainEndpointOptions < Struct.new(
  :enforce_https,
  :tls_security_policy)
  SENSITIVE = []
  include Aws::Structure
end