Interface BaseDataSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Subinterfaces:
BackedDataSourceProps
,DynamoDbDataSourceProps
,ElasticsearchDataSourceProps
,EventBridgeDataSourceProps
,HttpDataSourceProps
,LambdaDataSourceProps
,NoneDataSourceProps
,OpenSearchDataSourceProps
,RdsDataSourceProps
,RdsDataSourcePropsV2
- All Known Implementing Classes:
BackedDataSourceProps.Jsii$Proxy
,BaseDataSourceProps.Jsii$Proxy
,DynamoDbDataSourceProps.Jsii$Proxy
,ElasticsearchDataSourceProps.Jsii$Proxy
,EventBridgeDataSourceProps.Jsii$Proxy
,HttpDataSourceProps.Jsii$Proxy
,LambdaDataSourceProps.Jsii$Proxy
,NoneDataSourceProps.Jsii$Proxy
,OpenSearchDataSourceProps.Jsii$Proxy
,RdsDataSourceProps.Jsii$Proxy
,RdsDataSourcePropsV2.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:38.820Z")
@Stability(Stable)
public interface BaseDataSourceProps
extends software.amazon.jsii.JsiiSerializable
Base properties for an AppSync datasource.
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.*; GraphqlApi graphqlApi; BaseDataSourceProps baseDataSourceProps = BaseDataSourceProps.builder() .api(graphqlApi) // the properties below are optional .description("description") .name("name") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forBaseDataSourceProps
static final class
An implementation forBaseDataSourceProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getApi
The API to attach this data source to. -
getDescription
the description of the data source.Default: - None
-
getName
The name of the data source.Default: - id of data source
-
builder
- Returns:
- a
BaseDataSourceProps.Builder
ofBaseDataSourceProps
-