Class: Aws::ElasticsearchService::Types::InboundCrossClusterSearchConnectionStatus

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

Instance Attribute Details

#messageString

Specifies verbose information for the inbound connection status.

Returns:

  • (String)


2759
2760
2761
2762
2763
2764
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2759

class InboundCrossClusterSearchConnectionStatus < Struct.new(
  :status_code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end

#status_codeString

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.

Returns:

  • (String)


2759
2760
2761
2762
2763
2764
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 2759

class InboundCrossClusterSearchConnectionStatus < Struct.new(
  :status_code,
  :message)
  SENSITIVE = []
  include Aws::Structure
end