Interface CfnJobTemplate.IJobExecutionsRolloutConfigProperty
Allows you to create a staged rollout of a job.
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IJobExecutionsRolloutConfigProperty
Syntax (vb)
Public Interface IJobExecutionsRolloutConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.IoT;
var jobExecutionsRolloutConfigProperty = new JobExecutionsRolloutConfigProperty {
ExponentialRolloutRate = new ExponentialRolloutRateProperty {
BaseRatePerMinute = 123,
IncrementFactor = 123,
RateIncreaseCriteria = new RateIncreaseCriteriaProperty {
NumberOfNotifiedThings = 123,
NumberOfSucceededThings = 123
}
},
MaximumPerMinute = 123
};
Synopsis
Properties
Exponential |
The rate of increase for a job rollout. |
Maximum |
The maximum number of things that will be notified of a pending job, per minute. |
Properties
ExponentialRolloutRate
The rate of increase for a job rollout.
virtual object ExponentialRolloutRate { get; }
Property Value
System.
Remarks
This parameter allows you to define an exponential rate for a job rollout.
MaximumPerMinute
The maximum number of things that will be notified of a pending job, per minute.
virtual Nullable<double> MaximumPerMinute { get; }
Property Value
System.
Remarks
This parameter allows you to create a staged rollout.