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]

[src]

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

impl Debug for CreateCachediSCSIVolumeInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateCachediSCSIVolumeInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations