Class: Aws::Backup::Types::RestoreJobsListMember
- Inherits:
-
Struct
- Object
- Struct
- Aws::Backup::Types::RestoreJobsListMember
- Defined in:
- gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb
Overview
Contains metadata about a restore job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#account_id ⇒ String
The account ID that owns the restore job.
-
#backup_size_in_bytes ⇒ Integer
The size, in bytes, of the restored resource.
-
#backup_vault_arn ⇒ String
The Amazon Resource Name (ARN) of the backup vault containing the recovery point being restored.
-
#completion_date ⇒ Time
The date and time a job to restore a recovery point is completed, in Unix format and Coordinated Universal Time (UTC).
-
#created_by ⇒ Types::RestoreJobCreator
Contains identifying information about the creation of a restore job.
-
#created_resource_arn ⇒ String
An Amazon Resource Name (ARN) that uniquely identifies a resource.
-
#creation_date ⇒ Time
The date and time a restore job is created, in Unix format and Coordinated Universal Time (UTC).
-
#deletion_status ⇒ String
This notes the status of the data generated by the restore test.
-
#deletion_status_message ⇒ String
This describes the restore job deletion status.
-
#expected_completion_time_minutes ⇒ Integer
The amount of time in minutes that a job restoring a recovery point is expected to take.
-
#iam_role_arn ⇒ String
The IAM role ARN used to create the target recovery point; for example,
arn:aws:iam::123456789012:role/S3Access. -
#is_parent ⇒ Boolean
This is a boolean value indicating whether the restore job is a parent (composite) restore job.
-
#parent_job_id ⇒ String
This is the unique identifier of the parent restore job for the selected restore job.
-
#percent_done ⇒ String
Contains an estimated percentage complete of a job at the time the job status was queried.
-
#recovery_point_arn ⇒ String
An ARN that uniquely identifies a recovery point; for example,
arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45. -
#recovery_point_creation_date ⇒ Time
The date on which a recovery point was created.
-
#resource_type ⇒ String
The resource type of the listed restore jobs; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database.
-
#restore_job_id ⇒ String
Uniquely identifies the job that restores a recovery point.
-
#source_resource_arn ⇒ String
The Amazon Resource Name (ARN) of the original resource that was backed up.
-
#status ⇒ String
A status code specifying the state of the job initiated by Backup to restore a recovery point.
-
#status_message ⇒ String
A detailed message explaining the status of the job to restore a recovery point.
-
#validation_status ⇒ String
The status of validation run on the indicated restore job.
-
#validation_status_message ⇒ String
This describes the status of validation run on the indicated restore job.
Instance Attribute Details
#account_id ⇒ String
The account ID that owns the restore job.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#backup_size_in_bytes ⇒ Integer
The size, in bytes, of the restored resource.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#backup_vault_arn ⇒ String
The Amazon Resource Name (ARN) of the backup vault containing the recovery point being restored. This helps identify vault access policies and permissions.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#completion_date ⇒ Time
The date and time a job to restore a recovery point is completed, in
Unix format and Coordinated Universal Time (UTC). The value of
CompletionDate is accurate to milliseconds. For example, the value
1516925490.087 represents Friday, January 26, 2018 12:11:30.087 AM.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#created_by ⇒ Types::RestoreJobCreator
Contains identifying information about the creation of a restore job.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#created_resource_arn ⇒ String
An Amazon Resource Name (ARN) that uniquely identifies a resource. The format of the ARN depends on the resource type.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#creation_date ⇒ Time
The date and time a restore job is created, in Unix format and
Coordinated Universal Time (UTC). The value of CreationDate is
accurate to milliseconds. For example, the value 1516925490.087
represents Friday, January 26, 2018 12:11:30.087 AM.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#deletion_status ⇒ String
This notes the status of the data generated by the restore test. The
status may be Deleting, Failed, or Successful.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#deletion_status_message ⇒ String
This describes the restore job deletion status.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#expected_completion_time_minutes ⇒ Integer
The amount of time in minutes that a job restoring a recovery point is expected to take.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#iam_role_arn ⇒ String
The IAM role ARN used to create the target recovery point; for
example, arn:aws:iam::123456789012:role/S3Access.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#is_parent ⇒ Boolean
This is a boolean value indicating whether the restore job is a parent (composite) restore job.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#parent_job_id ⇒ String
This is the unique identifier of the parent restore job for the selected restore job.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#percent_done ⇒ String
Contains an estimated percentage complete of a job at the time the job status was queried.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#recovery_point_arn ⇒ String
An ARN that uniquely identifies a recovery point; for example,
arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#recovery_point_creation_date ⇒ Time
The date on which a recovery point was created.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#resource_type ⇒ String
The resource type of the listed restore jobs; for example, an Amazon Elastic Block Store (Amazon EBS) volume or an Amazon Relational Database Service (Amazon RDS) database. For Windows Volume Shadow Copy Service (VSS) backups, the only supported resource type is Amazon EC2.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#restore_job_id ⇒ String
Uniquely identifies the job that restores a recovery point.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#source_resource_arn ⇒ String
The Amazon Resource Name (ARN) of the original resource that was backed up. This provides context about what resource is being restored.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
A status code specifying the state of the job initiated by Backup to restore a recovery point.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#status_message ⇒ String
A detailed message explaining the status of the job to restore a recovery point.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#validation_status ⇒ String
The status of validation run on the indicated restore job.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |
#validation_status_message ⇒ String
This describes the status of validation run on the indicated restore job.
9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 9025 class RestoreJobsListMember < Struct.new( :account_id, :restore_job_id, :recovery_point_arn, :source_resource_arn, :backup_vault_arn, :creation_date, :completion_date, :status, :status_message, :percent_done, :backup_size_in_bytes, :iam_role_arn, :expected_completion_time_minutes, :created_resource_arn, :resource_type, :recovery_point_creation_date, :is_parent, :parent_job_id, :created_by, :validation_status, :validation_status_message, :deletion_status, :deletion_status_message) SENSITIVE = [] include Aws::Structure end |