[][src]Struct rusoto_servicediscovery::DiscoverInstancesRequest

pub struct DiscoverInstancesRequest {
    pub health_status: Option<String>,
    pub max_results: Option<i64>,
    pub namespace_name: String,
    pub query_parameters: Option<HashMap<String, String>>,
    pub service_name: String,
}

Fields

health_status: Option<String>

The health status of the instances that you want to discover.

max_results: Option<i64>

The maximum number of instances that you want AWS Cloud Map to return in the response to a DiscoverInstances request. If you don't specify a value for MaxResults, AWS Cloud Map returns up to 100 instances.

namespace_name: String

The name of the namespace that you specified when you registered the instance.

query_parameters: Option<HashMap<String, String>>

A string map that contains attributes with values that you can use to filter instances by any custom attribute that you specified when you registered the instance. Only instances that match all the specified key/value pairs will be returned.

service_name: String

The name of the service that you specified when you registered the instance.

Trait Implementations

impl Clone for DiscoverInstancesRequest[src]

impl Debug for DiscoverInstancesRequest[src]

impl Default for DiscoverInstancesRequest[src]

impl PartialEq<DiscoverInstancesRequest> for DiscoverInstancesRequest[src]

impl Serialize for DiscoverInstancesRequest[src]

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