Interface RevisionTarget.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<RevisionTarget.Builder,RevisionTarget>,SdkBuilder<RevisionTarget.Builder,RevisionTarget>,SdkPojo
- Enclosing class:
- RevisionTarget
public static interface RevisionTarget.Builder extends SdkPojo, CopyableBuilder<RevisionTarget.Builder,RevisionTarget>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RevisionTarget.BuilderdatabaseRevision(String databaseRevision)A unique string that identifies the version to update the cluster to.RevisionTarget.BuilderdatabaseRevisionReleaseDate(Instant databaseRevisionReleaseDate)The date on which the database revision was released.RevisionTarget.Builderdescription(String description)A string that describes the changes and features that will be applied to the cluster when it is updated to the corresponding ClusterDbRevision.-
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
-
databaseRevision
RevisionTarget.Builder databaseRevision(String databaseRevision)
A unique string that identifies the version to update the cluster to. You can use this value in ModifyClusterDbRevision.
- Parameters:
databaseRevision- A unique string that identifies the version to update the cluster to. You can use this value in ModifyClusterDbRevision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
RevisionTarget.Builder description(String description)
A string that describes the changes and features that will be applied to the cluster when it is updated to the corresponding ClusterDbRevision.
- Parameters:
description- A string that describes the changes and features that will be applied to the cluster when it is updated to the corresponding ClusterDbRevision.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
databaseRevisionReleaseDate
RevisionTarget.Builder databaseRevisionReleaseDate(Instant databaseRevisionReleaseDate)
The date on which the database revision was released.
- Parameters:
databaseRevisionReleaseDate- The date on which the database revision was released.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-