Class: Aws::Braket::Types::JobOutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Braket::Types::JobOutputDataConfig
- 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 hybrid 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 hybrid 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 hybrid 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 hybrid job training artifacts at rest using Amazon S3 server-side encryption.
961 962 963 964 965 966 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 961 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
hybrid job training artifacts. For example,
s3://bucket-name/key-name-prefix
.
961 962 963 964 965 966 |
# File 'gems/aws-sdk-braket/lib/aws-sdk-braket/types.rb', line 961 class JobOutputDataConfig < Struct.new( :kms_key_id, :s3_path) SENSITIVE = [] include Aws::Structure end |