Class: Aws::Braket::Types::JobOutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Braket::Types::JobOutputDataConfig
- Includes:
- Structure
- Defined in:
- 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
-
#kms_key_id ⇒ String
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.
-
#s3_path ⇒ String
Identifies the S3 path where you want Amazon Braket to store the job training artifacts.
Instance Attribute Details
#kms_key_id ⇒ String
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.
907 908 909 910 911 912 |
# File 'lib/aws-sdk-braket/types.rb', line 907 class JobOutputDataConfig < Struct.new( :kms_key_id, :s3_path) SENSITIVE = [] include Aws::Structure end |
#s3_path ⇒ String
Identifies the S3 path where you want Amazon Braket to store the job training artifacts. For example, ‘s3://bucket-name/key-name-prefix`.
907 908 909 910 911 912 |
# File 'lib/aws-sdk-braket/types.rb', line 907 class JobOutputDataConfig < Struct.new( :kms_key_id, :s3_path) SENSITIVE = [] include Aws::Structure end |