[][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 Cloud Map to return in the response to a DiscoverInstances request. If you don't specify a value for MaxResults, 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 PartialEq<DiscoverInstancesRequest> for DiscoverInstancesRequest[src]

impl Default for DiscoverInstancesRequest[src]

impl Clone for DiscoverInstancesRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for DiscoverInstancesRequest[src]

impl Serialize for DiscoverInstancesRequest[src]

Auto Trait Implementations

impl Send for DiscoverInstancesRequest

impl Sync for DiscoverInstancesRequest

Blanket Implementations

impl<T> From for T[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self