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.FargateProfile

Description

 
Synopsis

Documentation

data FargateProfile Source #

An object representing an Fargate profile.

See: newFargateProfile smart constructor.

Constructors

FargateProfile' 

Fields

Instances

Instances details
FromJSON FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

Generic FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

Associated Types

type Rep FargateProfile :: Type -> Type #

Read FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

Show FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

NFData FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

Methods

rnf :: FargateProfile -> () #

Eq FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

Hashable FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

type Rep FargateProfile Source # 
Instance details

Defined in Amazonka.EKS.Types.FargateProfile

newFargateProfile :: FargateProfile Source #

Create a value of FargateProfile 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:clusterName:FargateProfile', fargateProfile_clusterName - The name of the Amazon EKS cluster that the Fargate profile belongs to.

$sel:createdAt:FargateProfile', fargateProfile_createdAt - The Unix epoch timestamp in seconds for when the Fargate profile was created.

$sel:fargateProfileArn:FargateProfile', fargateProfile_fargateProfileArn - The full Amazon Resource Name (ARN) of the Fargate profile.

$sel:fargateProfileName:FargateProfile', fargateProfile_fargateProfileName - The name of the Fargate profile.

$sel:podExecutionRoleArn:FargateProfile', fargateProfile_podExecutionRoleArn - The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in the Fargate profile. For more information, see Pod Execution Role in the Amazon EKS User Guide.

$sel:selectors:FargateProfile', fargateProfile_selectors - The selectors to match for pods to use this Fargate profile.

$sel:status:FargateProfile', fargateProfile_status - The current status of the Fargate profile.

$sel:subnets:FargateProfile', fargateProfile_subnets - The IDs of subnets to launch pods into.

$sel:tags:FargateProfile', fargateProfile_tags - The metadata applied to the Fargate profile to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Fargate profile tags do not propagate to any other resources associated with the Fargate profile, such as the pods that are scheduled with it.

fargateProfile_clusterName :: Lens' FargateProfile (Maybe Text) Source #

The name of the Amazon EKS cluster that the Fargate profile belongs to.

fargateProfile_createdAt :: Lens' FargateProfile (Maybe UTCTime) Source #

The Unix epoch timestamp in seconds for when the Fargate profile was created.

fargateProfile_fargateProfileArn :: Lens' FargateProfile (Maybe Text) Source #

The full Amazon Resource Name (ARN) of the Fargate profile.

fargateProfile_podExecutionRoleArn :: Lens' FargateProfile (Maybe Text) Source #

The Amazon Resource Name (ARN) of the pod execution role to use for pods that match the selectors in the Fargate profile. For more information, see Pod Execution Role in the Amazon EKS User Guide.

fargateProfile_selectors :: Lens' FargateProfile (Maybe [FargateProfileSelector]) Source #

The selectors to match for pods to use this Fargate profile.

fargateProfile_status :: Lens' FargateProfile (Maybe FargateProfileStatus) Source #

The current status of the Fargate profile.

fargateProfile_subnets :: Lens' FargateProfile (Maybe [Text]) Source #

The IDs of subnets to launch pods into.

fargateProfile_tags :: Lens' FargateProfile (Maybe (HashMap Text Text)) Source #

The metadata applied to the Fargate profile to assist with categorization and organization. Each tag consists of a key and an optional value. You define both. Fargate profile tags do not propagate to any other resources associated with the Fargate profile, such as the pods that are scheduled with it.