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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-securityhub/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)


11764
11765
11766
11767
11768
11769
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 11764

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)


11764
11765
11766
11767
11768
11769
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 11764

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