Class: Aws::OpenSearchService::Types::InboundConnectionStatus

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-opensearchservice/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

Instance Attribute Details

#messageString

Information about the connection.

Returns:

  • (String)


3908
3909
3910
3911
3912
3913
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3908

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

#status_codeString

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.

Returns:

  • (String)


3908
3909
3910
3911
3912
3913
# File 'gems/aws-sdk-opensearchservice/lib/aws-sdk-opensearchservice/types.rb', line 3908

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