amazonka-batch-2.0: Amazon Batch 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.Batch.Types.EksSecret

Description

 
Synopsis

Documentation

data EksSecret Source #

Specifies the configuration of a Kubernetes secret volume. For more information, see secret in the Kubernetes documentation.

See: newEksSecret smart constructor.

Constructors

EksSecret' 

Fields

  • optional :: Maybe Bool

    Specifies whether the secret or the secret's keys must be defined.

  • secretName :: Text

    The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

Instances

Instances details
FromJSON EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

ToJSON EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

Generic EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

Associated Types

type Rep EksSecret :: Type -> Type #

Read EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

Show EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

NFData EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

Methods

rnf :: EksSecret -> () #

Eq EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

Hashable EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

type Rep EksSecret Source # 
Instance details

Defined in Amazonka.Batch.Types.EksSecret

type Rep EksSecret = D1 ('MetaData "EksSecret" "Amazonka.Batch.Types.EksSecret" "amazonka-batch-2.0-Ey2VZ5obnq65VwmlrJ2r2K" 'False) (C1 ('MetaCons "EksSecret'" 'PrefixI 'True) (S1 ('MetaSel ('Just "optional") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "secretName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newEksSecret Source #

Create a value of EksSecret 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:optional:EksSecret', eksSecret_optional - Specifies whether the secret or the secret's keys must be defined.

$sel:secretName:EksSecret', eksSecret_secretName - The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.

eksSecret_optional :: Lens' EksSecret (Maybe Bool) Source #

Specifies whether the secret or the secret's keys must be defined.

eksSecret_secretName :: Lens' EksSecret Text Source #

The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.