1. Packages
  2. AWS Classic
  3. API Docs
  4. appconfig
  5. DeploymentStrategy

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

aws.appconfig.DeploymentStrategy

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi

    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",
        },
    });
    
    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",
        })
    
    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
    	})
    }
    
    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" },
            },
        });
    
    });
    
    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)
                .growthType("LINEAR")
                .replicateTo("NONE")
                .tags(Map.of("Type", "AppConfig Deployment Strategy"))
                .build());
    
        }
    }
    
    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
    

    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 string
    The unique name of the resource.
    args DeploymentStrategyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args DeploymentStrategyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DeploymentStrategyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DeploymentStrategyArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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" },
        },
    });
    
    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"),
    	},
    })
    
    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());
    
    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",
        })
    
    const deploymentStrategyResource = new aws.appconfig.DeploymentStrategy("deploymentStrategyResource", {
        deploymentDurationInMinutes: 0,
        growthFactor: 0,
        replicateTo: "string",
        description: "string",
        finalBakeTimeInMinutes: 0,
        growthType: "string",
        name: "string",
        tags: {
            string: "string",
        },
    });
    
    type: aws:appconfig:DeploymentStrategy
    properties:
        deploymentDurationInMinutes: 0
        description: string
        finalBakeTimeInMinutes: 0
        growthFactor: 0
        growthType: string
        name: string
        replicateTo: string
        tags:
            string: string
    

    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

    The DeploymentStrategy resource accepts the following input properties:

    DeploymentDurationInMinutes int
    Total amount of time for a deployment to last. 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.
    ReplicateTo 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 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 int
    Total amount of time for a deployment to last. 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.
    ReplicateTo 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 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 Integer
    Total amount of time for a deployment to last. 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.
    replicateTo 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 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 number
    Total amount of time for a deployment to last. 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.
    replicateTo 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 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 int
    Total amount of time for a deployment to last. 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.
    replicate_to 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 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 Number
    Total amount of time for a deployment to last. 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.
    replicateTo 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 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)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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
    The unique name of the resulting resource.
    id
    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 string
    Name for the deployment strategy. Must be between 1 and 64 characters in length.
    ReplicateTo 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 string
    Name for the deployment strategy. Must be between 1 and 64 characters in length.
    ReplicateTo 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 String
    Name for the deployment strategy. Must be between 1 and 64 characters in length.
    replicateTo 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 string
    Name for the deployment strategy. Must be between 1 and 64 characters in length.
    replicateTo 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 str
    Name for the deployment strategy. Must be between 1 and 64 characters in length.
    replicate_to 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 String
    Name for the deployment strategy. Must be between 1 and 64 characters in length.
    replicateTo 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
    

    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.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.1 published on Thursday, Apr 18, 2024 by Pulumi