[][src]Struct rusoto_greengrass::StartBulkDeploymentRequest

pub struct StartBulkDeploymentRequest {
    pub amzn_client_token: Option<String>,
    pub execution_role_arn: Option<String>,
    pub input_file_uri: Option<String>,
}

Fields

amzn_client_token: Option<String>

A client token used to correlate requests and responses.

execution_role_arn: Option<String>

The ARN of the execution role to associate with the bulk deployment operation. This IAM role must allow the ''greengrass:CreateDeployment'' action for all group versions that are listed in the input file. This IAM role must have access to the S3 bucket containing the input file.

input_file_uri: Option<String>

The URI of the input file contained in the S3 bucket. The execution role must have ''getObject'' permissions on this bucket to access the input file. The input file is a JSON-serialized, line delimited file with UTF-8 encoding that provides a list of group and version IDs and the deployment type. This file must be less than 100 MB. Currently, AWS IoT Greengrass supports only ''NewDeployment'' deployment types.

Trait Implementations

impl PartialEq<StartBulkDeploymentRequest> for StartBulkDeploymentRequest[src]

impl Default for StartBulkDeploymentRequest[src]

impl Clone for StartBulkDeploymentRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for StartBulkDeploymentRequest[src]

impl Serialize for StartBulkDeploymentRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self