interface AppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnProcessingJob.AppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnProcessingJob_AppSpecificationProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnProcessingJob.AppSpecificationProperty |
Python | aws_cdk.aws_sagemaker.CfnProcessingJob.AppSpecificationProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnProcessingJob » AppSpecificationProperty |
Configuration to run a processing job in a specified container image.
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-lib';
const appSpecificationProperty: sagemaker.CfnProcessingJob.AppSpecificationProperty = {
imageUri: 'imageUri',
// the properties below are optional
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
};
Properties
| Name | Type | Description |
|---|---|---|
| image | string | The container image to be run by the processing job. |
| container | string[] | The arguments for a container used to run a processing job. |
| container | string[] | The entrypoint for a container used to run a processing job. |
imageUri
Type:
string
The container image to be run by the processing job.
containerArguments?
Type:
string[]
(optional)
The arguments for a container used to run a processing job.
containerEntrypoint?
Type:
string[]
(optional)
The entrypoint for a container used to run a processing job.

.NET
Go
Java
Python
TypeScript