Class CfnInferenceSchedulerPropsMixin

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.Mixin
software.amazon.awscdk.cfnpropertymixins.services.lookoutequipment.CfnInferenceSchedulerPropsMixin
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable, software.constructs.IMixin

@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)", date="2026-04-02T21:55:29.542Z") @Stability(Stable) public class CfnInferenceSchedulerPropsMixin extends Mixin implements software.constructs.IMixin
Creates a scheduled inference.

Scheduling an inference is setting up a continuous real-time inference plan to analyze new measurement data. When setting up the schedule, you provide an Amazon S3 bucket location for the input data, assign it a delimiter between separate entries in the data, set an offset delay if desired, and set the frequency of inferencing. You must also provide an Amazon S3 bucket location for the output data.

Updating some properties below (for example, InferenceSchedulerName and ServerSideKmsKeyId) triggers a resource replacement, which requires a new model. To replace such a property using CloudFormation , but without creating a completely new stack, you must replace ModelName. If you need to replace the property, but want to use the same model, delete the current stack and create a new one with the updated properties.

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.lookoutequipment.*;
 import software.amazon.awscdk.*;
 Object dataInputConfiguration;
 Object dataOutputConfiguration;
 IMergeStrategy mergeStrategy;
 CfnInferenceSchedulerPropsMixin cfnInferenceSchedulerPropsMixin = CfnInferenceSchedulerPropsMixin.Builder.create(CfnInferenceSchedulerMixinProps.builder()
         .dataDelayOffsetInMinutes(123)
         .dataInputConfiguration(dataInputConfiguration)
         .dataOutputConfiguration(dataOutputConfiguration)
         .dataUploadFrequency("dataUploadFrequency")
         .inferenceSchedulerName("inferenceSchedulerName")
         .modelName("modelName")
         .roleArn("roleArn")
         .serverSideKmsKeyId("serverSideKmsKeyId")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build())
 .strategy(mergeStrategy)
 .build();
 

See Also:
  • Field Details

    • CFN_PROPERTY_KEYS

      @Stability(Stable) protected static final List<String> CFN_PROPERTY_KEYS
  • Constructor Details

    • CfnInferenceSchedulerPropsMixin

      protected CfnInferenceSchedulerPropsMixin(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnInferenceSchedulerPropsMixin

      protected CfnInferenceSchedulerPropsMixin(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnInferenceSchedulerPropsMixin

      @Stability(Stable) public CfnInferenceSchedulerPropsMixin(@NotNull CfnInferenceSchedulerMixinProps props, @Nullable CfnPropertyMixinOptions options)
      Create a mixin to apply properties to AWS::LookoutEquipment::InferenceScheduler.

      Parameters:
      props - L1 properties to apply. This parameter is required.
      options - Mixin options.
    • CfnInferenceSchedulerPropsMixin

      @Stability(Stable) public CfnInferenceSchedulerPropsMixin(@NotNull CfnInferenceSchedulerMixinProps props)
      Create a mixin to apply properties to AWS::LookoutEquipment::InferenceScheduler.

      Parameters:
      props - L1 properties to apply. This parameter is required.
  • Method Details

    • applyTo

      @Stability(Stable) public void applyTo(@NotNull software.constructs.IConstruct construct)
      Apply the mixin properties to the construct.

      Specified by:
      applyTo in interface software.constructs.IMixin
      Specified by:
      applyTo in class Mixin
      Parameters:
      construct - This parameter is required.
    • supports

      @Stability(Stable) @NotNull public Boolean supports(@NotNull software.constructs.IConstruct construct)
      Check if this mixin supports the given construct.

      Specified by:
      supports in interface software.constructs.IMixin
      Overrides:
      supports in class Mixin
      Parameters:
      construct - This parameter is required.
    • getProps

      @Stability(Stable) @NotNull protected CfnInferenceSchedulerMixinProps getProps()
    • getStrategy

      @Stability(Stable) @NotNull protected IMergeStrategy getStrategy()