Interface RelationalDatabaseBlueprint.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RelationalDatabaseBlueprint.Builder,RelationalDatabaseBlueprint>,SdkBuilder<RelationalDatabaseBlueprint.Builder,RelationalDatabaseBlueprint>,SdkPojo
- Enclosing class:
- RelationalDatabaseBlueprint
public static interface RelationalDatabaseBlueprint.Builder extends SdkPojo, CopyableBuilder<RelationalDatabaseBlueprint.Builder,RelationalDatabaseBlueprint>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RelationalDatabaseBlueprint.BuilderblueprintId(String blueprintId)The ID for the database blueprint.RelationalDatabaseBlueprint.Builderengine(String engine)The database software of the database blueprint (for example,MySQL).RelationalDatabaseBlueprint.Builderengine(RelationalDatabaseEngine engine)The database software of the database blueprint (for example,MySQL).RelationalDatabaseBlueprint.BuilderengineDescription(String engineDescription)The description of the database engine for the database blueprint.RelationalDatabaseBlueprint.BuilderengineVersion(String engineVersion)The database engine version for the database blueprint (for example,5.7.23).RelationalDatabaseBlueprint.BuilderengineVersionDescription(String engineVersionDescription)The description of the database engine version for the database blueprint.RelationalDatabaseBlueprint.BuilderisEngineDefault(Boolean isEngineDefault)A Boolean value indicating whether the engine version is the default for the database blueprint.-
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
-
blueprintId
RelationalDatabaseBlueprint.Builder blueprintId(String blueprintId)
The ID for the database blueprint.
- Parameters:
blueprintId- The ID for the database blueprint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
engine
RelationalDatabaseBlueprint.Builder engine(String engine)
The database software of the database blueprint (for example,
MySQL).- Parameters:
engine- The database software of the database blueprint (for example,MySQL).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RelationalDatabaseEngine,RelationalDatabaseEngine
-
engine
RelationalDatabaseBlueprint.Builder engine(RelationalDatabaseEngine engine)
The database software of the database blueprint (for example,
MySQL).- Parameters:
engine- The database software of the database blueprint (for example,MySQL).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
RelationalDatabaseEngine,RelationalDatabaseEngine
-
engineVersion
RelationalDatabaseBlueprint.Builder engineVersion(String engineVersion)
The database engine version for the database blueprint (for example,
5.7.23).- Parameters:
engineVersion- The database engine version for the database blueprint (for example,5.7.23).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
engineDescription
RelationalDatabaseBlueprint.Builder engineDescription(String engineDescription)
The description of the database engine for the database blueprint.
- Parameters:
engineDescription- The description of the database engine for the database blueprint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
engineVersionDescription
RelationalDatabaseBlueprint.Builder engineVersionDescription(String engineVersionDescription)
The description of the database engine version for the database blueprint.
- Parameters:
engineVersionDescription- The description of the database engine version for the database blueprint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
isEngineDefault
RelationalDatabaseBlueprint.Builder isEngineDefault(Boolean isEngineDefault)
A Boolean value indicating whether the engine version is the default for the database blueprint.
- Parameters:
isEngineDefault- A Boolean value indicating whether the engine version is the default for the database blueprint.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-