Class: Aws::OpenSearchServerless::Types::FipsEndpoints

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#collection_endpointString

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.

Returns:

  • (String)


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_endpointString

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.

Returns:

  • (String)


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