pub struct StartThingRegistrationTaskRequest {
pub input_file_bucket: String,
pub input_file_key: String,
pub role_arn: String,
pub template_body: String,
}Fields§
§input_file_bucket: StringThe S3 bucket that contains the input file.
input_file_key: StringThe name of input file within the S3 bucket. This file contains a newline delimited JSON file. Each line contains the parameter values to provision one device (thing).
role_arn: StringThe IAM role ARN that grants permission the input file.
template_body: StringThe provisioning template.
Trait Implementations§
Source§impl Clone for StartThingRegistrationTaskRequest
impl Clone for StartThingRegistrationTaskRequest
Source§fn clone(&self) -> StartThingRegistrationTaskRequest
fn clone(&self) -> StartThingRegistrationTaskRequest
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 StartThingRegistrationTaskRequest
impl Default for StartThingRegistrationTaskRequest
Source§fn default() -> StartThingRegistrationTaskRequest
fn default() -> StartThingRegistrationTaskRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for StartThingRegistrationTaskRequest
impl PartialEq for StartThingRegistrationTaskRequest
Source§fn eq(&self, other: &StartThingRegistrationTaskRequest) -> bool
fn eq(&self, other: &StartThingRegistrationTaskRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StartThingRegistrationTaskRequest
Auto Trait Implementations§
impl Freeze for StartThingRegistrationTaskRequest
impl RefUnwindSafe for StartThingRegistrationTaskRequest
impl Send for StartThingRegistrationTaskRequest
impl Sync for StartThingRegistrationTaskRequest
impl Unpin for StartThingRegistrationTaskRequest
impl UnwindSafe for StartThingRegistrationTaskRequest
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