Interface CfnDataSourcePropsMixin.OpenSearchServiceConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDataSourcePropsMixin.OpenSearchServiceConfigProperty.Jsii$Proxy
Enclosing class:
CfnDataSourcePropsMixin

@Stability(Stable) public static interface CfnDataSourcePropsMixin.OpenSearchServiceConfigProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.appsync.*;
 OpenSearchServiceConfigProperty openSearchServiceConfigProperty = OpenSearchServiceConfigProperty.builder()
         .awsRegion("awsRegion")
         .endpoint("endpoint")
         .build();
 

See Also: