pub struct DescribeThingRegistrationTaskResponse {
pub creation_date: Option<f64>,
pub failure_count: Option<i64>,
pub input_file_bucket: Option<String>,
pub input_file_key: Option<String>,
pub last_modified_date: Option<f64>,
pub message: Option<String>,
pub percentage_progress: Option<i64>,
pub role_arn: Option<String>,
pub status: Option<String>,
pub success_count: Option<i64>,
pub task_id: Option<String>,
pub template_body: Option<String>,
}Fields§
§creation_date: Option<f64>The task creation date.
failure_count: Option<i64>The number of things that failed to be provisioned.
input_file_bucket: Option<String>The S3 bucket that contains the input file.
input_file_key: Option<String>The input file key.
last_modified_date: Option<f64>The date when the task was last modified.
message: Option<String>The message.
percentage_progress: Option<i64>The progress of the bulk provisioning task expressed as a percentage.
role_arn: Option<String>The role ARN that grants access to the input file bucket.
status: Option<String>The status of the bulk thing provisioning task.
success_count: Option<i64>The number of things successfully provisioned.
task_id: Option<String>The task ID.
template_body: Option<String>The task's template.
Trait Implementations§
Source§impl Clone for DescribeThingRegistrationTaskResponse
impl Clone for DescribeThingRegistrationTaskResponse
Source§fn clone(&self) -> DescribeThingRegistrationTaskResponse
fn clone(&self) -> DescribeThingRegistrationTaskResponse
Returns a duplicate 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 Default for DescribeThingRegistrationTaskResponse
impl Default for DescribeThingRegistrationTaskResponse
Source§fn default() -> DescribeThingRegistrationTaskResponse
fn default() -> DescribeThingRegistrationTaskResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeThingRegistrationTaskResponse
impl<'de> Deserialize<'de> for DescribeThingRegistrationTaskResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for DescribeThingRegistrationTaskResponse
impl PartialEq for DescribeThingRegistrationTaskResponse
Source§fn eq(&self, other: &DescribeThingRegistrationTaskResponse) -> bool
fn eq(&self, other: &DescribeThingRegistrationTaskResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeThingRegistrationTaskResponse
Auto Trait Implementations§
impl Freeze for DescribeThingRegistrationTaskResponse
impl RefUnwindSafe for DescribeThingRegistrationTaskResponse
impl Send for DescribeThingRegistrationTaskResponse
impl Sync for DescribeThingRegistrationTaskResponse
impl Unpin for DescribeThingRegistrationTaskResponse
impl UnwindSafe for DescribeThingRegistrationTaskResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more