interface AppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnProcessingJobPropsMixin.AppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnProcessingJobPropsMixin_AppSpecificationProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnProcessingJobPropsMixin.AppSpecificationProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnProcessingJobPropsMixin.AppSpecificationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnProcessingJobPropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const appSpecificationProperty: sagemaker_mixins.CfnProcessingJobPropsMixin.AppSpecificationProperty = {
containerArguments: ['containerArguments'],
containerEntrypoint: ['containerEntrypoint'],
imageUri: 'imageUri',
};
Properties
| Name | Type | Description |
|---|---|---|
| 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. |
| image | 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.
imageUri?
Type:
string
(optional)
The container image to be run by the processing job.

.NET
Go
Java
Python
TypeScript