Interface AutonomousDatabaseConnectionStrings.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<AutonomousDatabaseConnectionStrings.Builder,,AutonomousDatabaseConnectionStrings> SdkBuilder<AutonomousDatabaseConnectionStrings.Builder,,AutonomousDatabaseConnectionStrings> SdkPojo
- Enclosing class:
AutonomousDatabaseConnectionStrings
@Mutable
@NotThreadSafe
public static interface AutonomousDatabaseConnectionStrings.Builder
extends SdkPojo, CopyableBuilder<AutonomousDatabaseConnectionStrings.Builder,AutonomousDatabaseConnectionStrings>
-
Method Summary
Modifier and TypeMethodDescriptionallConnectionStrings(Map<String, String> allConnectionStrings) The list of all connection strings that you can use to connect to the Autonomous Database.The connection string for connecting to the Autonomous Database with a dedicated service.The connection string for the high-priority database service.The connection string for the low-priority database service.The connection string for the medium-priority database service.profiles(Collection<DatabaseConnectionStringProfile> profiles) The list of connection string profiles for the Autonomous Database.profiles(Consumer<DatabaseConnectionStringProfile.Builder>... profiles) The list of connection string profiles for the Autonomous Database.profiles(DatabaseConnectionStringProfile... profiles) The list of connection string profiles for the Autonomous Database.Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
allConnectionStrings
AutonomousDatabaseConnectionStrings.Builder allConnectionStrings(Map<String, String> allConnectionStrings) The list of all connection strings that you can use to connect to the Autonomous Database.
- Parameters:
allConnectionStrings- The list of all connection strings that you can use to connect to the Autonomous Database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dedicated
The connection string for connecting to the Autonomous Database with a dedicated service.
- Parameters:
dedicated- The connection string for connecting to the Autonomous Database with a dedicated service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
high
The connection string for the high-priority database service.
- Parameters:
high- The connection string for the high-priority database service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
medium
The connection string for the medium-priority database service.
- Parameters:
medium- The connection string for the medium-priority database service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
low
The connection string for the low-priority database service.
- Parameters:
low- The connection string for the low-priority database service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
AutonomousDatabaseConnectionStrings.Builder profiles(Collection<DatabaseConnectionStringProfile> profiles) The list of connection string profiles for the Autonomous Database.
- Parameters:
profiles- The list of connection string profiles for the Autonomous Database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
The list of connection string profiles for the Autonomous Database.
- Parameters:
profiles- The list of connection string profiles for the Autonomous Database.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
AutonomousDatabaseConnectionStrings.Builder profiles(Consumer<DatabaseConnectionStringProfile.Builder>... profiles) The list of connection string profiles for the Autonomous Database.
This is a convenience method that creates an instance of theDatabaseConnectionStringProfile.Builderavoiding the need to create one manually viaDatabaseConnectionStringProfile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprofiles(List<DatabaseConnectionStringProfile>).- Parameters:
profiles- a consumer that will call methods onDatabaseConnectionStringProfile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-