Struct rusoto_opsworks::Deployment[][src]

pub struct Deployment {
    pub app_id: Option<String>,
    pub command: Option<DeploymentCommand>,
    pub comment: Option<String>,
    pub completed_at: Option<String>,
    pub created_at: Option<String>,
    pub custom_json: Option<String>,
    pub deployment_id: Option<String>,
    pub duration: Option<i64>,
    pub iam_user_arn: Option<String>,
    pub instance_ids: Option<Vec<String>>,
    pub stack_id: Option<String>,
    pub status: Option<String>,
}

Describes a deployment of a stack or app.

Fields

The app ID.

A user-defined comment.

Date when the deployment completed.

Date when the deployment was created.

A string that contains user-defined custom JSON. It can be used to override the corresponding default stack configuration attribute values for stack or to pass data to recipes. The string should be in the following format:

"{\"key1\": \"value1\", \"key2\": \"value2\",...}"

For more information on custom JSON, see Use Custom JSON to Modify the Stack Configuration Attributes.

The deployment ID.

The deployment duration.

The user's IAM ARN.

The IDs of the target instances.

The stack ID.

The deployment status:

  • running

  • successful

  • failed

Trait Implementations

impl Default for Deployment
[src]

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

impl Debug for Deployment
[src]

Formats the value using the given formatter. Read more

impl Clone for Deployment
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Deployment

impl Sync for Deployment