Struct rusoto_greengrass::ResetDeploymentsRequest[][src]

pub struct ResetDeploymentsRequest {
    pub amzn_client_token: Option<String>,
    pub force: Option<bool>,
    pub group_id: String,
}

Information needed to reset deployments.

Fields

A client token used to correlate requests and responses.

If true, performs a best-effort only core reset.

The ID of the AWS Greengrass group.

Trait Implementations

impl Default for ResetDeploymentsRequest
[src]

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

impl Debug for ResetDeploymentsRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for ResetDeploymentsRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ResetDeploymentsRequest
[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