Interface AppSyncOpenSearchDataSourceProps
- All Superinterfaces:
AppSyncBackedDataSourceProps,AppSyncBaseDataSourceProps,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AppSyncOpenSearchDataSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:31.342Z")
@Stability(Stable)
public interface AppSyncOpenSearchDataSourceProps
extends software.amazon.jsii.JsiiSerializable, AppSyncBackedDataSourceProps
Properties for the OpenSearch Data Source.
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.*;
import software.amazon.awscdk.services.iam.*;
import software.amazon.awscdk.services.opensearchservice.*;
IApi api;
Domain domain;
Role role;
AppSyncOpenSearchDataSourceProps appSyncOpenSearchDataSourceProps = AppSyncOpenSearchDataSourceProps.builder()
.api(api)
.domain(domain)
// the properties below are optional
.description("description")
.name("name")
.serviceRole(role)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAppSyncOpenSearchDataSourcePropsstatic final classAn implementation forAppSyncOpenSearchDataSourceProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The OpenSearch domain containing the endpoint for the data source.Methods inherited from interface software.amazon.awscdk.services.appsync.AppSyncBackedDataSourceProps
getServiceRoleMethods inherited from interface software.amazon.awscdk.services.appsync.AppSyncBaseDataSourceProps
getApi, getDescription, getNameMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomain
The OpenSearch domain containing the endpoint for the data source. -
builder
-