Struct rusoto_opsworks::DeleteInstanceRequest[][src]

pub struct DeleteInstanceRequest {
    pub delete_elastic_ip: Option<bool>,
    pub delete_volumes: Option<bool>,
    pub instance_id: String,
}

Fields

Whether to delete the instance Elastic IP address.

Whether to delete the instance's Amazon EBS volumes.

The instance ID.

Trait Implementations

impl Default for DeleteInstanceRequest
[src]

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

impl Debug for DeleteInstanceRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteInstanceRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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