Struct aws_sdk_fsx::client::fluent_builders::CopyBackup [−][src]
pub struct CopyBackup<C = DynConnector, M = AwsMiddleware, R = Standard> { /* fields omitted */ }Expand description
Fluent builder constructing a request to CopyBackup.
Copies an existing backup within the same Amazon Web Services account to another Amazon Web Services Region (cross-Region copy) or within the same Amazon Web Services Region (in-Region copy). You can have up to five backup copy requests in progress to a single destination Region per account.
You can use cross-Region backup copies for cross-region disaster recovery. You periodically take backups and copy them to another Region so that in the event of a disaster in the primary Region, you can restore from backup and recover availability quickly in the other Region. You can make cross-Region copies only within your Amazon Web Services partition.
You can also use backup copies to clone your file data set to another Region or within the same Region.
You can use the SourceRegion parameter to specify the Amazon Web Services Region
from which the backup will be copied. For example, if you make the call from the
us-west-1 Region and want to copy a backup from the us-east-2
Region, you specify us-east-2 in the SourceRegion parameter
to make a cross-Region copy. If you don't specify a Region, the backup copy is
created in the same Region where the request is sent from (in-Region copy).
For more information on creating backup copies, see Copying backups in the Amazon FSx for Windows User Guide and Copying backups in the Amazon FSx for Lustre User Guide.
Implementations
impl<C, M, R> CopyBackup<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
impl<C, M, R> CopyBackup<C, M, R> where
C: SmithyConnector,
M: SmithyMiddleware<C>,
R: NewRequestPolicy,
pub async fn send(self) -> Result<CopyBackupOutput, SdkError<CopyBackupError>> where
R::Policy: SmithyRetryPolicy<CopyBackupInputOperationOutputAlias, CopyBackupOutput, CopyBackupError, CopyBackupInputOperationRetryAlias>,
pub async fn send(self) -> Result<CopyBackupOutput, SdkError<CopyBackupError>> where
R::Policy: SmithyRetryPolicy<CopyBackupInputOperationOutputAlias, CopyBackupOutput, CopyBackupError, CopyBackupInputOperationRetryAlias>,
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.
(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
(Optional) An idempotency token for resource creation, in a string of up to 64 ASCII characters. This token is automatically filled on your behalf when you use the Command Line Interface (CLI) or an Amazon Web Services SDK.
The ID of the source backup. Specifies the ID of the backup that is being copied.
The ID of the source backup. Specifies the ID of the backup that is being copied.
The source Amazon Web Services Region of the backup. Specifies the Amazon Web Services Region from which the backup is being copied. The source and destination Regions must be in the same Amazon Web Services partition. If you don't specify a Region, it defaults to the Region where the request is sent from (in-Region copy).
The source Amazon Web Services Region of the backup. Specifies the Amazon Web Services Region from which the backup is being copied. The source and destination Regions must be in the same Amazon Web Services partition. If you don't specify a Region, it defaults to the Region where the request is sent from (in-Region copy).
The ID of the Key Management Service (KMS) key used to encrypt the file system's data
for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and
Amazon FSx for Lustre PERSISTENT_1 file systems at rest. If not specified, the Amazon FSx
managed key is used. The Amazon FSx for Lustre SCRATCH_1 and SCRATCH_2 file systems
are always encrypted at rest using Amazon FSx managed keys. For more information, see Encrypt
in the Key Management Service API Reference.
The ID of the Key Management Service (KMS) key used to encrypt the file system's data
for Amazon FSx for Windows File Server file systems, Amazon FSx for NetApp ONTAP file systems, and
Amazon FSx for Lustre PERSISTENT_1 file systems at rest. If not specified, the Amazon FSx
managed key is used. The Amazon FSx for Lustre SCRATCH_1 and SCRATCH_2 file systems
are always encrypted at rest using Amazon FSx managed keys. For more information, see Encrypt
in the Key Management Service API Reference.
A boolean flag indicating whether tags from the source backup should be copied to the backup copy. This value defaults to false.
If you set CopyTags to true and the source backup has
existing tags, you can use the Tags parameter to create new
tags, provided that the sum of the source backup tags and the new tags
doesn't exceed 50. Both sets of tags are merged. If there are tag
conflicts (for example, two tags with the same key but different values),
the tags created with the Tags parameter take precedence.
A boolean flag indicating whether tags from the source backup should be copied to the backup copy. This value defaults to false.
If you set CopyTags to true and the source backup has
existing tags, you can use the Tags parameter to create new
tags, provided that the sum of the source backup tags and the new tags
doesn't exceed 50. Both sets of tags are merged. If there are tag
conflicts (for example, two tags with the same key but different values),
the tags created with the Tags parameter take precedence.
Appends an item to Tags.
To override the contents of this collection use set_tags.
A list of Tag values, with a maximum of 50 elements.
A list of Tag values, with a maximum of 50 elements.
Trait Implementations
Auto Trait Implementations
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !RefUnwindSafe for CopyBackup<C, M, R>
impl<C, M, R> Unpin for CopyBackup<C, M, R>
impl<C = DynConnector, M = AwsMiddleware, R = Standard> !UnwindSafe for CopyBackup<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