#[non_exhaustive]pub struct DescribeThingRegistrationTaskOutput { /* private fields */ }
Implementations§
source§impl DescribeThingRegistrationTaskOutput
impl DescribeThingRegistrationTaskOutput
sourcepub fn creation_date(&self) -> Option<&DateTime>
pub fn creation_date(&self) -> Option<&DateTime>
The task creation date.
sourcepub fn last_modified_date(&self) -> Option<&DateTime>
pub fn last_modified_date(&self) -> Option<&DateTime>
The date when the task was last modified.
sourcepub fn template_body(&self) -> Option<&str>
pub fn template_body(&self) -> Option<&str>
The task's template.
sourcepub fn input_file_bucket(&self) -> Option<&str>
pub fn input_file_bucket(&self) -> Option<&str>
The S3 bucket that contains the input file.
sourcepub fn input_file_key(&self) -> Option<&str>
pub fn input_file_key(&self) -> Option<&str>
The input file key.
sourcepub fn role_arn(&self) -> Option<&str>
pub fn role_arn(&self) -> Option<&str>
The role ARN that grants access to the input file bucket.
sourcepub fn success_count(&self) -> i32
pub fn success_count(&self) -> i32
The number of things successfully provisioned.
sourcepub fn failure_count(&self) -> i32
pub fn failure_count(&self) -> i32
The number of things that failed to be provisioned.
sourcepub fn percentage_progress(&self) -> i32
pub fn percentage_progress(&self) -> i32
The progress of the bulk provisioning task expressed as a percentage.
source§impl DescribeThingRegistrationTaskOutput
impl DescribeThingRegistrationTaskOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeThingRegistrationTaskOutput
.
Trait Implementations§
source§impl Clone for DescribeThingRegistrationTaskOutput
impl Clone for DescribeThingRegistrationTaskOutput
source§fn clone(&self) -> DescribeThingRegistrationTaskOutput
fn clone(&self) -> DescribeThingRegistrationTaskOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<DescribeThingRegistrationTaskOutput> for DescribeThingRegistrationTaskOutput
impl PartialEq<DescribeThingRegistrationTaskOutput> for DescribeThingRegistrationTaskOutput
source§fn eq(&self, other: &DescribeThingRegistrationTaskOutput) -> bool
fn eq(&self, other: &DescribeThingRegistrationTaskOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.