Class: Aws::ElasticsearchService::Types::InboundCrossClusterSearchConnectionStatus
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::InboundCrossClusterSearchConnectionStatus
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Specifies the coonection status of an inbound cross-cluster search connection.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#message ⇒ String
Specifies verbose information for the inbound connection status.
-
#status_code ⇒ String
The state code for inbound connection.
Instance Attribute Details
#message ⇒ String
Specifies verbose information for the inbound connection status.
2634 2635 2636 2637 2638 2639 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2634 class InboundCrossClusterSearchConnectionStatus < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
The state code for inbound connection. This can be one of the following:
-
PENDING_ACCEPTANCE: Inbound connection is not yet accepted by destination domain owner.
-
APPROVED: Inbound connection is pending acceptance by destination domain owner.
-
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 cannot be used further.
2634 2635 2636 2637 2638 2639 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2634 class InboundCrossClusterSearchConnectionStatus < Struct.new( :status_code, :message) SENSITIVE = [] include Aws::Structure end |