Interface CfnProcessingJobPropsMixin.AppSpecificationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnProcessingJobPropsMixin.AppSpecificationProperty.Jsii$Proxy
- Enclosing class:
CfnProcessingJobPropsMixin
@Stability(Stable)
public static interface CfnProcessingJobPropsMixin.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.mixins.preview.services.sagemaker.mixins.*;
AppSpecificationProperty appSpecificationProperty = AppSpecificationProperty.builder()
.containerArguments(List.of("containerArguments"))
.containerEntrypoint(List.of("containerEntrypoint"))
.imageUri("imageUri")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnProcessingJobPropsMixin.AppSpecificationPropertystatic final classAn implementation forCfnProcessingJobPropsMixin.AppSpecificationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
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:
-
getImageUri
The container image to be run by the processing job.- See Also:
-
builder
-