Class: Aws::ElasticsearchService::Types::CreateOutboundCrossClusterSearchConnectionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ElasticsearchService::Types::CreateOutboundCrossClusterSearchConnectionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-elasticsearchservice/types.rb
Overview
Note:
When making an API call, you may pass CreateOutboundCrossClusterSearchConnectionRequest data as a hash:
{
source_domain_info: { # required
owner_id: "OwnerId",
domain_name: "DomainName", # required
region: "Region",
},
destination_domain_info: { # required
owner_id: "OwnerId",
domain_name: "DomainName", # required
region: "Region",
},
connection_alias: "ConnectionAlias", # required
}
Container for the parameters to the `CreateOutboundCrossClusterSearchConnection` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#connection_alias ⇒ String
Specifies the connection alias that will be used by the customer for this connection.
-
#destination_domain_info ⇒ Types::DomainInformation
Specifies the `DomainInformation` for the destination Elasticsearch domain.
-
#source_domain_info ⇒ Types::DomainInformation
Specifies the `DomainInformation` for the source Elasticsearch domain.
Instance Attribute Details
#connection_alias ⇒ String
Specifies the connection alias that will be used by the customer for this connection.
1104 1105 1106 1107 1108 1109 1110 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1104 class CreateOutboundCrossClusterSearchConnectionRequest < Struct.new( :source_domain_info, :destination_domain_info, :connection_alias) SENSITIVE = [] include Aws::Structure end |
#destination_domain_info ⇒ Types::DomainInformation
Specifies the `DomainInformation` for the destination Elasticsearch domain.
1104 1105 1106 1107 1108 1109 1110 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1104 class CreateOutboundCrossClusterSearchConnectionRequest < Struct.new( :source_domain_info, :destination_domain_info, :connection_alias) SENSITIVE = [] include Aws::Structure end |
#source_domain_info ⇒ Types::DomainInformation
Specifies the `DomainInformation` for the source Elasticsearch domain.
1104 1105 1106 1107 1108 1109 1110 |
# File 'lib/aws-sdk-elasticsearchservice/types.rb', line 1104 class CreateOutboundCrossClusterSearchConnectionRequest < Struct.new( :source_domain_info, :destination_domain_info, :connection_alias) SENSITIVE = [] include Aws::Structure end |