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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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.
8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 |
# File 'gems/aws-sdk-backup/lib/aws-sdk-backup/types.rb', line 8988 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 |