[][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 Clone for HttpInstanceSummary[src]

impl Debug for HttpInstanceSummary[src]

impl Default for HttpInstanceSummary[src]

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

impl PartialEq<HttpInstanceSummary> for HttpInstanceSummary[src]

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

impl<T> From<T> 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.