Class: Aws::OpenSearchServerless::Types::FipsEndpoints
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchServerless::Types::FipsEndpoints
- Defined in:
- gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb
Overview
FIPS-compliant endpoint URLs for an OpenSearch Serverless collection. These endpoints ensure all data transmission uses FIPS 140-3 validated cryptographic implementations, meeting federal security requirements for government workloads.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#collection_endpoint ⇒ String
FIPS-compliant collection endpoint used to submit index, search, and data upload requests to an OpenSearch Serverless collection.
-
#dashboard_endpoint ⇒ String
FIPS-compliant endpoint used to access OpenSearch Dashboards.
Instance Attribute Details
#collection_endpoint ⇒ String
FIPS-compliant collection endpoint used to submit index, search, and data upload requests to an OpenSearch Serverless collection. This endpoint uses FIPS 140-3 validated cryptography and is required for federal government workloads.
1293 1294 1295 1296 1297 1298 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 1293 class FipsEndpoints < Struct.new( :collection_endpoint, :dashboard_endpoint) SENSITIVE = [] include Aws::Structure end |
#dashboard_endpoint ⇒ String
FIPS-compliant endpoint used to access OpenSearch Dashboards. This endpoint uses FIPS 140-3 validated cryptography and is required for federal government workloads that need dashboard visualization capabilities.
1293 1294 1295 1296 1297 1298 |
# File 'gems/aws-sdk-opensearchserverless/lib/aws-sdk-opensearchserverless/types.rb', line 1293 class FipsEndpoints < Struct.new( :collection_endpoint, :dashboard_endpoint) SENSITIVE = [] include Aws::Structure end |