#[non_exhaustive]pub struct DescribeRaidArraysInput {
pub instance_id: Option<String>,
pub stack_id: Option<String>,
pub raid_array_ids: Option<Vec<String>>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.instance_id: Option<String>The instance ID. If you use this parameter, DescribeRaidArrays returns descriptions of the RAID arrays associated with the specified instance.
stack_id: Option<String>The stack ID.
raid_array_ids: Option<Vec<String>>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.
Implementations§
source§impl DescribeRaidArraysInput
impl DescribeRaidArraysInput
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The instance ID. If you use this parameter, DescribeRaidArrays returns descriptions of the RAID arrays associated with the specified instance.
sourcepub fn raid_array_ids(&self) -> &[String]
pub fn raid_array_ids(&self) -> &[String]
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.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .raid_array_ids.is_none().
source§impl DescribeRaidArraysInput
impl DescribeRaidArraysInput
sourcepub fn builder() -> DescribeRaidArraysInputBuilder
pub fn builder() -> DescribeRaidArraysInputBuilder
Creates a new builder-style object to manufacture DescribeRaidArraysInput.
Trait Implementations§
source§impl Clone for DescribeRaidArraysInput
impl Clone for DescribeRaidArraysInput
source§fn clone(&self) -> DescribeRaidArraysInput
fn clone(&self) -> DescribeRaidArraysInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DescribeRaidArraysInput
impl Debug for DescribeRaidArraysInput
source§impl PartialEq for DescribeRaidArraysInput
impl PartialEq for DescribeRaidArraysInput
source§fn eq(&self, other: &DescribeRaidArraysInput) -> bool
fn eq(&self, other: &DescribeRaidArraysInput) -> bool
self and other values to be equal, and is used
by ==.