Struct aws_sdk_rds::input::CreateDbSnapshotInput
source · [−]#[non_exhaustive]pub struct CreateDbSnapshotInput { /* private fields */ }Expand description
Implementations
sourceimpl CreateDbSnapshotInput
impl CreateDbSnapshotInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDBSnapshot, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateDBSnapshot, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<CreateDBSnapshot>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateDbSnapshotInput.
sourceimpl CreateDbSnapshotInput
impl CreateDbSnapshotInput
sourcepub fn db_snapshot_identifier(&self) -> Option<&str>
pub fn db_snapshot_identifier(&self) -> Option<&str>
The identifier for the DB snapshot.
Constraints:
-
Can't be null, empty, or blank
-
Must contain from 1 to 255 letters, numbers, or hyphens
-
First character must be a letter
-
Can't end with a hyphen or contain two consecutive hyphens
Example: my-snapshot-id
sourcepub fn db_instance_identifier(&self) -> Option<&str>
pub fn db_instance_identifier(&self) -> Option<&str>
The identifier of the DB instance that you want to create the snapshot of.
Constraints:
-
Must match the identifier of an existing DBInstance.
A list of tags. For more information, see Tagging Amazon RDS Resources in the Amazon RDS User Guide.
Trait Implementations
sourceimpl Clone for CreateDbSnapshotInput
impl Clone for CreateDbSnapshotInput
sourcefn clone(&self) -> CreateDbSnapshotInput
fn clone(&self) -> CreateDbSnapshotInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for CreateDbSnapshotInput
impl Debug for CreateDbSnapshotInput
sourceimpl PartialEq<CreateDbSnapshotInput> for CreateDbSnapshotInput
impl PartialEq<CreateDbSnapshotInput> for CreateDbSnapshotInput
sourcefn eq(&self, other: &CreateDbSnapshotInput) -> bool
fn eq(&self, other: &CreateDbSnapshotInput) -> bool
impl StructuralPartialEq for CreateDbSnapshotInput
Auto Trait Implementations
impl RefUnwindSafe for CreateDbSnapshotInput
impl Send for CreateDbSnapshotInput
impl Sync for CreateDbSnapshotInput
impl Unpin for CreateDbSnapshotInput
impl UnwindSafe for CreateDbSnapshotInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more