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.BuilderrdsHttpEndpointConfig(Consumer<RdsHttpEndpointConfig.Builder> rdsHttpEndpointConfig)Amazon RDS HTTP endpoint settings.RelationalDatabaseDataSourceConfig.BuilderrdsHttpEndpointConfig(RdsHttpEndpointConfig rdsHttpEndpointConfig)Amazon RDS HTTP endpoint settings.RelationalDatabaseDataSourceConfig.BuilderrelationalDatabaseSourceType(String relationalDatabaseSourceType)Source type for the relational database.RelationalDatabaseDataSourceConfig.BuilderrelationalDatabaseSourceType(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, 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.Builderavoiding the need to create one manually viaRdsHttpEndpointConfig.builder().When the
Consumercompletes,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)
-
-