Interface CfnJobMixinProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnJobMixinProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.139.0 (build 26a6b54)", date="2026-09-02T11:03:28.453Z") @Stability(Stable) public interface CfnJobMixinProps extends software.amazon.jsii.JsiiSerializable
Properties for CfnJobPropsMixin.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.iot.*;
 CfnJobMixinProps cfnJobMixinProps = CfnJobMixinProps.builder()
         .abortConfig(AbortConfigProperty.builder()
                 .criteriaList(List.of(AbortCriteriaProperty.builder()
                         .action("action")
                         .failureType("failureType")
                         .minNumberOfExecutedThings(123)
                         .thresholdPercentage(123)
                         .build()))
                 .build())
         .description("description")
         .destinationPackageVersions(List.of("destinationPackageVersions"))
         .document("document")
         .documentParameters(Map.of(
                 "documentParametersKey", "documentParameters"))
         .documentSource("documentSource")
         .jobExecutionsRetryConfig(JobExecutionsRetryConfigProperty.builder()
                 .criteriaList(List.of(RetryCriteriaProperty.builder()
                         .failureType("failureType")
                         .numberOfRetries(123)
                         .build()))
                 .build())
         .jobExecutionsRolloutConfig(JobExecutionsRolloutConfigProperty.builder()
                 .exponentialRate(ExponentialRolloutRateProperty.builder()
                         .baseRatePerMinute(123)
                         .incrementFactor(123)
                         .rateIncreaseCriteria(RateIncreaseCriteriaProperty.builder()
                                 .numberOfNotifiedThings(123)
                                 .numberOfSucceededThings(123)
                                 .build())
                         .build())
                 .maximumPerMinute(123)
                 .build())
         .jobId("jobId")
         .jobTemplateArn("jobTemplateArn")
         .presignedUrlConfig(PresignedUrlConfigProperty.builder()
                 .expiresInSec(123)
                 .roleArn("roleArn")
                 .build())
         .schedulingConfig(SchedulingConfigProperty.builder()
                 .endBehavior("endBehavior")
                 .endTime("endTime")
                 .maintenanceWindows(List.of(MaintenanceWindowProperty.builder()
                         .durationInMinutes(123)
                         .startTime("startTime")
                         .build()))
                 .startTime("startTime")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .targets(List.of("targets"))
         .targetSelection("targetSelection")
         .timeoutConfig(TimeoutConfigProperty.builder()
                 .inProgressTimeoutInMinutes(123)
                 .build())
         .build();
 

See Also: