Struct aws_sdk_storagegateway::client::fluent_builders::AttachVolume [−][src]
pub struct AttachVolume<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }
Expand description
Fluent builder constructing a request to AttachVolume
.
Connects a volume to an iSCSI connection and then attaches the volume to the specified gateway. Detaching and attaching a volume enables you to recover your data from one gateway to a different gateway without creating a snapshot. It also makes it easier to move your volumes from an on-premises gateway to a gateway hosted on an Amazon EC2 instance.
Implementations
impl<C, M, R> AttachVolume<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> AttachVolume<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(
self
) -> Result<AttachVolumeOutput, SdkError<AttachVolumeError>> where
R::Policy: SmithyRetryPolicy<AttachVolumeInputOperationOutputAlias, AttachVolumeOutput, AttachVolumeError, AttachVolumeInputOperationRetryAlias>,
pub async fn send(
self
) -> Result<AttachVolumeOutput, SdkError<AttachVolumeError>> where
R::Policy: SmithyRetryPolicy<AttachVolumeInputOperationOutputAlias, AttachVolumeOutput, AttachVolumeError, AttachVolumeInputOperationRetryAlias>,
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
The Amazon Resource Name (ARN) of the gateway that you want to attach the volume to.
The Amazon Resource Name (ARN) of the gateway that you want to attach the volume to.
The name of the iSCSI target used by an initiator to connect to a volume and used as a
suffix for the target ARN. For example, specifying TargetName
as
myvolume results in the target ARN of
arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume
.
The target name must be unique across all volumes on a gateway.
If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as the new target name.
The name of the iSCSI target used by an initiator to connect to a volume and used as a
suffix for the target ARN. For example, specifying TargetName
as
myvolume results in the target ARN of
arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/target/iqn.1997-05.com.amazon:myvolume
.
The target name must be unique across all volumes on a gateway.
If you don't specify a value, Storage Gateway uses the value that was previously used for this volume as the new target name.
The Amazon Resource Name (ARN) of the volume to attach to the specified gateway.
The Amazon Resource Name (ARN) of the volume to attach to the specified gateway.
The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use DescribeGatewayInformation to get a list of the network interfaces available on a gateway.
Valid Values: A valid IP address.
The network interface of the gateway on which to expose the iSCSI target. Only IPv4 addresses are accepted. Use DescribeGatewayInformation to get a list of the network interfaces available on a gateway.
Valid Values: A valid IP address.
The unique device ID or other distinguishing data that identifies the local disk used to create the volume. This value is only required when you are attaching a stored volume.
The unique device ID or other distinguishing data that identifies the local disk used to create the volume. This value is only required when you are attaching a stored volume.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for AttachVolume<C, M, R>
impl<C, M, R> Unpin for AttachVolume<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for AttachVolume<C, M, R>
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more