Interface RelationalDatabaseDataSourceConfig.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<RelationalDatabaseDataSourceConfig.Builder,RelationalDatabaseDataSourceConfig>
,SdkBuilder<RelationalDatabaseDataSourceConfig.Builder,RelationalDatabaseDataSourceConfig>
,SdkPojo
- Enclosing class:
- RelationalDatabaseDataSourceConfig
public static interface RelationalDatabaseDataSourceConfig.Builder extends SdkPojo, CopyableBuilder<RelationalDatabaseDataSourceConfig.Builder,RelationalDatabaseDataSourceConfig>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RelationalDatabaseDataSourceConfig.Builder
rdsHttpEndpointConfig(Consumer<RdsHttpEndpointConfig.Builder> rdsHttpEndpointConfig)
Amazon RDS HTTP endpoint settings.RelationalDatabaseDataSourceConfig.Builder
rdsHttpEndpointConfig(RdsHttpEndpointConfig rdsHttpEndpointConfig)
Amazon RDS HTTP endpoint settings.RelationalDatabaseDataSourceConfig.Builder
relationalDatabaseSourceType(String relationalDatabaseSourceType)
Source type for the relational database.RelationalDatabaseDataSourceConfig.Builder
relationalDatabaseSourceType(RelationalDatabaseSourceType relationalDatabaseSourceType)
Source type for the relational database.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
relationalDatabaseSourceType
RelationalDatabaseDataSourceConfig.Builder relationalDatabaseSourceType(String relationalDatabaseSourceType)
Source type for the relational database.
-
RDS_HTTP_ENDPOINT: The relational database source type is an Amazon Relational Database Service (Amazon RDS) HTTP endpoint.
- Parameters:
relationalDatabaseSourceType
- Source type for the relational database.-
RDS_HTTP_ENDPOINT: The relational database source type is an Amazon Relational Database Service (Amazon RDS) HTTP endpoint.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RelationalDatabaseSourceType
,RelationalDatabaseSourceType
-
-
relationalDatabaseSourceType
RelationalDatabaseDataSourceConfig.Builder relationalDatabaseSourceType(RelationalDatabaseSourceType relationalDatabaseSourceType)
Source type for the relational database.
-
RDS_HTTP_ENDPOINT: The relational database source type is an Amazon Relational Database Service (Amazon RDS) HTTP endpoint.
- Parameters:
relationalDatabaseSourceType
- Source type for the relational database.-
RDS_HTTP_ENDPOINT: The relational database source type is an Amazon Relational Database Service (Amazon RDS) HTTP endpoint.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RelationalDatabaseSourceType
,RelationalDatabaseSourceType
-
-
rdsHttpEndpointConfig
RelationalDatabaseDataSourceConfig.Builder rdsHttpEndpointConfig(RdsHttpEndpointConfig rdsHttpEndpointConfig)
Amazon RDS HTTP endpoint settings.
- Parameters:
rdsHttpEndpointConfig
- Amazon RDS HTTP endpoint settings.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
rdsHttpEndpointConfig
default RelationalDatabaseDataSourceConfig.Builder rdsHttpEndpointConfig(Consumer<RdsHttpEndpointConfig.Builder> rdsHttpEndpointConfig)
Amazon RDS HTTP endpoint settings.
This is a convenience method that creates an instance of theRdsHttpEndpointConfig.Builder
avoiding the need to create one manually viaRdsHttpEndpointConfig.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tordsHttpEndpointConfig(RdsHttpEndpointConfig)
.- Parameters:
rdsHttpEndpointConfig
- a consumer that will call methods onRdsHttpEndpointConfig.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
rdsHttpEndpointConfig(RdsHttpEndpointConfig)
-
-