Struct rusoto_iot::StartThingRegistrationTaskRequest[][src]

pub struct StartThingRegistrationTaskRequest {
    pub input_file_bucket: String,
    pub input_file_key: String,
    pub role_arn: String,
    pub template_body: String,
}

Fields

The S3 bucket that contains the input file.

The 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).

The IAM role ARN that grants permission the input file.

The provisioning template.

Trait Implementations

impl Default for StartThingRegistrationTaskRequest
[src]

Returns the "default value" for a type. Read more

impl Debug for StartThingRegistrationTaskRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for StartThingRegistrationTaskRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for StartThingRegistrationTaskRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations