DeploymentStrategyArgs

data class DeploymentStrategyArgs(val deploymentDurationInMinutes: Output<Int>? = null, val description: Output<String>? = null, val finalBakeTimeInMinutes: Output<Int>? = null, val growthFactor: Output<Double>? = null, val growthType: Output<String>? = null, val name: Output<String>? = null, val replicateTo: Output<String>? = null, val tags: Output<Map<String, String>>? = null) : ConvertibleToJava<DeploymentStrategyArgs>

Provides an AppConfig Deployment Strategy resource.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.appconfig.DeploymentStrategy;
import com.pulumi.aws.appconfig.DeploymentStrategyArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new DeploymentStrategy("example", DeploymentStrategyArgs.builder()
.deploymentDurationInMinutes(3)
.description("Example Deployment Strategy")
.finalBakeTimeInMinutes(4)
.growthFactor(10)
.growthType("LINEAR")
.replicateTo("NONE")
.tags(Map.of("Type", "AppConfig Deployment Strategy"))
.build());
}
}

Import

AppConfig Deployment Strategies can be imported by using their deployment strategy ID, e.g.,

$ pulumi import aws:appconfig/deploymentStrategy:DeploymentStrategy example 11xxxxx

Constructors

Link copied to clipboard
constructor(deploymentDurationInMinutes: Output<Int>? = null, description: Output<String>? = null, finalBakeTimeInMinutes: Output<Int>? = null, growthFactor: Output<Double>? = null, growthType: Output<String>? = null, name: Output<String>? = null, replicateTo: Output<String>? = null, tags: Output<Map<String, String>>? = null)

Properties

Link copied to clipboard
val deploymentDurationInMinutes: Output<Int>? = null

Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.

Link copied to clipboard
val description: Output<String>? = null

Description of the deployment strategy. Can be at most 1024 characters.

Link copied to clipboard
val finalBakeTimeInMinutes: Output<Int>? = null

Amount of time AWS AppConfig monitors for alarms before considering the deployment to be complete and no longer eligible for automatic roll back. Minimum value of 0, maximum value of 1440.

Link copied to clipboard
val growthFactor: Output<Double>? = null

Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.

Link copied to clipboard
val growthType: Output<String>? = null

Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.

Link copied to clipboard
val name: Output<String>? = null

Name for the deployment strategy. Must be between 1 and 64 characters in length.

Link copied to clipboard
val replicateTo: Output<String>? = null

Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.

Link copied to clipboard
val tags: Output<Map<String, String>>? = null

Map of tags to assign to the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

Functions

Link copied to clipboard
open override fun toJava(): DeploymentStrategyArgs