Class: Aws::ElasticsearchService::Types::OutboundCrossClusterSearchConnectionStatus

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-elasticsearchservice/types.rb

Overview

Specifies the connection status of an outbound cross-cluster search connection.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

Specifies verbose information for the outbound connection status.

Returns:

  • (String)


3426
3427
3428
3429
3430
3431
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3426

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

#status_codeString

The state code for outbound connection. This can be one of the following:

  • VALIDATING: The outbound connection request is being validated.

  • VALIDATION_FAILED: Validation failed for the connection request.

  • PENDING_ACCEPTANCE: Outbound connection request is validated and is not yet accepted by destination domain owner.

  • PROVISIONING: Outbound connection request is in process.

  • ACTIVE: Outbound connection is active and ready to use.

  • REJECTED: Outbound connection request is rejected by destination domain owner.

  • DELETING: Outbound connection deletion is in progress.

  • DELETED: Outbound connection is deleted and cannot be used further.

Returns:

  • (String)


3426
3427
3428
3429
3430
3431
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 3426

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