Skip to content

Create Outbound Cross Cluster Search Connection

elasticsearchservice_create_outbound_cross_cluster_search_connection R Documentation

Creates a new cross-cluster search connection from a source domain to a destination domain

Description

Creates a new cross-cluster search connection from a source domain to a destination domain.

Usage

elasticsearchservice_create_outbound_cross_cluster_search_connection(
  SourceDomainInfo, DestinationDomainInfo, ConnectionAlias)

Arguments

SourceDomainInfo

[required] Specifies the DomainInformation for the source Elasticsearch domain.

DestinationDomainInfo

[required] Specifies the DomainInformation for the destination Elasticsearch domain.

ConnectionAlias

[required] Specifies the connection alias that will be used by the customer for this connection.

Value

A list with the following syntax:

list(
  SourceDomainInfo = list(
    OwnerId = "string",
    DomainName = "string",
    Region = "string"
  ),
  DestinationDomainInfo = list(
    OwnerId = "string",
    DomainName = "string",
    Region = "string"
  ),
  ConnectionAlias = "string",
  ConnectionStatus = list(
    StatusCode = "PENDING_ACCEPTANCE"|"VALIDATING"|"VALIDATION_FAILED"|"PROVISIONING"|"ACTIVE"|"REJECTED"|"DELETING"|"DELETED",
    Message = "string"
  ),
  CrossClusterSearchConnectionId = "string"
)

Request syntax

svc$create_outbound_cross_cluster_search_connection(
  SourceDomainInfo = list(
    OwnerId = "string",
    DomainName = "string",
    Region = "string"
  ),
  DestinationDomainInfo = list(
    OwnerId = "string",
    DomainName = "string",
    Region = "string"
  ),
  ConnectionAlias = "string"
)