Class: Aws::Braket::Types::JobOutputDataConfig

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_idString

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.

Returns:

  • (String)


907
908
909
910
911
912
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 907

class JobOutputDataConfig < Struct.new(
  :kms_key_id,
  :s3_path)
  SENSITIVE = []
  include Aws::Structure
end

#s3_pathString

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

Returns:

  • (String)


907
908
909
910
911
912
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 907

class JobOutputDataConfig < Struct.new(
  :kms_key_id,
  :s3_path)
  SENSITIVE = []
  include Aws::Structure
end