[][src]Struct rusoto_servicediscovery::ServiceFilter

pub struct ServiceFilter {
    pub condition: Option<String>,
    pub name: String,
    pub values: Vec<String>,
}

A complex type that lets you specify the namespaces that you want to list services for.

Fields

condition: Option<String>

The operator that you want to use to determine whether a service is returned by ListServices. Valid values for Condition include the following:

  • EQ: When you specify EQ, specify one namespace ID for Values. EQ is the default condition and can be omitted.

  • IN: When you specify IN, specify a list of the IDs for the namespaces that you want ListServices to return a list of services for.

  • BETWEEN: Not applicable.

name: String

Specify NAMESPACE_ID.

values: Vec<String>

The values that are applicable to the value that you specify for Condition to filter the list of services.

Trait Implementations

impl Clone for ServiceFilter[src]

impl Debug for ServiceFilter[src]

impl Default for ServiceFilter[src]

impl PartialEq<ServiceFilter> for ServiceFilter[src]

impl Serialize for ServiceFilter[src]

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