Struct aws_sdk_ec2::input::CreateSnapshotInput
source · [−]#[non_exhaustive]pub struct CreateSnapshotInput { /* private fields */ }
Implementations
sourceimpl CreateSnapshotInput
impl CreateSnapshotInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSnapshot, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateSnapshot, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateSnapshot
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateSnapshotInput
.
sourceimpl CreateSnapshotInput
impl CreateSnapshotInput
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description for the snapshot.
sourcepub fn outpost_arn(&self) -> Option<&str>
pub fn outpost_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the Outpost on which to create a local snapshot.
-
To create a snapshot of a volume in a Region, omit this parameter. The snapshot is created in the same Region as the volume.
-
To create a snapshot of a volume on an Outpost and store the snapshot in the Region, omit this parameter. The snapshot is created in the Region for the Outpost.
-
To create a snapshot of a volume on an Outpost and store the snapshot on an Outpost, specify the ARN of the destination Outpost. The snapshot must be created on the same Outpost as the volume.
For more information, see Create local snapshots from volumes on an Outpost in the Amazon Elastic Compute Cloud User Guide.
sourcepub fn tag_specifications(&self) -> Option<&[TagSpecification]>
pub fn tag_specifications(&self) -> Option<&[TagSpecification]>
The tags to apply to the snapshot during creation.
Trait Implementations
sourceimpl Clone for CreateSnapshotInput
impl Clone for CreateSnapshotInput
sourcefn clone(&self) -> CreateSnapshotInput
fn clone(&self) -> CreateSnapshotInput
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 more
sourceimpl Debug for CreateSnapshotInput
impl Debug for CreateSnapshotInput
sourceimpl PartialEq<CreateSnapshotInput> for CreateSnapshotInput
impl PartialEq<CreateSnapshotInput> for CreateSnapshotInput
sourcefn eq(&self, other: &CreateSnapshotInput) -> bool
fn eq(&self, other: &CreateSnapshotInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for CreateSnapshotInput
Auto Trait Implementations
impl RefUnwindSafe for CreateSnapshotInput
impl Send for CreateSnapshotInput
impl Sync for CreateSnapshotInput
impl Unpin for CreateSnapshotInput
impl UnwindSafe for CreateSnapshotInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more