Struct aws_sdk_backup::output::DescribeRestoreJobOutput
source · [−]#[non_exhaustive]pub struct DescribeRestoreJobOutput { /* private fields */ }
Implementations
sourceimpl DescribeRestoreJobOutput
impl DescribeRestoreJobOutput
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
Returns the account ID that owns the restore job.
sourcepub fn restore_job_id(&self) -> Option<&str>
pub fn restore_job_id(&self) -> Option<&str>
Uniquely identifies the job that restores a recovery point.
sourcepub fn recovery_point_arn(&self) -> Option<&str>
pub fn recovery_point_arn(&self) -> Option<&str>
An ARN that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45
.
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The date and time that 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.
sourcepub fn completion_date(&self) -> Option<&DateTime>
pub fn completion_date(&self) -> Option<&DateTime>
The date and time that 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.
sourcepub fn status(&self) -> Option<&RestoreJobStatus>
pub fn status(&self) -> Option<&RestoreJobStatus>
Status code specifying the state of the job that is initiated by Backup to restore a recovery point.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
A message showing the status of a job to restore a recovery point.
sourcepub fn percent_done(&self) -> Option<&str>
pub fn percent_done(&self) -> Option<&str>
Contains an estimated percentage that is complete of a job at the time the job status was queried.
sourcepub fn backup_size_in_bytes(&self) -> Option<i64>
pub fn backup_size_in_bytes(&self) -> Option<i64>
The size, in bytes, of the restored resource.
sourcepub fn iam_role_arn(&self) -> Option<&str>
pub fn iam_role_arn(&self) -> Option<&str>
Specifies the IAM role ARN used to create the target recovery point; for example, arn:aws:iam::123456789012:role/S3Access
.
sourcepub fn expected_completion_time_minutes(&self) -> Option<i64>
pub fn expected_completion_time_minutes(&self) -> Option<i64>
The amount of time in minutes that a job restoring a recovery point is expected to take.
sourcepub fn created_resource_arn(&self) -> Option<&str>
pub fn created_resource_arn(&self) -> Option<&str>
An Amazon Resource Name (ARN) that uniquely identifies a resource whose recovery point is being restored. The format of the ARN depends on the resource type of the backed-up resource.
sourcepub fn resource_type(&self) -> Option<&str>
pub fn resource_type(&self) -> Option<&str>
Returns metadata associated with a restore job listed by resource type.
sourceimpl DescribeRestoreJobOutput
impl DescribeRestoreJobOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeRestoreJobOutput
.
Trait Implementations
sourceimpl Clone for DescribeRestoreJobOutput
impl Clone for DescribeRestoreJobOutput
sourcefn clone(&self) -> DescribeRestoreJobOutput
fn clone(&self) -> DescribeRestoreJobOutput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more