libZSservicesZSamazonka-eksZSamazonka-eks
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.EKS.Types.EncryptionConfig

Description

 
Synopsis

Documentation

data EncryptionConfig Source #

The encryption configuration for the cluster.

See: newEncryptionConfig smart constructor.

Constructors

EncryptionConfig' 

Fields

  • resources :: Maybe [Text]

    Specifies the resources to be encrypted. The only supported value is "secrets".

  • provider :: Maybe Provider

    Key Management Service (KMS) key. Either the ARN or the alias can be used.

Instances

Instances details
Eq EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

Read EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

Show EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

Generic EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

Associated Types

type Rep EncryptionConfig :: Type -> Type #

NFData EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

Methods

rnf :: EncryptionConfig -> () #

Hashable EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

ToJSON EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

FromJSON EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

type Rep EncryptionConfig Source # 
Instance details

Defined in Amazonka.EKS.Types.EncryptionConfig

type Rep EncryptionConfig = D1 ('MetaData "EncryptionConfig" "Amazonka.EKS.Types.EncryptionConfig" "libZSservicesZSamazonka-eksZSamazonka-eks" 'False) (C1 ('MetaCons "EncryptionConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resources") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 ('MetaSel ('Just "provider") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Provider))))

newEncryptionConfig :: EncryptionConfig Source #

Create a value of EncryptionConfig 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:resources:EncryptionConfig', encryptionConfig_resources - Specifies the resources to be encrypted. The only supported value is "secrets".

$sel:provider:EncryptionConfig', encryptionConfig_provider - Key Management Service (KMS) key. Either the ARN or the alias can be used.

encryptionConfig_resources :: Lens' EncryptionConfig (Maybe [Text]) Source #

Specifies the resources to be encrypted. The only supported value is "secrets".

encryptionConfig_provider :: Lens' EncryptionConfig (Maybe Provider) Source #

Key Management Service (KMS) key. Either the ARN or the alias can be used.