[][src]Struct rusoto_ebs::StartSnapshotResponse

pub struct StartSnapshotResponse {
    pub block_size: Option<i64>,
    pub description: Option<String>,
    pub kms_key_arn: Option<String>,
    pub owner_id: Option<String>,
    pub parent_snapshot_id: Option<String>,
    pub snapshot_id: Option<String>,
    pub start_time: Option<f64>,
    pub status: Option<String>,
    pub tags: Option<Vec<Tag>>,
    pub volume_size: Option<i64>,
}

Fields

block_size: Option<i64>

The size of the blocks in the snapshot, in bytes.

description: Option<String>

The description of the snapshot.

kms_key_arn: Option<String>

The Amazon Resource Name (ARN) of the AWS Key Management Service (AWS KMS) customer master key (CMK) used to encrypt the snapshot.

owner_id: Option<String>

The AWS account ID of the snapshot owner.

parent_snapshot_id: Option<String>

The ID of the parent snapshot.

snapshot_id: Option<String>

The ID of the snapshot.

start_time: Option<f64>

The timestamp when the snapshot was created.

status: Option<String>

The status of the snapshot.

tags: Option<Vec<Tag>>

The tags applied to the snapshot. You can specify up to 50 tags per snapshot. For more information, see Tagging your Amazon EC2 resources in the Amazon Elastic Compute Cloud User Guide.

volume_size: Option<i64>

The size of the volume, in GiB.

Trait Implementations

impl Clone for StartSnapshotResponse[src]

impl Debug for StartSnapshotResponse[src]

impl Default for StartSnapshotResponse[src]

impl<'de> Deserialize<'de> for StartSnapshotResponse[src]

impl PartialEq<StartSnapshotResponse> for StartSnapshotResponse[src]

impl StructuralPartialEq for StartSnapshotResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.