[][src]Struct rusoto_opsworks::DescribeElasticIpsRequest

pub struct DescribeElasticIpsRequest {
    pub instance_id: Option<String>,
    pub ips: Option<Vec<String>>,
    pub stack_id: Option<String>,
}

Fields

instance_id: Option<String>

The instance ID. If you include this parameter, DescribeElasticIps returns a description of the Elastic IP addresses associated with the specified instance.

ips: Option<Vec<String>>

An array of Elastic IP addresses to be described. If you include this parameter, DescribeElasticIps returns a description of the specified Elastic IP addresses. Otherwise, it returns a description of every Elastic IP address.

stack_id: Option<String>

A stack ID. If you include this parameter, DescribeElasticIps returns a description of the Elastic IP addresses that are registered with the specified stack.

Trait Implementations

impl Clone for DescribeElasticIpsRequest[src]

impl Debug for DescribeElasticIpsRequest[src]

impl Default for DescribeElasticIpsRequest[src]

impl PartialEq<DescribeElasticIpsRequest> for DescribeElasticIpsRequest[src]

impl Serialize for DescribeElasticIpsRequest[src]

impl StructuralPartialEq for DescribeElasticIpsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.