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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProcessingJob.AppSpecificationPropertystatic final classAn implementation forCfnProcessingJob.AppSpecificationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The arguments for a container used to run a processing job.The entrypoint for a container used to run a processing job.The container image to be run by the processing job.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getImageUri
The container image to be run by the processing job.- See Also:
-
getContainerArguments
The arguments for a container used to run a processing job.- See Also:
-
getContainerEntrypoint
The entrypoint for a container used to run a processing job.- See Also:
-
builder
-