Interface ExtendedDataSourceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ExtendedDataSourceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-07T10:36:02.285Z")
@Stability(Stable)
public interface ExtendedDataSourceProps
extends software.amazon.jsii.JsiiSerializable
props used by implementations of BaseDataSource to provide configuration.
Should not be used directly.
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.*; ExtendedDataSourceProps extendedDataSourceProps = ExtendedDataSourceProps.builder() .type("type") // the properties below are optional .dynamoDbConfig(DynamoDBConfigProperty.builder() .awsRegion("awsRegion") .tableName("tableName") // the properties below are optional .deltaSyncConfig(DeltaSyncConfigProperty.builder() .baseTableTtl("baseTableTtl") .deltaSyncTableName("deltaSyncTableName") .deltaSyncTableTtl("deltaSyncTableTtl") .build()) .useCallerCredentials(false) .versioned(false) .build()) .elasticsearchConfig(ElasticsearchConfigProperty.builder() .awsRegion("awsRegion") .endpoint("endpoint") .build()) .eventBridgeConfig(EventBridgeConfigProperty.builder() .eventBusArn("eventBusArn") .build()) .httpConfig(HttpConfigProperty.builder() .endpoint("endpoint") // the properties below are optional .authorizationConfig(AuthorizationConfigProperty.builder() .authorizationType("authorizationType") // the properties below are optional .awsIamConfig(AwsIamConfigProperty.builder() .signingRegion("signingRegion") .signingServiceName("signingServiceName") .build()) .build()) .build()) .lambdaConfig(LambdaConfigProperty.builder() .lambdaFunctionArn("lambdaFunctionArn") .build()) .openSearchServiceConfig(OpenSearchServiceConfigProperty.builder() .awsRegion("awsRegion") .endpoint("endpoint") .build()) .relationalDatabaseConfig(RelationalDatabaseConfigProperty.builder() .relationalDatabaseSourceType("relationalDatabaseSourceType") // the properties below are optional .rdsHttpEndpointConfig(RdsHttpEndpointConfigProperty.builder() .awsRegion("awsRegion") .awsSecretStoreArn("awsSecretStoreArn") .dbClusterIdentifier("dbClusterIdentifier") // the properties below are optional .databaseName("databaseName") .schema("schema") .build()) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forExtendedDataSourceProps
static final class
An implementation forExtendedDataSourceProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
configuration for DynamoDB Datasource.default Object
Deprecated.default Object
configuration for EventBridge Datasource.default Object
configuration for HTTP Datasource.default Object
configuration for Lambda Datasource.default Object
configuration for OpenSearch data source.default Object
configuration for RDS Datasource.getType()
the type of the AppSync datasource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getType
the type of the AppSync datasource. -
getDynamoDbConfig
configuration for DynamoDB Datasource.Default: - No config
-
getElasticsearchConfig
Deprecated.- use
openSearchConfig
(deprecated) configuration for Elasticsearch data source.Default: - No config
- use
-
getEventBridgeConfig
configuration for EventBridge Datasource.Default: - No config
-
getHttpConfig
configuration for HTTP Datasource.Default: - No config
-
getLambdaConfig
configuration for Lambda Datasource.Default: - No config
-
getOpenSearchServiceConfig
configuration for OpenSearch data source.Default: - No config
-
getRelationalDatabaseConfig
configuration for RDS Datasource.Default: - No config
-
builder
- Returns:
- a
ExtendedDataSourceProps.Builder
ofExtendedDataSourceProps
-
openSearchConfig