Interface DataSource.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<DataSource.Builder,DataSource>,SdkBuilder<DataSource.Builder,DataSource>,SdkPojo
- Enclosing class:
- DataSource
public static interface DataSource.Builder extends SdkPojo, CopyableBuilder<DataSource.Builder,DataSource>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description DataSource.BuilderdataSourceArn(String dataSourceArn)The data source Amazon Resource Name (ARN).DataSource.Builderdescription(String description)The description of the data source.default DataSource.BuilderdynamodbConfig(Consumer<DynamodbDataSourceConfig.Builder> dynamodbConfig)DynamoDB settings.DataSource.BuilderdynamodbConfig(DynamodbDataSourceConfig dynamodbConfig)DynamoDB settings.default DataSource.BuilderelasticsearchConfig(Consumer<ElasticsearchDataSourceConfig.Builder> elasticsearchConfig)Amazon OpenSearch Service settings.DataSource.BuilderelasticsearchConfig(ElasticsearchDataSourceConfig elasticsearchConfig)Amazon OpenSearch Service settings.default DataSource.BuildereventBridgeConfig(Consumer<EventBridgeDataSourceConfig.Builder> eventBridgeConfig)Amazon EventBridge settings.DataSource.BuildereventBridgeConfig(EventBridgeDataSourceConfig eventBridgeConfig)Amazon EventBridge settings.default DataSource.BuilderhttpConfig(Consumer<HttpDataSourceConfig.Builder> httpConfig)HTTP endpoint settings.DataSource.BuilderhttpConfig(HttpDataSourceConfig httpConfig)HTTP endpoint settings.default DataSource.BuilderlambdaConfig(Consumer<LambdaDataSourceConfig.Builder> lambdaConfig)Lambda settings.DataSource.BuilderlambdaConfig(LambdaDataSourceConfig lambdaConfig)Lambda settings.DataSource.BuildermetricsConfig(String metricsConfig)Enables or disables enhanced data source metrics for specified data sources.DataSource.BuildermetricsConfig(DataSourceLevelMetricsConfig metricsConfig)Enables or disables enhanced data source metrics for specified data sources.DataSource.Buildername(String name)The name of the data source.default DataSource.BuilderopenSearchServiceConfig(Consumer<OpenSearchServiceDataSourceConfig.Builder> openSearchServiceConfig)Amazon OpenSearch Service settings.DataSource.BuilderopenSearchServiceConfig(OpenSearchServiceDataSourceConfig openSearchServiceConfig)Amazon OpenSearch Service settings.default DataSource.BuilderrelationalDatabaseConfig(Consumer<RelationalDatabaseDataSourceConfig.Builder> relationalDatabaseConfig)Relational database settings.DataSource.BuilderrelationalDatabaseConfig(RelationalDatabaseDataSourceConfig relationalDatabaseConfig)Relational database settings.DataSource.BuilderserviceRoleArn(String serviceRoleArn)The Identity and Access Management (IAM) service role Amazon Resource Name (ARN) for the data source.DataSource.Buildertype(String type)The type of the data source.DataSource.Buildertype(DataSourceType type)The type of the data source.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
dataSourceArn
DataSource.Builder dataSourceArn(String dataSourceArn)
The data source Amazon Resource Name (ARN).
- Parameters:
dataSourceArn- The data source Amazon Resource Name (ARN).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
DataSource.Builder name(String name)
The name of the data source.
- Parameters:
name- The name of the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
DataSource.Builder description(String description)
The description of the data source.
- Parameters:
description- The description of the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
type
DataSource.Builder type(String type)
The type of the data source.
-
AWS_LAMBDA: The data source is an Lambda function.
-
AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table.
-
AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_EVENTBRIDGE: The data source is an Amazon EventBridge configuration.
-
NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation.
-
HTTP: The data source is an HTTP endpoint.
-
RELATIONAL_DATABASE: The data source is a relational database.
- Parameters:
type- The type of the data source.-
AWS_LAMBDA: The data source is an Lambda function.
-
AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table.
-
AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_EVENTBRIDGE: The data source is an Amazon EventBridge configuration.
-
NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation.
-
HTTP: The data source is an HTTP endpoint.
-
RELATIONAL_DATABASE: The data source is a relational database.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataSourceType,DataSourceType
-
-
type
DataSource.Builder type(DataSourceType type)
The type of the data source.
-
AWS_LAMBDA: The data source is an Lambda function.
-
AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table.
-
AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_EVENTBRIDGE: The data source is an Amazon EventBridge configuration.
-
NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation.
-
HTTP: The data source is an HTTP endpoint.
-
RELATIONAL_DATABASE: The data source is a relational database.
- Parameters:
type- The type of the data source.-
AWS_LAMBDA: The data source is an Lambda function.
-
AMAZON_DYNAMODB: The data source is an Amazon DynamoDB table.
-
AMAZON_ELASTICSEARCH: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_OPENSEARCH_SERVICE: The data source is an Amazon OpenSearch Service domain.
-
AMAZON_EVENTBRIDGE: The data source is an Amazon EventBridge configuration.
-
NONE: There is no data source. Use this type when you want to invoke a GraphQL operation without connecting to a data source, such as when you're performing data transformation with resolvers or invoking a subscription from a mutation.
-
HTTP: The data source is an HTTP endpoint.
-
RELATIONAL_DATABASE: The data source is a relational database.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataSourceType,DataSourceType
-
-
serviceRoleArn
DataSource.Builder serviceRoleArn(String serviceRoleArn)
The Identity and Access Management (IAM) service role Amazon Resource Name (ARN) for the data source. The system assumes this role when accessing the data source.
- Parameters:
serviceRoleArn- The Identity and Access Management (IAM) service role Amazon Resource Name (ARN) for the data source. The system assumes this role when accessing the data source.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamodbConfig
DataSource.Builder dynamodbConfig(DynamodbDataSourceConfig dynamodbConfig)
DynamoDB settings.
- Parameters:
dynamodbConfig- DynamoDB settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dynamodbConfig
default DataSource.Builder dynamodbConfig(Consumer<DynamodbDataSourceConfig.Builder> dynamodbConfig)
DynamoDB settings.
This is a convenience method that creates an instance of theDynamodbDataSourceConfig.Builderavoiding the need to create one manually viaDynamodbDataSourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todynamodbConfig(DynamodbDataSourceConfig).- Parameters:
dynamodbConfig- a consumer that will call methods onDynamodbDataSourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
dynamodbConfig(DynamodbDataSourceConfig)
-
lambdaConfig
DataSource.Builder lambdaConfig(LambdaDataSourceConfig lambdaConfig)
Lambda settings.
- Parameters:
lambdaConfig- Lambda settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lambdaConfig
default DataSource.Builder lambdaConfig(Consumer<LambdaDataSourceConfig.Builder> lambdaConfig)
Lambda settings.
This is a convenience method that creates an instance of theLambdaDataSourceConfig.Builderavoiding the need to create one manually viaLambdaDataSourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tolambdaConfig(LambdaDataSourceConfig).- Parameters:
lambdaConfig- a consumer that will call methods onLambdaDataSourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
lambdaConfig(LambdaDataSourceConfig)
-
elasticsearchConfig
DataSource.Builder elasticsearchConfig(ElasticsearchDataSourceConfig elasticsearchConfig)
Amazon OpenSearch Service settings.
- Parameters:
elasticsearchConfig- Amazon OpenSearch Service settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
elasticsearchConfig
default DataSource.Builder elasticsearchConfig(Consumer<ElasticsearchDataSourceConfig.Builder> elasticsearchConfig)
Amazon OpenSearch Service settings.
This is a convenience method that creates an instance of theElasticsearchDataSourceConfig.Builderavoiding the need to create one manually viaElasticsearchDataSourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toelasticsearchConfig(ElasticsearchDataSourceConfig).- Parameters:
elasticsearchConfig- a consumer that will call methods onElasticsearchDataSourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
elasticsearchConfig(ElasticsearchDataSourceConfig)
-
openSearchServiceConfig
DataSource.Builder openSearchServiceConfig(OpenSearchServiceDataSourceConfig openSearchServiceConfig)
Amazon OpenSearch Service settings.
- Parameters:
openSearchServiceConfig- Amazon OpenSearch Service settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
openSearchServiceConfig
default DataSource.Builder openSearchServiceConfig(Consumer<OpenSearchServiceDataSourceConfig.Builder> openSearchServiceConfig)
Amazon OpenSearch Service settings.
This is a convenience method that creates an instance of theOpenSearchServiceDataSourceConfig.Builderavoiding the need to create one manually viaOpenSearchServiceDataSourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toopenSearchServiceConfig(OpenSearchServiceDataSourceConfig).- Parameters:
openSearchServiceConfig- a consumer that will call methods onOpenSearchServiceDataSourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
openSearchServiceConfig(OpenSearchServiceDataSourceConfig)
-
httpConfig
DataSource.Builder httpConfig(HttpDataSourceConfig httpConfig)
HTTP endpoint settings.
- Parameters:
httpConfig- HTTP endpoint settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
httpConfig
default DataSource.Builder httpConfig(Consumer<HttpDataSourceConfig.Builder> httpConfig)
HTTP endpoint settings.
This is a convenience method that creates an instance of theHttpDataSourceConfig.Builderavoiding the need to create one manually viaHttpDataSourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tohttpConfig(HttpDataSourceConfig).- Parameters:
httpConfig- a consumer that will call methods onHttpDataSourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
httpConfig(HttpDataSourceConfig)
-
relationalDatabaseConfig
DataSource.Builder relationalDatabaseConfig(RelationalDatabaseDataSourceConfig relationalDatabaseConfig)
Relational database settings.
- Parameters:
relationalDatabaseConfig- Relational database settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
relationalDatabaseConfig
default DataSource.Builder relationalDatabaseConfig(Consumer<RelationalDatabaseDataSourceConfig.Builder> relationalDatabaseConfig)
Relational database settings.
This is a convenience method that creates an instance of theRelationalDatabaseDataSourceConfig.Builderavoiding the need to create one manually viaRelationalDatabaseDataSourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed torelationalDatabaseConfig(RelationalDatabaseDataSourceConfig).- Parameters:
relationalDatabaseConfig- a consumer that will call methods onRelationalDatabaseDataSourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
relationalDatabaseConfig(RelationalDatabaseDataSourceConfig)
-
eventBridgeConfig
DataSource.Builder eventBridgeConfig(EventBridgeDataSourceConfig eventBridgeConfig)
Amazon EventBridge settings.
- Parameters:
eventBridgeConfig- Amazon EventBridge settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventBridgeConfig
default DataSource.Builder eventBridgeConfig(Consumer<EventBridgeDataSourceConfig.Builder> eventBridgeConfig)
Amazon EventBridge settings.
This is a convenience method that creates an instance of theEventBridgeDataSourceConfig.Builderavoiding the need to create one manually viaEventBridgeDataSourceConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toeventBridgeConfig(EventBridgeDataSourceConfig).- Parameters:
eventBridgeConfig- a consumer that will call methods onEventBridgeDataSourceConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
eventBridgeConfig(EventBridgeDataSourceConfig)
-
metricsConfig
DataSource.Builder metricsConfig(String metricsConfig)
Enables or disables enhanced data source metrics for specified data sources. Note that
metricsConfigwon't be used unless thedataSourceLevelMetricsBehaviorvalue is set toPER_DATA_SOURCE_METRICS. If thedataSourceLevelMetricsBehavioris set toFULL_REQUEST_DATA_SOURCE_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.- Parameters:
metricsConfig- Enables or disables enhanced data source metrics for specified data sources. Note thatmetricsConfigwon't be used unless thedataSourceLevelMetricsBehaviorvalue is set toPER_DATA_SOURCE_METRICS. If thedataSourceLevelMetricsBehavioris set toFULL_REQUEST_DATA_SOURCE_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataSourceLevelMetricsConfig,DataSourceLevelMetricsConfig
-
metricsConfig
DataSource.Builder metricsConfig(DataSourceLevelMetricsConfig metricsConfig)
Enables or disables enhanced data source metrics for specified data sources. Note that
metricsConfigwon't be used unless thedataSourceLevelMetricsBehaviorvalue is set toPER_DATA_SOURCE_METRICS. If thedataSourceLevelMetricsBehavioris set toFULL_REQUEST_DATA_SOURCE_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.- Parameters:
metricsConfig- Enables or disables enhanced data source metrics for specified data sources. Note thatmetricsConfigwon't be used unless thedataSourceLevelMetricsBehaviorvalue is set toPER_DATA_SOURCE_METRICS. If thedataSourceLevelMetricsBehavioris set toFULL_REQUEST_DATA_SOURCE_METRICSinstead,metricsConfigwill be ignored. However, you can still set its value.metricsConfigcan beENABLEDorDISABLED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
DataSourceLevelMetricsConfig,DataSourceLevelMetricsConfig
-
-