[][src]Struct rusoto_organizations::HandshakeFilter

pub struct HandshakeFilter {
    pub action_type: Option<String>,
    pub parent_handshake_id: Option<String>,
}

Specifies the criteria that are used to select the handshakes for the operation.

Fields

action_type: Option<String>

Specifies the type of handshake action.

If you specify ActionType, you cannot also specify ParentHandshakeId.

parent_handshake_id: Option<String>

Specifies the parent handshake. Only used for handshake types that are a child of another type.

If you specify ParentHandshakeId, you cannot also specify ActionType.

The regex pattern for handshake ID string requires "h-" followed by from 8 to 32 lower-case letters or digits.

Trait Implementations

impl Clone for HandshakeFilter[src]

impl Debug for HandshakeFilter[src]

impl Default for HandshakeFilter[src]

impl PartialEq<HandshakeFilter> for HandshakeFilter[src]

impl Serialize for HandshakeFilter[src]

impl StructuralPartialEq for HandshakeFilter[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.