[][src]Struct rusoto_greengrass::StartBulkDeploymentRequest

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

Fields

amzn_client_token: Option<String>

A client token used to correlate requests and responses.

execution_role_arn: 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: 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.

tags: Option<HashMap<String, String>>

Tag(s) to add to the new resource.

Trait Implementations

impl Clone for StartBulkDeploymentRequest[src]

impl Debug for StartBulkDeploymentRequest[src]

impl Default for StartBulkDeploymentRequest[src]

impl PartialEq<StartBulkDeploymentRequest> for StartBulkDeploymentRequest[src]

impl Serialize for StartBulkDeploymentRequest[src]

impl StructuralPartialEq for StartBulkDeploymentRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.