Interface CfnProcessingJob.AppSpecificationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnProcessingJob.AppSpecificationProperty.Jsii$Proxy
Enclosing class:
CfnProcessingJob

@Stability(Stable) public static interface CfnProcessingJob.AppSpecificationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
 AppSpecificationProperty appSpecificationProperty = AppSpecificationProperty.builder()
         .imageUri("imageUri")
         // the properties below are optional
         .containerArguments(List.of("containerArguments"))
         .containerEntrypoint(List.of("containerEntrypoint"))
         .build();
 

See Also: