Struct rusoto_storagegateway::CreateCachediSCSIVolumeInput[][src]

pub struct CreateCachediSCSIVolumeInput {
    pub client_token: String,
    pub gateway_arn: String,
    pub network_interface_id: String,
    pub snapshot_id: Option<String>,
    pub source_volume_arn: Option<String>,
    pub target_name: String,
    pub volume_size_in_bytes: i64,
}

Fields

The ARN for an existing volume. Specifying this ARN makes the new volume into an exact copy of the specified existing volume's latest recovery point. The VolumeSizeInBytes value for this new volume must be equal to or larger than the size of the existing volume, in bytes.

Trait Implementations

impl Default for CreateCachediSCSIVolumeInput
[src]

Returns the "default value" for a type. Read more

impl Debug for CreateCachediSCSIVolumeInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateCachediSCSIVolumeInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateCachediSCSIVolumeInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations