Show / Hide Table of Contents

Class CfnDataSource.OpenSearchServiceConfigProperty

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

Inheritance
object
CfnDataSource.OpenSearchServiceConfigProperty
Implements
CfnDataSource.IOpenSearchServiceConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.AppSync
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDataSource.OpenSearchServiceConfigProperty : CfnDataSource.IOpenSearchServiceConfigProperty
Syntax (vb)
Public Class CfnDataSource.OpenSearchServiceConfigProperty Implements 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

Constructors

OpenSearchServiceConfigProperty()

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

Properties

AwsRegion

The AWS Region.

Endpoint

The endpoint.

Constructors

OpenSearchServiceConfigProperty()

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

public OpenSearchServiceConfigProperty()
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"
             };

Properties

AwsRegion

The AWS Region.

public string AwsRegion { get; set; }
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.

public string Endpoint { get; set; }
Property Value

string

Remarks

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

Implements

CfnDataSource.IOpenSearchServiceConfigProperty
Back to top Generated by DocFX