[][src]Struct rusoto_eks::FargateProfileSelector

pub struct FargateProfileSelector {
    pub labels: Option<HashMap<String, String>>,
    pub namespace: Option<String>,
}

An object representing an AWS Fargate profile selector.

Fields

labels: Option<HashMap<String, String>>

The Kubernetes labels that the selector should match. A pod must contain all of the labels that are specified in the selector for it to be considered a match.

namespace: Option<String>

The Kubernetes namespace that the selector should match.

Trait Implementations

impl Clone for FargateProfileSelector[src]

impl Debug for FargateProfileSelector[src]

impl Default for FargateProfileSelector[src]

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

impl PartialEq<FargateProfileSelector> for FargateProfileSelector[src]

impl Serialize for FargateProfileSelector[src]

impl StructuralPartialEq for FargateProfileSelector[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: for<'de> Deserialize<'de>, 
[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.