|
1447 | 1447 | } |
1448 | 1448 | } |
1449 | 1449 | }, |
| 1450 | + "AfterContext":{"type":"string"}, |
| 1451 | + "AfterValue":{"type":"string"}, |
1450 | 1452 | "AllowedValue":{"type":"string"}, |
1451 | 1453 | "AllowedValues":{ |
1452 | 1454 | "type":"list", |
|
1465 | 1467 | "exception":true |
1466 | 1468 | }, |
1467 | 1469 | "Arn":{"type":"string"}, |
| 1470 | + "AttributeChangeType":{ |
| 1471 | + "type":"string", |
| 1472 | + "enum":[ |
| 1473 | + "Add", |
| 1474 | + "Remove", |
| 1475 | + "Modify" |
| 1476 | + ] |
| 1477 | + }, |
1468 | 1478 | "AutoDeployment":{ |
1469 | 1479 | "type":"structure", |
1470 | 1480 | "members":{ |
|
1530 | 1540 | } |
1531 | 1541 | } |
1532 | 1542 | }, |
| 1543 | + "BeforeContext":{"type":"string"}, |
| 1544 | + "BeforeValue":{"type":"string"}, |
1533 | 1545 | "BoxedInteger":{ |
1534 | 1546 | "type":"integer", |
1535 | 1547 | "box":true |
|
1606 | 1618 | "members":{ |
1607 | 1619 | "Type":{ |
1608 | 1620 | "shape":"ChangeType", |
1609 | | - "documentation":"<p>The type of entity that CloudFormation changes. Currently, the only entity type is <code>Resource</code>.</p>" |
| 1621 | + "documentation":"<p>The type of entity that CloudFormation changes.</p> <ul> <li> <p> <code>Resource</code> This change is for a resource.</p> </li> </ul>" |
1610 | 1622 | }, |
1611 | 1623 | "HookInvocationCount":{ |
1612 | 1624 | "shape":"HookInvocationCount", |
|
2572 | 2584 | "NextToken":{ |
2573 | 2585 | "shape":"NextToken", |
2574 | 2586 | "documentation":"<p>A string (provided by the <a>DescribeChangeSet</a> response output) that identifies the next page of information that you want to retrieve.</p>" |
| 2587 | + }, |
| 2588 | + "IncludePropertyValues":{ |
| 2589 | + "shape":"IncludePropertyValues", |
| 2590 | + "documentation":"<p>If <code>true</code>, the returned changes include detailed changes in the property values.</p>" |
2575 | 2591 | } |
2576 | 2592 | }, |
2577 | 2593 | "documentation":"<p>The input for the <a>DescribeChangeSet</a> action.</p>" |
|
3890 | 3906 | "min":0 |
3891 | 3907 | }, |
3892 | 3908 | "IncludeNestedStacks":{"type":"boolean"}, |
| 3909 | + "IncludePropertyValues":{"type":"boolean"}, |
3893 | 3910 | "InsufficientCapabilitiesException":{ |
3894 | 3911 | "type":"structure", |
3895 | 3912 | "members":{ |
|
5371 | 5388 | "ModuleInfo":{ |
5372 | 5389 | "shape":"ModuleInfo", |
5373 | 5390 | "documentation":"<p>Contains information about the module from which the resource was created, if the resource was created from a module included in the stack template.</p>" |
| 5391 | + }, |
| 5392 | + "BeforeContext":{ |
| 5393 | + "shape":"BeforeContext", |
| 5394 | + "documentation":"<p>An encoded JSON string containing the context of the resource before the change is executed.</p>" |
| 5395 | + }, |
| 5396 | + "AfterContext":{ |
| 5397 | + "shape":"AfterContext", |
| 5398 | + "documentation":"<p>An encoded JSON string containing the context of the resource after the change is executed.</p>" |
5374 | 5399 | } |
5375 | 5400 | }, |
5376 | 5401 | "documentation":"<p>The <code>ResourceChange</code> structure describes the resource and the action that CloudFormation will perform on it if you execute this change set.</p>" |
|
5515 | 5540 | "min":1 |
5516 | 5541 | }, |
5517 | 5542 | "ResourceProperties":{"type":"string"}, |
| 5543 | + "ResourcePropertyPath":{"type":"string"}, |
5518 | 5544 | "ResourceScanId":{"type":"string"}, |
5519 | 5545 | "ResourceScanInProgressException":{ |
5520 | 5546 | "type":"structure", |
|
5654 | 5680 | "RequiresRecreation":{ |
5655 | 5681 | "shape":"RequiresRecreation", |
5656 | 5682 | "documentation":"<p>If the <code>Attribute</code> value is <code>Properties</code>, indicates whether a change to this property causes the resource to be recreated. The value can be <code>Never</code>, <code>Always</code>, or <code>Conditionally</code>. To determine the conditions for a <code>Conditionally</code> recreation, see the update behavior for that <a href=\"https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-template-resource-type-ref.html\">property</a> in the <i>CloudFormation User Guide</i>.</p>" |
| 5683 | + }, |
| 5684 | + "Path":{ |
| 5685 | + "shape":"ResourcePropertyPath", |
| 5686 | + "documentation":"<p>The property path of the property.</p>" |
| 5687 | + }, |
| 5688 | + "BeforeValue":{ |
| 5689 | + "shape":"BeforeValue", |
| 5690 | + "documentation":"<p>The value of the property before the change is executed. Large values can be truncated.</p>" |
| 5691 | + }, |
| 5692 | + "AfterValue":{ |
| 5693 | + "shape":"AfterValue", |
| 5694 | + "documentation":"<p>The value of the property after the change is executed. Large values can be truncated.</p>" |
| 5695 | + }, |
| 5696 | + "AttributeChangeType":{ |
| 5697 | + "shape":"AttributeChangeType", |
| 5698 | + "documentation":"<p>The type of change to be made to the property if the change is executed.</p> <ul> <li> <p> <code>Add</code> The item will be added.</p> </li> <li> <p> <code>Remove</code> The item will be removed.</p> </li> <li> <p> <code>Modify</code> The item will be modified.</p> </li> </ul>" |
5657 | 5699 | } |
5658 | 5700 | }, |
5659 | 5701 | "documentation":"<p>The field that CloudFormation will change, such as the name of a resource's property, and whether the resource will be recreated.</p>" |
|
0 commit comments