Interface AppSyncBackedDataSourceProps
- All Superinterfaces:
AppSyncBaseDataSourceProps,software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
AppSyncDynamoDbDataSourceProps,AppSyncEventBridgeDataSourceProps,AppSyncHttpDataSourceProps,AppSyncLambdaDataSourceProps,AppSyncOpenSearchDataSourceProps,AppSyncRdsDataSourceProps,AppSyncRdsDataSourcePropsV2
- All Known Implementing Classes:
AppSyncBackedDataSourceProps.Jsii$Proxy,AppSyncDynamoDbDataSourceProps.Jsii$Proxy,AppSyncEventBridgeDataSourceProps.Jsii$Proxy,AppSyncHttpDataSourceProps.Jsii$Proxy,AppSyncLambdaDataSourceProps.Jsii$Proxy,AppSyncOpenSearchDataSourceProps.Jsii$Proxy,AppSyncRdsDataSourceProps.Jsii$Proxy,AppSyncRdsDataSourcePropsV2.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
date="2025-10-24T13:34:31.331Z")
@Stability(Stable)
public interface AppSyncBackedDataSourceProps
extends software.amazon.jsii.JsiiSerializable, AppSyncBaseDataSourceProps
Properties for an AppSync datasource backed by a resource.
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.*;
IApi api;
Role role;
AppSyncBackedDataSourceProps appSyncBackedDataSourceProps = AppSyncBackedDataSourceProps.builder()
.api(api)
// the properties below are optional
.description("description")
.name("name")
.serviceRole(role)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAppSyncBackedDataSourcePropsstatic final classAn implementation forAppSyncBackedDataSourceProps -
Method Summary
Methods inherited from interface software.amazon.awscdk.services.appsync.AppSyncBaseDataSourceProps
getApi, getDescription, getNameMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getServiceRole
The IAM service role to be assumed by AppSync to interact with the data source.Default: - Create a new role
-
builder
-