Class: Aws::SageMaker::Types::LabelingJobOutputConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::LabelingJobOutputConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
When making an API call, you may pass LabelingJobOutputConfig data as a hash:
{
s3_output_path: "S3Uri", # required
kms_key_id: "KmsKeyId",
sns_topic_arn: "SnsTopicArn",
}
Output configuration information for a labeling job.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The AWS Key Management Service ID of the key used to encrypt the output data, if any.
-
#s3_output_path ⇒ String
The Amazon S3 location to write output data.
-
#sns_topic_arn ⇒ String
An Amazon Simple Notification Service (Amazon SNS) output topic ARN.
Instance Attribute Details
#kms_key_id ⇒ String
The AWS Key Management Service ID of the key used to encrypt the output data, if any.
If you use a KMS key ID or an alias of your master key, the Amazon
SageMaker execution role must include permissions to call
kms:Encrypt
. If you don't provide a KMS key ID, Amazon SageMaker
uses the default KMS key for Amazon S3 for your role's account.
Amazon SageMaker uses server-side encryption with KMS-managed keys
for LabelingJobOutputConfig
. If you use a bucket policy with an
s3:PutObject
permission that only allows objects with server-side
encryption, set the condition key of
s3:x-amz-server-side-encryption
to "aws:kms"
. For more
information, see KMS-Managed Encryption Keys in the Amazon
Simple Storage Service Developer Guide.
The KMS key policy must grant permission to the IAM role that you
specify in your CreateLabelingJob
request. For more information,
see Using Key Policies in AWS KMS in the AWS Key Management
Service Developer Guide.
19401 19402 19403 19404 19405 19406 19407 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19401 class LabelingJobOutputConfig < Struct.new( :s3_output_path, :kms_key_id, :sns_topic_arn) SENSITIVE = [] include Aws::Structure end |
#s3_output_path ⇒ String
The Amazon S3 location to write output data.
19401 19402 19403 19404 19405 19406 19407 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19401 class LabelingJobOutputConfig < Struct.new( :s3_output_path, :kms_key_id, :sns_topic_arn) SENSITIVE = [] include Aws::Structure end |
#sns_topic_arn ⇒ String
An Amazon Simple Notification Service (Amazon SNS) output topic ARN.
When workers complete labeling tasks, Ground Truth will send labeling task output data to the SNS output topic you specify here.
You must provide a value for this parameter if you provide an Amazon
SNS input topic in SnsDataSource
in InputConfig
.
19401 19402 19403 19404 19405 19406 19407 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 19401 class LabelingJobOutputConfig < Struct.new( :s3_output_path, :kms_key_id, :sns_topic_arn) SENSITIVE = [] include Aws::Structure end |