aws-cdk-lib.aws_codedeploy.CfnDeploymentConfig.TimeBasedLinearProperty

interface TimeBasedLinearProperty

LanguageType name
.NETAmazon.CDK.AWS.CodeDeploy.CfnDeploymentConfig.TimeBasedLinearProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awscodedeploy#CfnDeploymentConfig_TimeBasedLinearProperty
Javasoftware.amazon.awscdk.services.codedeploy.CfnDeploymentConfig.TimeBasedLinearProperty
Pythonaws_cdk.aws_codedeploy.CfnDeploymentConfig.TimeBasedLinearProperty
TypeScript aws-cdk-lib » aws_codedeploy » CfnDeploymentConfig » TimeBasedLinearProperty

A configuration that shifts traffic from one version of a Lambda function or ECS task set to another in equal increments, with an equal number of minutes between each increment.

The original and target Lambda function versions or ECS task sets are specified in the deployment's AppSpec file.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_codedeploy as codedeploy } from 'aws-cdk-lib';
const timeBasedLinearProperty: codedeploy.CfnDeploymentConfig.TimeBasedLinearProperty = {
  linearInterval: 123,
  linearPercentage: 123,
};

Properties

NameTypeDescription
linearIntervalnumberThe number of minutes between each incremental traffic shift of a TimeBasedLinear deployment.
linearPercentagenumberThe percentage of traffic that is shifted at the start of each increment of a TimeBasedLinear deployment.

linearInterval

Type: number

The number of minutes between each incremental traffic shift of a TimeBasedLinear deployment.


linearPercentage

Type: number

The percentage of traffic that is shifted at the start of each increment of a TimeBasedLinear deployment.