Class: Aws::ElasticsearchService::Types::DomainEndpointOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::DomainEndpointOptions
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Options to configure endpoint for the Elasticsearch domain.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#custom_endpoint ⇒ String
Specify the fully qualified domain for your custom endpoint.
-
#custom_endpoint_certificate_arn ⇒ String
Specify ACM certificate ARN for your custom endpoint.
-
#custom_endpoint_enabled ⇒ Boolean
Specify if custom endpoint should be enabled for the Elasticsearch domain.
-
#enforce_https ⇒ Boolean
Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.
-
#tls_security_policy ⇒ String
Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain.
Instance Attribute Details
#custom_endpoint ⇒ String
Specify the fully qualified domain for your custom endpoint.
1730 1731 1732 1733 1734 1735 1736 1737 1738 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1730 class DomainEndpointOptions < Struct.new( :enforce_https, :tls_security_policy, :custom_endpoint_enabled, :custom_endpoint, :custom_endpoint_certificate_arn) SENSITIVE = [] include Aws::Structure end |
#custom_endpoint_certificate_arn ⇒ String
Specify ACM certificate ARN for your custom endpoint.
1730 1731 1732 1733 1734 1735 1736 1737 1738 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1730 class DomainEndpointOptions < Struct.new( :enforce_https, :tls_security_policy, :custom_endpoint_enabled, :custom_endpoint, :custom_endpoint_certificate_arn) SENSITIVE = [] include Aws::Structure end |
#custom_endpoint_enabled ⇒ Boolean
Specify if custom endpoint should be enabled for the Elasticsearch domain.
1730 1731 1732 1733 1734 1735 1736 1737 1738 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1730 class DomainEndpointOptions < Struct.new( :enforce_https, :tls_security_policy, :custom_endpoint_enabled, :custom_endpoint, :custom_endpoint_certificate_arn) SENSITIVE = [] include Aws::Structure end |
#enforce_https ⇒ Boolean
Specify if only HTTPS endpoint should be enabled for the Elasticsearch domain.
1730 1731 1732 1733 1734 1735 1736 1737 1738 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1730 class DomainEndpointOptions < Struct.new( :enforce_https, :tls_security_policy, :custom_endpoint_enabled, :custom_endpoint, :custom_endpoint_certificate_arn) SENSITIVE = [] include Aws::Structure end |
#tls_security_policy ⇒ String
Specify the TLS security policy that needs to be applied to the HTTPS endpoint of Elasticsearch domain.
It can be one of the following values: *
Policy-Min-TLS-1-0-2019-07: TLS security policy which
supports TLSv1.0 and higher.
-
Policy-Min-TLS-1-2-2019-07: TLS security policy which supports only TLSv1.2
1730 1731 1732 1733 1734 1735 1736 1737 1738 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1730 class DomainEndpointOptions < Struct.new( :enforce_https, :tls_security_policy, :custom_endpoint_enabled, :custom_endpoint, :custom_endpoint_certificate_arn) SENSITIVE = [] include Aws::Structure end |