Interface BackedDataSourceProps

All Superinterfaces:
BaseDataSourceProps, software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
DynamoDbDataSourceProps, ElasticsearchDataSourceProps, EventBridgeDataSourceProps, LambdaDataSourceProps, OpenSearchDataSourceProps, RdsDataSourceProps, RdsDataSourcePropsV2
All Known Implementing Classes:
BackedDataSourceProps.Jsii$Proxy, DynamoDbDataSourceProps.Jsii$Proxy, ElasticsearchDataSourceProps.Jsii$Proxy, EventBridgeDataSourceProps.Jsii$Proxy, LambdaDataSourceProps.Jsii$Proxy, OpenSearchDataSourceProps.Jsii$Proxy, RdsDataSourceProps.Jsii$Proxy, RdsDataSourcePropsV2.Jsii$Proxy

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-11-22T02:23:57.087Z") @Stability(Stable) public interface BackedDataSourceProps extends software.amazon.jsii.JsiiSerializable, BaseDataSourceProps
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.*;
 GraphqlApi graphqlApi;
 Role role;
 BackedDataSourceProps backedDataSourceProps = BackedDataSourceProps.builder()
         .api(graphqlApi)
         // the properties below are optional
         .description("description")
         .name("name")
         .serviceRole(role)
         .build();