Interface CfnDataSource.OpenSearchServiceConfigProperty

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

@Stability(Stable) public static interface CfnDataSource.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.services.appsync.*;
 OpenSearchServiceConfigProperty openSearchServiceConfigProperty = OpenSearchServiceConfigProperty.builder()
         .awsRegion("awsRegion")
         .endpoint("endpoint")
         .build();
 

See Also: