From 7e68477754cd1e18e910ad4edf2ac6c0f0436d50 Mon Sep 17 00:00:00 2001 From: Pat Myron Date: Tue, 12 Jan 2021 12:26:38 -0800 Subject: [PATCH] correcting update behavior descriptions https://github.com/aws-cloudformation/aws-cloudformation-resource-schema/pull/86 --- doc_source/using-cfn-updating-stacks-update-behaviors.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc_source/using-cfn-updating-stacks-update-behaviors.md b/doc_source/using-cfn-updating-stacks-update-behaviors.md index 051504a1c..c1affa611 100644 --- a/doc_source/using-cfn-updating-stacks-update-behaviors.md +++ b/doc_source/using-cfn-updating-stacks-update-behaviors.md @@ -3,13 +3,13 @@ When you submit an update, AWS CloudFormation updates resources based on differences between what you submit and the stack's current template\. Resources that have not changed run without disruption during the update process\. For updated resources, AWS CloudFormation uses one of the following update behaviors: Update with No Interruption -AWS CloudFormation updates the resource without disrupting operation of that resource and without changing the resource's physical ID\. For example, if you update any property on an [AWS::CloudTrail::Trail](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html) resource, AWS CloudFormation updates the trail without disruption\. +AWS CloudFormation updates the resource without disrupting operation of that resource and without changing the resource's physical ID\. For example, if you update certain properties on an [AWS::CloudTrail::Trail](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudtrail-trail.html) resource, AWS CloudFormation updates the trail without disruption\. Updates with Some Interruption -AWS CloudFormation updates the resource with some interruption and retains the physical ID\. For example, if you update certain properties on an [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) resource, the instance might have some interruption while AWS CloudFormation and Amazon EC2 reconfigure the instance\. +AWS CloudFormation updates the resource with some interruption\. For example, if you update certain properties on an [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) resource, the instance might have some interruption while AWS CloudFormation and Amazon EC2 reconfigure the instance\. Replacement -AWS CloudFormation recreates the resource during an update, which also generates a new physical ID\. AWS CloudFormation creates the replacement resource first, changes references from other dependent resources to point to the replacement resource, and then deletes the old resource\. For example, if you update the `AvailabilityZone` property of an [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) resource type, AWS CloudFormation creates a new resource and replaces the current EC2 Instance resource with the new one\. +AWS CloudFormation recreates the resource during an update, which also generates a new physical ID\. AWS CloudFormation usually creates the replacement resource first, changes references from other dependent resources to point to the replacement resource, and then deletes the old resource\. For example, if you update the `AvailabilityZone` property of an [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) resource type, AWS CloudFormation creates a new resource and replaces the current EC2 Instance resource with the new one\. The method AWS CloudFormation uses depends on which property you update for a given resource type\. The update behavior for each property is described in the [AWS Resource Types Reference](aws-template-resource-type-ref.md)\. @@ -22,4 +22,4 @@ Depending on the update behavior, you can decide when to modify resources to red This example is not exhaustive; it's meant to give you an idea of the things to plan for when a resource is replaced during an update\. **Note** -If the template includes one or more [nested stacks](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html), AWS CloudFormation also initiates an update for every nested stack\. This is necessary to determine whether the nested stacks have been modified\. AWS CloudFormation updates only those resources in the nested stacks that have changes specified in corresponding templates\. \ No newline at end of file +If the template includes one or more [nested stacks](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-stack.html), AWS CloudFormation also initiates an update for every nested stack\. This is necessary to determine whether the nested stacks have been modified\. AWS CloudFormation updates only those resources in the nested stacks that have changes specified in corresponding templates\.