Struct rusoto_mgh::NotifyApplicationStateRequest[][src]

pub struct NotifyApplicationStateRequest {
    pub application_id: String,
    pub dry_run: Option<bool>,
    pub status: String,
}

Fields

The configurationId in ADS that uniquely identifies the grouped application.

Optional boolean flag to indicate whether any effect should take place. Used to test if the caller has permission to make the call.

Status of the application - Not Started, In-Progress, Complete.

Trait Implementations

impl Default for NotifyApplicationStateRequest
[src]

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

impl Debug for NotifyApplicationStateRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for NotifyApplicationStateRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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