Class: Aws::OpenSearchService::Types::InboundConnectionStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::OpenSearchService::Types::InboundConnectionStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-opensearchservice/types.rb
Overview
The status of an inbound cross-cluster connection for OpenSearch Service.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
Information about the connection.
-
#status_code ⇒ String
The status code for the connection.
Instance Attribute Details
#message ⇒ String
Information about the connection.
4504 4505 4506 4507 4508 4509 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4504 class InboundConnectionStatus < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
The status code for the connection. Can be one of the following:
-
PENDING_ACCEPTANCE - Inbound connection is not yet accepted by the remote domain owner.
-
APPROVED: Inbound connection is pending acceptance by the remote domain owner.
-
PROVISIONING: Inbound connection is being provisioned.
-
ACTIVE: Inbound connection is active and ready to use.
-
REJECTING: Inbound connection rejection is in process.
-
REJECTED: Inbound connection is rejected.
-
DELETING: Inbound connection deletion is in progress.
-
DELETED: Inbound connection is deleted and can no longer be used.
4504 4505 4506 4507 4508 4509 |
# File 'lib/aws-sdk-opensearchservice/types.rb', line 4504 class InboundConnectionStatus < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |