Method: Aws::Backup::Types::CopyJob#resource_type
- Defined in:
- lib/aws-sdk-backup/types.rb
#resource_type ⇒ String
The type of Amazon Web Services resource to be copied; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 |
# File 'lib/aws-sdk-backup/types.rb', line 1716 class CopyJob < Struct.new( :account_id, :copy_job_id, :source_backup_vault_arn, :source_recovery_point_arn, :destination_backup_vault_arn, :destination_vault_type, :destination_vault_lock_state, :destination_recovery_point_arn, :destination_encryption_key_arn, :destination_recovery_point_lifecycle, :resource_arn, :creation_date, :completion_date, :state, :status_message, :backup_size_in_bytes, :iam_role_arn, :created_by, :created_by_backup_job_id, :resource_type, :parent_job_id, :is_parent, :composite_member_identifier, :number_of_child_jobs, :child_jobs_in_state, :resource_name, :message_category) SENSITIVE = [] include Aws::Structure end |