Struct aws_sdk_redshift::types::builders::RevisionTargetBuilder
source · #[non_exhaustive]pub struct RevisionTargetBuilder { /* private fields */ }
Expand description
A builder for RevisionTarget
.
Implementations§
source§impl RevisionTargetBuilder
impl RevisionTargetBuilder
sourcepub fn database_revision(self, input: impl Into<String>) -> Self
pub fn database_revision(self, input: impl Into<String>) -> Self
A unique string that identifies the version to update the cluster to. You can use this value in ModifyClusterDbRevision
.
sourcepub fn set_database_revision(self, input: Option<String>) -> Self
pub fn set_database_revision(self, input: Option<String>) -> Self
A unique string that identifies the version to update the cluster to. You can use this value in ModifyClusterDbRevision
.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A string that describes the changes and features that will be applied to the cluster when it is updated to the corresponding ClusterDbRevision
.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A string that describes the changes and features that will be applied to the cluster when it is updated to the corresponding ClusterDbRevision
.
sourcepub fn database_revision_release_date(self, input: DateTime) -> Self
pub fn database_revision_release_date(self, input: DateTime) -> Self
The date on which the database revision was released.
sourcepub fn set_database_revision_release_date(self, input: Option<DateTime>) -> Self
pub fn set_database_revision_release_date(self, input: Option<DateTime>) -> Self
The date on which the database revision was released.
sourcepub fn build(self) -> RevisionTarget
pub fn build(self) -> RevisionTarget
Consumes the builder and constructs a RevisionTarget
.
Trait Implementations§
source§impl Clone for RevisionTargetBuilder
impl Clone for RevisionTargetBuilder
source§fn clone(&self) -> RevisionTargetBuilder
fn clone(&self) -> RevisionTargetBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for RevisionTargetBuilder
impl Debug for RevisionTargetBuilder
source§impl Default for RevisionTargetBuilder
impl Default for RevisionTargetBuilder
source§fn default() -> RevisionTargetBuilder
fn default() -> RevisionTargetBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<RevisionTargetBuilder> for RevisionTargetBuilder
impl PartialEq<RevisionTargetBuilder> for RevisionTargetBuilder
source§fn eq(&self, other: &RevisionTargetBuilder) -> bool
fn eq(&self, other: &RevisionTargetBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RevisionTargetBuilder
Auto Trait Implementations§
impl RefUnwindSafe for RevisionTargetBuilder
impl Send for RevisionTargetBuilder
impl Sync for RevisionTargetBuilder
impl Unpin for RevisionTargetBuilder
impl UnwindSafe for RevisionTargetBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more