amazonka-braket-2.0: Amazon Braket 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.Braket.Types.JobOutputDataConfig

Description

 
Synopsis

Documentation

data JobOutputDataConfig Source #

Specifies the path to the S3 location where you want to store job artifacts and the encryption key used to store them.

See: newJobOutputDataConfig smart constructor.

Constructors

JobOutputDataConfig' 

Fields

  • kmsKeyId :: Maybe Text

    The AWS Key Management Service (AWS KMS) key that Amazon Braket uses to encrypt the job training artifacts at rest using Amazon S3 server-side encryption.

  • s3Path :: Text

    Identifies the S3 path where you want Amazon Braket to store the job training artifacts. For example, s3://bucket-name/key-name-prefix.

Instances

Instances details
FromJSON JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

ToJSON JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

Generic JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

Associated Types

type Rep JobOutputDataConfig :: Type -> Type #

Read JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

Show JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

NFData JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

Methods

rnf :: JobOutputDataConfig -> () #

Eq JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

Hashable JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

type Rep JobOutputDataConfig Source # 
Instance details

Defined in Amazonka.Braket.Types.JobOutputDataConfig

type Rep JobOutputDataConfig = D1 ('MetaData "JobOutputDataConfig" "Amazonka.Braket.Types.JobOutputDataConfig" "amazonka-braket-2.0-K4GTd9RbB3VBh6Qg8rMHaZ" 'False) (C1 ('MetaCons "JobOutputDataConfig'" 'PrefixI 'True) (S1 ('MetaSel ('Just "kmsKeyId") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "s3Path") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newJobOutputDataConfig Source #

Create a value of JobOutputDataConfig 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:kmsKeyId:JobOutputDataConfig', jobOutputDataConfig_kmsKeyId - The AWS Key Management Service (AWS KMS) key that Amazon Braket uses to encrypt the job training artifacts at rest using Amazon S3 server-side encryption.

$sel:s3Path:JobOutputDataConfig', jobOutputDataConfig_s3Path - Identifies the S3 path where you want Amazon Braket to store the job training artifacts. For example, s3://bucket-name/key-name-prefix.

jobOutputDataConfig_kmsKeyId :: Lens' JobOutputDataConfig (Maybe Text) Source #

The AWS Key Management Service (AWS KMS) key that Amazon Braket uses to encrypt the job training artifacts at rest using Amazon S3 server-side encryption.

jobOutputDataConfig_s3Path :: Lens' JobOutputDataConfig Text Source #

Identifies the S3 path where you want Amazon Braket to store the job training artifacts. For example, s3://bucket-name/key-name-prefix.