Class: Aws::SecurityHub::Types::AwsElasticsearchDomainDomainEndpointOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsElasticsearchDomainDomainEndpointOptions
- 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
-
#enforce_https ⇒ Boolean
Whether to require that all traffic to the domain arrive over HTTPS.
-
#tls_security_policy ⇒ String
The TLS security policy to apply to the HTTPS endpoint of the OpenSearch domain.
Instance Attribute Details
#enforce_https ⇒ Boolean
Whether to require that all traffic to the domain arrive over HTTPS.
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_policy ⇒ String
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
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 |