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.
Implements
Inherited Members
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.
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 |
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.
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
Remarks
Endpoint
The endpoint.
public string Endpoint { get; set; }