Class: Aws::SageMaker::Types::AutoMLOutputDataConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::AutoMLOutputDataConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass AutoMLOutputDataConfig data as a hash:
{
kms_key_id: "KmsKeyId",
s3_output_path: "S3Uri", # required
}
The output data configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The Amazon Web Services KMS encryption key ID.
-
#s3_output_path ⇒ String
The Amazon S3 output path.
Instance Attribute Details
#kms_key_id ⇒ String
The Amazon Web Services KMS encryption key ID.
2529 2530 2531 2532 2533 2534 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2529 class AutoMLOutputDataConfig < Struct.new( :kms_key_id, :s3_output_path) SENSITIVE = [] include Aws::Structure end |
#s3_output_path ⇒ String
The Amazon S3 output path. Must be 128 characters or less.
2529 2530 2531 2532 2533 2534 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 2529 class AutoMLOutputDataConfig < Struct.new( :kms_key_id, :s3_output_path) SENSITIVE = [] include Aws::Structure end |