amazonka-eks-2.0: Amazon Elastic Kubernetes Service SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.EKS.Types.FargateProfileSelector

Description

 
Synopsis

Documentation

data FargateProfileSelector Source #

An object representing an Fargate profile selector.

See: newFargateProfileSelector smart constructor.

Constructors

FargateProfileSelector' 

Fields

  • labels :: Maybe (HashMap Text Text)

    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 :: Maybe Text

    The Kubernetes namespace that the selector should match.

Instances

Instances details
FromJSON FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

ToJSON FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

Generic FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

Associated Types

type Rep FargateProfileSelector :: Type -> Type #

Read FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

Show FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

NFData FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

Methods

rnf :: FargateProfileSelector -> () #

Eq FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

Hashable FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

type Rep FargateProfileSelector Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfileSelector

type Rep FargateProfileSelector = D1 ('MetaData "FargateProfileSelector" "Amazonka.EKS.Types.FargateProfileSelector" "amazonka-eks-2.0-7cAibD4zEbE2zPO6gnUh5m" 'False) (C1 ('MetaCons "FargateProfileSelector'" 'PrefixI 'True) (S1 ('MetaSel ('Just "labels") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text Text))) :*: S1 ('MetaSel ('Just "namespace") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))))

newFargateProfileSelector :: FargateProfileSelector Source #

Create a value of FargateProfileSelector with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:labels:FargateProfileSelector', fargateProfileSelector_labels - 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.

$sel:namespace:FargateProfileSelector', fargateProfileSelector_namespace - The Kubernetes namespace that the selector should match.

fargateProfileSelector_labels :: Lens' FargateProfileSelector (Maybe (HashMap Text Text)) Source #

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.

fargateProfileSelector_namespace :: Lens' FargateProfileSelector (Maybe Text) Source #

The Kubernetes namespace that the selector should match.