Class: Aws::CloudHSMV2::Types::CopyBackupToRegionResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudHSMV2::Types::CopyBackupToRegionResponse
- Defined in:
- gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#destination_backup ⇒ Types::DestinationBackup
Information on the backup that will be copied to the destination region, including CreateTimestamp, SourceBackup, SourceCluster, and Source Region.
Instance Attribute Details
#destination_backup ⇒ Types::DestinationBackup
Information on the backup that will be copied to the destination region, including CreateTimestamp, SourceBackup, SourceCluster, and Source Region. CreateTimestamp of the destination backup will be the same as that of the source backup.
You will need to use the sourceBackupID
returned in this operation
to use the DescribeBackups operation on the backup that will be
copied to the destination region.
379 380 381 382 383 |
# File 'gems/aws-sdk-cloudhsmv2/lib/aws-sdk-cloudhsmv2/types.rb', line 379 class CopyBackupToRegionResponse < Struct.new( :destination_backup) SENSITIVE = [] include Aws::Structure end |