#[non_exhaustive]pub struct StartBackupJobOutput {
pub backup_job_id: Option<String>,
pub recovery_point_arn: Option<String>,
pub creation_date: Option<DateTime>,
pub is_parent: bool,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.backup_job_id: Option<String>
Uniquely identifies a request to Backup to back up a resource.
recovery_point_arn: Option<String>
Note: This field is only returned for Amazon EFS and Advanced DynamoDB resources.
An ARN that uniquely identifies a recovery point; for example, arn:aws:backup:us-east-1:123456789012:recovery-point:1EB3B5E7-9EB0-435A-A80B-108B488B0D45
.
creation_date: Option<DateTime>
The date and time that a backup 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.
is_parent: bool
This is a returned boolean value indicating this is a parent (composite) backup job.
Implementations§
source§impl StartBackupJobOutput
impl StartBackupJobOutput
sourcepub fn backup_job_id(&self) -> Option<&str>
pub fn backup_job_id(&self) -> Option<&str>
Uniquely identifies a request to Backup to back up a resource.
sourcepub fn recovery_point_arn(&self) -> Option<&str>
pub fn recovery_point_arn(&self) -> Option<&str>
Note: This field is only returned for Amazon EFS and Advanced DynamoDB resources.
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 backup 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.
source§impl StartBackupJobOutput
impl StartBackupJobOutput
sourcepub fn builder() -> StartBackupJobOutputBuilder
pub fn builder() -> StartBackupJobOutputBuilder
Creates a new builder-style object to manufacture StartBackupJobOutput
.
Trait Implementations§
source§impl Clone for StartBackupJobOutput
impl Clone for StartBackupJobOutput
source§fn clone(&self) -> StartBackupJobOutput
fn clone(&self) -> StartBackupJobOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StartBackupJobOutput
impl Debug for StartBackupJobOutput
source§impl PartialEq for StartBackupJobOutput
impl PartialEq for StartBackupJobOutput
source§fn eq(&self, other: &StartBackupJobOutput) -> bool
fn eq(&self, other: &StartBackupJobOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for StartBackupJobOutput
impl RequestId for StartBackupJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.