amazonka-dynamodb-2.0: Amazon DynamoDB 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.DynamoDB.Types.SSEDescription

Description

 
Synopsis

Documentation

data SSEDescription Source #

The description of the server-side encryption status on the specified table.

See: newSSEDescription smart constructor.

Constructors

SSEDescription' 

Fields

  • inaccessibleEncryptionDateTime :: Maybe POSIX

    Indicates the time, in UNIX epoch date format, when DynamoDB detected that the table's KMS key was inaccessible. This attribute will automatically be cleared when DynamoDB detects that the table's KMS key is accessible again. DynamoDB will initiate the table archival process when table's KMS key remains inaccessible for more than seven days from this date.

  • kmsMasterKeyArn :: Maybe Text

    The KMS key ARN used for the KMS encryption.

  • sSEType :: Maybe SSEType

    Server-side encryption type. The only supported value is:

    • KMS - Server-side encryption that uses Key Management Service. The key is stored in your account and is managed by KMS (KMS charges apply).
  • status :: Maybe SSEStatus

    Represents the current state of server-side encryption. The only supported values are:

    • ENABLED - Server-side encryption is enabled.
    • UPDATING - Server-side encryption is being updated.

Instances

Instances details
FromJSON SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

Generic SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

Associated Types

type Rep SSEDescription :: Type -> Type #

Read SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

Show SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

NFData SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

Methods

rnf :: SSEDescription -> () #

Eq SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

Hashable SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

type Rep SSEDescription Source # 
Instance details

Defined in Amazonka.DynamoDB.Types.SSEDescription

type Rep SSEDescription = D1 ('MetaData "SSEDescription" "Amazonka.DynamoDB.Types.SSEDescription" "amazonka-dynamodb-2.0-GNxlseyeFiu302JKQwQrUS" 'False) (C1 ('MetaCons "SSEDescription'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "inaccessibleEncryptionDateTime") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 ('MetaSel ('Just "kmsMasterKeyArn") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "sSEType") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SSEType)) :*: S1 ('MetaSel ('Just "status") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe SSEStatus)))))

newSSEDescription :: SSEDescription Source #

Create a value of SSEDescription 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:inaccessibleEncryptionDateTime:SSEDescription', sSEDescription_inaccessibleEncryptionDateTime - Indicates the time, in UNIX epoch date format, when DynamoDB detected that the table's KMS key was inaccessible. This attribute will automatically be cleared when DynamoDB detects that the table's KMS key is accessible again. DynamoDB will initiate the table archival process when table's KMS key remains inaccessible for more than seven days from this date.

$sel:kmsMasterKeyArn:SSEDescription', sSEDescription_kmsMasterKeyArn - The KMS key ARN used for the KMS encryption.

$sel:sSEType:SSEDescription', sSEDescription_sSEType - Server-side encryption type. The only supported value is:

  • KMS - Server-side encryption that uses Key Management Service. The key is stored in your account and is managed by KMS (KMS charges apply).

$sel:status:SSEDescription', sSEDescription_status - Represents the current state of server-side encryption. The only supported values are:

  • ENABLED - Server-side encryption is enabled.
  • UPDATING - Server-side encryption is being updated.

sSEDescription_inaccessibleEncryptionDateTime :: Lens' SSEDescription (Maybe UTCTime) Source #

Indicates the time, in UNIX epoch date format, when DynamoDB detected that the table's KMS key was inaccessible. This attribute will automatically be cleared when DynamoDB detects that the table's KMS key is accessible again. DynamoDB will initiate the table archival process when table's KMS key remains inaccessible for more than seven days from this date.

sSEDescription_kmsMasterKeyArn :: Lens' SSEDescription (Maybe Text) Source #

The KMS key ARN used for the KMS encryption.

sSEDescription_sSEType :: Lens' SSEDescription (Maybe SSEType) Source #

Server-side encryption type. The only supported value is:

  • KMS - Server-side encryption that uses Key Management Service. The key is stored in your account and is managed by KMS (KMS charges apply).

sSEDescription_status :: Lens' SSEDescription (Maybe SSEStatus) Source #

Represents the current state of server-side encryption. The only supported values are:

  • ENABLED - Server-side encryption is enabled.
  • UPDATING - Server-side encryption is being updated.