1. Packages
  2. AWS
  3. API Docs
  4. appconfig
  5. DeploymentStrategy
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.appconfig.DeploymentStrategy

Explore with Pulumi AI

Provides an AppConfig Deployment Strategy resource.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = new aws.appconfig.DeploymentStrategy("example", {
    name: "example-deployment-strategy-tf",
    description: "Example Deployment Strategy",
    deploymentDurationInMinutes: 3,
    finalBakeTimeInMinutes: 4,
    growthFactor: 10,
    growthType: "LINEAR",
    replicateTo: "NONE",
    tags: {
        Type: "AppConfig Deployment Strategy",
    },
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.appconfig.DeploymentStrategy("example",
    name="example-deployment-strategy-tf",
    description="Example Deployment Strategy",
    deployment_duration_in_minutes=3,
    final_bake_time_in_minutes=4,
    growth_factor=10,
    growth_type="LINEAR",
    replicate_to="NONE",
    tags={
        "Type": "AppConfig Deployment Strategy",
    })
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/appconfig"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := appconfig.NewDeploymentStrategy(ctx, "example", &appconfig.DeploymentStrategyArgs{
			Name:                        pulumi.String("example-deployment-strategy-tf"),
			Description:                 pulumi.String("Example Deployment Strategy"),
			DeploymentDurationInMinutes: pulumi.Int(3),
			FinalBakeTimeInMinutes:      pulumi.Int(4),
			GrowthFactor:                pulumi.Float64(10),
			GrowthType:                  pulumi.String("LINEAR"),
			ReplicateTo:                 pulumi.String("NONE"),
			Tags: pulumi.StringMap{
				"Type": pulumi.String("AppConfig Deployment Strategy"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = new Aws.AppConfig.DeploymentStrategy("example", new()
    {
        Name = "example-deployment-strategy-tf",
        Description = "Example Deployment Strategy",
        DeploymentDurationInMinutes = 3,
        FinalBakeTimeInMinutes = 4,
        GrowthFactor = 10,
        GrowthType = "LINEAR",
        ReplicateTo = "NONE",
        Tags = 
        {
            { "Type", "AppConfig Deployment Strategy" },
        },
    });

});
Copy
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()
            .name("example-deployment-strategy-tf")
            .description("Example Deployment Strategy")
            .deploymentDurationInMinutes(3)
            .finalBakeTimeInMinutes(4)
            .growthFactor(10.0)
            .growthType("LINEAR")
            .replicateTo("NONE")
            .tags(Map.of("Type", "AppConfig Deployment Strategy"))
            .build());

    }
}
Copy
resources:
  example:
    type: aws:appconfig:DeploymentStrategy
    properties:
      name: example-deployment-strategy-tf
      description: Example Deployment Strategy
      deploymentDurationInMinutes: 3
      finalBakeTimeInMinutes: 4
      growthFactor: 10
      growthType: LINEAR
      replicateTo: NONE
      tags:
        Type: AppConfig Deployment Strategy
Copy

Create DeploymentStrategy Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DeploymentStrategy(name: string, args: DeploymentStrategyArgs, opts?: CustomResourceOptions);
@overload
def DeploymentStrategy(resource_name: str,
                       args: DeploymentStrategyArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def DeploymentStrategy(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       deployment_duration_in_minutes: Optional[int] = None,
                       growth_factor: Optional[float] = None,
                       replicate_to: Optional[str] = None,
                       description: Optional[str] = None,
                       final_bake_time_in_minutes: Optional[int] = None,
                       growth_type: Optional[str] = None,
                       name: Optional[str] = None,
                       tags: Optional[Mapping[str, str]] = None)
func NewDeploymentStrategy(ctx *Context, name string, args DeploymentStrategyArgs, opts ...ResourceOption) (*DeploymentStrategy, error)
public DeploymentStrategy(string name, DeploymentStrategyArgs args, CustomResourceOptions? opts = null)
public DeploymentStrategy(String name, DeploymentStrategyArgs args)
public DeploymentStrategy(String name, DeploymentStrategyArgs args, CustomResourceOptions options)
type: aws:appconfig:DeploymentStrategy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DeploymentStrategyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DeploymentStrategyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DeploymentStrategyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DeploymentStrategyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DeploymentStrategyArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var deploymentStrategyResource = new Aws.AppConfig.DeploymentStrategy("deploymentStrategyResource", new()
{
    DeploymentDurationInMinutes = 0,
    GrowthFactor = 0,
    ReplicateTo = "string",
    Description = "string",
    FinalBakeTimeInMinutes = 0,
    GrowthType = "string",
    Name = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := appconfig.NewDeploymentStrategy(ctx, "deploymentStrategyResource", &appconfig.DeploymentStrategyArgs{
	DeploymentDurationInMinutes: pulumi.Int(0),
	GrowthFactor:                pulumi.Float64(0),
	ReplicateTo:                 pulumi.String("string"),
	Description:                 pulumi.String("string"),
	FinalBakeTimeInMinutes:      pulumi.Int(0),
	GrowthType:                  pulumi.String("string"),
	Name:                        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var deploymentStrategyResource = new DeploymentStrategy("deploymentStrategyResource", DeploymentStrategyArgs.builder()
    .deploymentDurationInMinutes(0)
    .growthFactor(0)
    .replicateTo("string")
    .description("string")
    .finalBakeTimeInMinutes(0)
    .growthType("string")
    .name("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
deployment_strategy_resource = aws.appconfig.DeploymentStrategy("deploymentStrategyResource",
    deployment_duration_in_minutes=0,
    growth_factor=0,
    replicate_to="string",
    description="string",
    final_bake_time_in_minutes=0,
    growth_type="string",
    name="string",
    tags={
        "string": "string",
    })
Copy
const deploymentStrategyResource = new aws.appconfig.DeploymentStrategy("deploymentStrategyResource", {
    deploymentDurationInMinutes: 0,
    growthFactor: 0,
    replicateTo: "string",
    description: "string",
    finalBakeTimeInMinutes: 0,
    growthType: "string",
    name: "string",
    tags: {
        string: "string",
    },
});
Copy
type: aws:appconfig:DeploymentStrategy
properties:
    deploymentDurationInMinutes: 0
    description: string
    finalBakeTimeInMinutes: 0
    growthFactor: 0
    growthType: string
    name: string
    replicateTo: string
    tags:
        string: string
Copy

DeploymentStrategy Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DeploymentStrategy resource accepts the following input properties:

DeploymentDurationInMinutes This property is required. int
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
GrowthFactor This property is required. double
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
ReplicateTo
This property is required.
Changes to this property will trigger replacement.
string
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
Description string
Description of the deployment strategy. Can be at most 1024 characters.
FinalBakeTimeInMinutes int
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.
GrowthType string
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
Name Changes to this property will trigger replacement. string
Name for the deployment strategy. Must be between 1 and 64 characters in length.
Tags Dictionary<string, string>
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.
DeploymentDurationInMinutes This property is required. int
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
GrowthFactor This property is required. float64
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
ReplicateTo
This property is required.
Changes to this property will trigger replacement.
string
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
Description string
Description of the deployment strategy. Can be at most 1024 characters.
FinalBakeTimeInMinutes int
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.
GrowthType string
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
Name Changes to this property will trigger replacement. string
Name for the deployment strategy. Must be between 1 and 64 characters in length.
Tags map[string]string
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.
deploymentDurationInMinutes This property is required. Integer
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
growthFactor This property is required. Double
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
replicateTo
This property is required.
Changes to this property will trigger replacement.
String
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
description String
Description of the deployment strategy. Can be at most 1024 characters.
finalBakeTimeInMinutes Integer
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.
growthType String
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. String
Name for the deployment strategy. Must be between 1 and 64 characters in length.
tags Map<String,String>
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.
deploymentDurationInMinutes This property is required. number
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
growthFactor This property is required. number
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
replicateTo
This property is required.
Changes to this property will trigger replacement.
string
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
description string
Description of the deployment strategy. Can be at most 1024 characters.
finalBakeTimeInMinutes number
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.
growthType string
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. string
Name for the deployment strategy. Must be between 1 and 64 characters in length.
tags {[key: string]: string}
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.
deployment_duration_in_minutes This property is required. int
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
growth_factor This property is required. float
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
replicate_to
This property is required.
Changes to this property will trigger replacement.
str
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
description str
Description of the deployment strategy. Can be at most 1024 characters.
final_bake_time_in_minutes int
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.
growth_type str
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. str
Name for the deployment strategy. Must be between 1 and 64 characters in length.
tags Mapping[str, str]
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.
deploymentDurationInMinutes This property is required. Number
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
growthFactor This property is required. Number
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
replicateTo
This property is required.
Changes to this property will trigger replacement.
String
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
description String
Description of the deployment strategy. Can be at most 1024 characters.
finalBakeTimeInMinutes Number
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.
growthType String
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. String
Name for the deployment strategy. Must be between 1 and 64 characters in length.
tags Map<String>
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.

Outputs

All input properties are implicitly available as output properties. Additionally, the DeploymentStrategy resource produces the following output properties:

Arn string
ARN of the AppConfig Deployment Strategy.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
ARN of the AppConfig Deployment Strategy.
Id string
The provider-assigned unique ID for this managed resource.
TagsAll map[string]string
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the AppConfig Deployment Strategy.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
ARN of the AppConfig Deployment Strategy.
id string
The provider-assigned unique ID for this managed resource.
tagsAll {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
ARN of the AppConfig Deployment Strategy.
id str
The provider-assigned unique ID for this managed resource.
tags_all Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the AppConfig Deployment Strategy.
id String
The provider-assigned unique ID for this managed resource.
tagsAll Map<String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Look up Existing DeploymentStrategy Resource

Get an existing DeploymentStrategy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DeploymentStrategyState, opts?: CustomResourceOptions): DeploymentStrategy
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        arn: Optional[str] = None,
        deployment_duration_in_minutes: Optional[int] = None,
        description: Optional[str] = None,
        final_bake_time_in_minutes: Optional[int] = None,
        growth_factor: Optional[float] = None,
        growth_type: Optional[str] = None,
        name: Optional[str] = None,
        replicate_to: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        tags_all: Optional[Mapping[str, str]] = None) -> DeploymentStrategy
func GetDeploymentStrategy(ctx *Context, name string, id IDInput, state *DeploymentStrategyState, opts ...ResourceOption) (*DeploymentStrategy, error)
public static DeploymentStrategy Get(string name, Input<string> id, DeploymentStrategyState? state, CustomResourceOptions? opts = null)
public static DeploymentStrategy get(String name, Output<String> id, DeploymentStrategyState state, CustomResourceOptions options)
resources:  _:    type: aws:appconfig:DeploymentStrategy    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Arn string
ARN of the AppConfig Deployment Strategy.
DeploymentDurationInMinutes int
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
Description string
Description of the deployment strategy. Can be at most 1024 characters.
FinalBakeTimeInMinutes int
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.
GrowthFactor double
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
GrowthType string
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
Name Changes to this property will trigger replacement. string
Name for the deployment strategy. Must be between 1 and 64 characters in length.
ReplicateTo Changes to this property will trigger replacement. string
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
Tags Dictionary<string, string>
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.
TagsAll Dictionary<string, string>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Arn string
ARN of the AppConfig Deployment Strategy.
DeploymentDurationInMinutes int
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
Description string
Description of the deployment strategy. Can be at most 1024 characters.
FinalBakeTimeInMinutes int
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.
GrowthFactor float64
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
GrowthType string
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
Name Changes to this property will trigger replacement. string
Name for the deployment strategy. Must be between 1 and 64 characters in length.
ReplicateTo Changes to this property will trigger replacement. string
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
Tags map[string]string
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.
TagsAll map[string]string
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the AppConfig Deployment Strategy.
deploymentDurationInMinutes Integer
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
description String
Description of the deployment strategy. Can be at most 1024 characters.
finalBakeTimeInMinutes Integer
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.
growthFactor Double
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
growthType String
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. String
Name for the deployment strategy. Must be between 1 and 64 characters in length.
replicateTo Changes to this property will trigger replacement. String
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
tags Map<String,String>
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.
tagsAll Map<String,String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn string
ARN of the AppConfig Deployment Strategy.
deploymentDurationInMinutes number
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
description string
Description of the deployment strategy. Can be at most 1024 characters.
finalBakeTimeInMinutes number
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.
growthFactor number
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
growthType string
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. string
Name for the deployment strategy. Must be between 1 and 64 characters in length.
replicateTo Changes to this property will trigger replacement. string
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
tags {[key: string]: string}
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.
tagsAll {[key: string]: string}
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn str
ARN of the AppConfig Deployment Strategy.
deployment_duration_in_minutes int
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
description str
Description of the deployment strategy. Can be at most 1024 characters.
final_bake_time_in_minutes int
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.
growth_factor float
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
growth_type str
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. str
Name for the deployment strategy. Must be between 1 and 64 characters in length.
replicate_to Changes to this property will trigger replacement. str
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
tags Mapping[str, str]
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.
tags_all Mapping[str, str]
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

arn String
ARN of the AppConfig Deployment Strategy.
deploymentDurationInMinutes Number
Total amount of time for a deployment to last. Minimum value of 0, maximum value of 1440.
description String
Description of the deployment strategy. Can be at most 1024 characters.
finalBakeTimeInMinutes Number
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.
growthFactor Number
Percentage of targets to receive a deployed configuration during each interval. Minimum value of 1.0, maximum value of 100.0.
growthType String
Algorithm used to define how percentage grows over time. Valid value: LINEAR and EXPONENTIAL. Defaults to LINEAR.
name Changes to this property will trigger replacement. String
Name for the deployment strategy. Must be between 1 and 64 characters in length.
replicateTo Changes to this property will trigger replacement. String
Where to save the deployment strategy. Valid values: NONE and SSM_DOCUMENT.
tags Map<String>
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.
tagsAll Map<String>
Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

Deprecated: Please use tags instead.

Import

Using pulumi import, import AppConfig Deployment Strategies using their deployment strategy ID. For example:

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

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.