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]

[src]

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

impl Debug for StartThingRegistrationTaskRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for StartThingRegistrationTaskRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations