Show / Hide Table of Contents

Interface CfnDataSource.IOpenSearchServiceConfigProperty

The OpenSearchServiceConfig property type specifies the AwsRegion and Endpoints for an Amazon OpenSearch Service domain in your account for an AWS AppSync data source.

Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDataSource.IOpenSearchServiceConfigProperty
Syntax (vb)
Public Interface CfnDataSource.IOpenSearchServiceConfigProperty
Remarks

OpenSearchServiceConfig is a property of the AWS::AppSync::DataSource property type.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-opensearchserviceconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.AppSync;

             var openSearchServiceConfigProperty = new OpenSearchServiceConfigProperty {
                 AwsRegion = "awsRegion",
                 Endpoint = "endpoint"
             };

Synopsis

Properties

AwsRegion

The AWS Region.

Endpoint

The endpoint.

Properties

AwsRegion

The AWS Region.

string AwsRegion { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-opensearchserviceconfig.html#cfn-appsync-datasource-opensearchserviceconfig-awsregion

Endpoint

The endpoint.

string Endpoint { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appsync-datasource-opensearchserviceconfig.html#cfn-appsync-datasource-opensearchserviceconfig-endpoint

Back to top Generated by DocFX