interface OpenSearchServiceConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppSync.Mixins.CfnDataSourcePropsMixin.OpenSearchServiceConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappsync/mixins#CfnDataSourcePropsMixin_OpenSearchServiceConfigProperty |
Java | software.amazon.awscdk.mixins.preview.services.appsync.mixins.CfnDataSourcePropsMixin.OpenSearchServiceConfigProperty |
Python | aws_cdk.mixins_preview.aws_appsync.mixins.CfnDataSourcePropsMixin.OpenSearchServiceConfigProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appsync » mixins » CfnDataSourcePropsMixin » 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.
OpenSearchServiceConfig is a property of the AWS::AppSync::DataSource property type.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as appsync_mixins } from '@aws-cdk/mixins-preview/aws-appsync';
const openSearchServiceConfigProperty: appsync_mixins.CfnDataSourcePropsMixin.OpenSearchServiceConfigProperty = {
awsRegion: 'awsRegion',
endpoint: 'endpoint',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AWS Region. |
| endpoint? | string | The endpoint. |
awsRegion?
Type:
string
(optional)
The AWS Region.
endpoint?
Type:
string
(optional)
The endpoint.

.NET
Go
Java
Python
TypeScript