[][src]Struct rusoto_servicediscovery::HttpInstanceSummary

pub struct HttpInstanceSummary {
    pub attributes: Option<HashMap<String, String>>,
    pub health_status: Option<String>,
    pub instance_id: Option<String>,
    pub namespace_name: Option<String>,
    pub service_name: Option<String>,
}

In a response to a DiscoverInstance request, HttpInstanceSummary contains information about one instance that matches the values that you specified in the request.

Fields

attributes: Option<HashMap<String, String>>

If you included any attributes when you registered the instance, the values of those attributes.

health_status: Option<String>

If you configured health checking in the service, the current health status of the service instance.

instance_id: Option<String>

The ID of an instance that matches the values that you specified in the request.

namespace_name: Option<String>

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

service_name: Option<String>

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

Trait Implementations

impl PartialEq<HttpInstanceSummary> for HttpInstanceSummary[src]

impl Default for HttpInstanceSummary[src]

impl Clone for HttpInstanceSummary[src]

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

Performs copy-assignment from source. Read more

impl Debug for HttpInstanceSummary[src]

impl<'de> Deserialize<'de> for HttpInstanceSummary[src]

Auto Trait Implementations

impl Send for HttpInstanceSummary

impl Sync for HttpInstanceSummary

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self