Class: Aws::SageMaker::Types::EdgeOutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::EdgeOutputConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass EdgeOutputConfig data as a hash:
{
s3_output_location: "S3Uri", # required
kms_key_id: "KmsKeyId",
}
The output configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume after compilation job.
-
#s3_output_location ⇒ String
The Amazon Simple Storage (S3) bucker URI.
Instance Attribute Details
#kms_key_id ⇒ String
The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume after compilation job. If you don't provide a KMS key ID, Amazon SageMaker uses the default KMS key for Amazon S3 for your role's account.
15148 15149 15150 15151 15152 15153 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 15148 class EdgeOutputConfig < Struct.new( :s3_output_location, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#s3_output_location ⇒ String
The Amazon Simple Storage (S3) bucker URI.
15148 15149 15150 15151 15152 15153 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 15148 class EdgeOutputConfig < Struct.new( :s3_output_location, :kms_key_id) SENSITIVE = [] include Aws::Structure end |