Struct rusoto_opsworks::DescribeRaidArraysRequest[][src]

pub struct DescribeRaidArraysRequest {
    pub instance_id: Option<String>,
    pub raid_array_ids: Option<Vec<String>>,
    pub stack_id: Option<String>,
}

Fields

The instance ID. If you use this parameter, DescribeRaidArrays returns descriptions of the RAID arrays associated with the specified instance.

An array of RAID array IDs. If you use this parameter, DescribeRaidArrays returns descriptions of the specified arrays. Otherwise, it returns a description of every array.

The stack ID.

Trait Implementations

impl Default for DescribeRaidArraysRequest
[src]

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

impl Debug for DescribeRaidArraysRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeRaidArraysRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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