interface AppSpecificationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnProcessingJobPropsMixin.AppSpecificationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnProcessingJobPropsMixin_AppSpecificationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnProcessingJobPropsMixin.AppSpecificationProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnProcessingJobPropsMixin.AppSpecificationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » 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 { aws_sagemaker as sagemaker } from '@aws-cdk/cfn-property-mixins';
const appSpecificationProperty: sagemaker.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