interface TransformOutputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTransformJobPropsMixin.TransformOutputProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTransformJobPropsMixin_TransformOutputProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTransformJobPropsMixin.TransformOutputProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTransformJobPropsMixin.TransformOutputProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTransformJobPropsMixin » TransformOutputProperty |
Describes the results of the transform job.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const transformOutputProperty: sagemaker.CfnTransformJobPropsMixin.TransformOutputProperty = {
accept: 'accept',
assembleWith: 'assembleWith',
kmsKeyId: 'kmsKeyId',
s3OutputPath: 's3OutputPath',
};
Properties
| Name | Type | Description |
|---|---|---|
| accept? | string | The MIME type used to specify the output data. |
| assemble | string | Defines how to assemble the results of the transform job as a single S3 object. |
| kms | string | The AWS KMS key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption. |
| s3 | string | The Amazon S3 path where you want Amazon SageMaker to store the results of the transform job. |
accept?
Type:
string
(optional)
The MIME type used to specify the output data.
assembleWith?
Type:
string
(optional)
Defines how to assemble the results of the transform job as a single S3 object.
kmsKeyId?
Type:
string
(optional)
The AWS KMS key that Amazon SageMaker uses to encrypt the model artifacts at rest using Amazon S3 server-side encryption.
s3OutputPath?
Type:
string
(optional)
The Amazon S3 path where you want Amazon SageMaker to store the results of the transform job.

.NET
Go
Java
Python
TypeScript