Class: Aws::CloudHSMV2::Types::CopyBackupToRegionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudHSMV2::Types::CopyBackupToRegionRequest
- Defined in:
- gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb
Overview
Note:
When making an API call, you may pass CopyBackupToRegionRequest data as a hash:
{
destination_region: "Region", # required
backup_id: "BackupId", # required
tag_list: [
{
key: "TagKey", # required
value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#backup_id ⇒ String
The ID of the backup that will be copied to the destination region.
-
#destination_region ⇒ String
The AWS region that will contain your copied CloudHSM cluster backup.
-
#tag_list ⇒ Array<Types::Tag>
Tags to apply to the destination backup during creation.
Instance Attribute Details
#backup_id ⇒ String
The ID of the backup that will be copied to the destination region.
358 359 360 361 362 363 364 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 358 class CopyBackupToRegionRequest < Struct.new( :destination_region, :backup_id, :tag_list) SENSITIVE = [] include Aws::Structure end |
#destination_region ⇒ String
The AWS region that will contain your copied CloudHSM cluster backup.
358 359 360 361 362 363 364 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 358 class CopyBackupToRegionRequest < Struct.new( :destination_region, :backup_id, :tag_list) SENSITIVE = [] include Aws::Structure end |
#tag_list ⇒ Array<Types::Tag>
Tags to apply to the destination backup during creation. If you specify tags, only these tags will be applied to the destination backup. If you do not specify tags, the service copies tags from the source backup to the destination backup.
358 359 360 361 362 363 364 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 358 class CopyBackupToRegionRequest < Struct.new( :destination_region, :backup_id, :tag_list) SENSITIVE = [] include Aws::Structure end |