@aws-sdk/client-cloudformation 3.535.0 → 3.537.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +8 -0
- package/dist-cjs/index.js +91 -2
- package/dist-es/CloudFormation.js +2 -0
- package/dist-es/commands/ListStackSetAutoDeploymentTargetsCommand.js +24 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +0 -4
- package/dist-es/models/models_1.js +4 -0
- package/dist-es/protocols/Aws_query.js +73 -0
- package/dist-types/CloudFormation.d.ts +7 -0
- package/dist-types/CloudFormationClient.d.ts +3 -2
- package/dist-types/commands/ActivateTypeCommand.d.ts +3 -3
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +2 -2
- package/dist-types/commands/DeregisterTypeCommand.d.ts +1 -3
- package/dist-types/commands/DescribePublisherCommand.d.ts +1 -3
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +2 -2
- package/dist-types/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +73 -0
- package/dist-types/commands/PublishTypeCommand.d.ts +1 -3
- package/dist-types/commands/RegisterTypeCommand.d.ts +3 -7
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +2 -4
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +2 -1
- package/dist-types/commands/SignalResourceCommand.d.ts +1 -1
- package/dist-types/commands/TestTypeCommand.d.ts +2 -6
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +3 -9
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +257 -347
- package/dist-types/models/models_1.d.ts +99 -89
- package/dist-types/protocols/Aws_query.d.ts +9 -0
- package/dist-types/ts3.4/CloudFormation.d.ts +23 -0
- package/dist-types/ts3.4/CloudFormationClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListStackSetAutoDeploymentTargetsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/SetTypeDefaultVersionCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/SignalResourceCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -13
- package/dist-types/ts3.4/models/models_1.d.ts +13 -0
- package/dist-types/ts3.4/protocols/Aws_query.d.ts +12 -0
- package/package.json +1 -1
|
@@ -1,6 +1,53 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { CloudFormationServiceException as __BaseException } from "./CloudFormationServiceException";
|
|
3
3
|
import { AutoDeployment, CallAs, Capability, DeploymentTargets, ManagedExecution, Parameter, PermissionModels, ResourceDefinition, RollbackConfiguration, StackSetOperationPreferences, Tag, TemplateConfiguration, ThirdPartyType } from "./models_0";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export interface SetTypeDefaultVersionOutput {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
* @enum
|
|
12
|
+
*/
|
|
13
|
+
export declare const ResourceSignalStatus: {
|
|
14
|
+
readonly FAILURE: "FAILURE";
|
|
15
|
+
readonly SUCCESS: "SUCCESS";
|
|
16
|
+
};
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
export type ResourceSignalStatus = (typeof ResourceSignalStatus)[keyof typeof ResourceSignalStatus];
|
|
21
|
+
/**
|
|
22
|
+
* <p>The input for the <a>SignalResource</a> action.</p>
|
|
23
|
+
* @public
|
|
24
|
+
*/
|
|
25
|
+
export interface SignalResourceInput {
|
|
26
|
+
/**
|
|
27
|
+
* <p>The stack name or unique stack ID that includes the resource that you want to signal.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
StackName: string | undefined;
|
|
31
|
+
/**
|
|
32
|
+
* <p>The logical ID of the resource that you want to signal. The logical ID is the name of the resource that given in
|
|
33
|
+
* the template.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
LogicalResourceId: string | undefined;
|
|
37
|
+
/**
|
|
38
|
+
* <p>A unique ID of the signal. When you signal Amazon EC2 instances or Auto Scaling groups, specify the
|
|
39
|
+
* instance ID that you are signaling as the unique ID. If you send multiple signals to a single resource (such as
|
|
40
|
+
* signaling a wait condition), each signal requires a different unique ID.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
UniqueId: string | undefined;
|
|
44
|
+
/**
|
|
45
|
+
* <p>The status of the signal, which is either success or failure. A failure signal causes CloudFormation to immediately
|
|
46
|
+
* fail the stack creation or update.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
Status: ResourceSignalStatus | undefined;
|
|
50
|
+
}
|
|
4
51
|
/**
|
|
5
52
|
* <p>The limit on resource scans has been exceeded. Reasons include:</p>
|
|
6
53
|
* <ul>
|
|
@@ -66,7 +113,7 @@ export interface StopStackSetOperationInput {
|
|
|
66
113
|
OperationId: string | undefined;
|
|
67
114
|
/**
|
|
68
115
|
* <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
|
|
69
|
-
*
|
|
116
|
+
* management account or as a delegated administrator in a member account.</p>
|
|
70
117
|
* <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
|
|
71
118
|
* permissions.</p>
|
|
72
119
|
* <ul>
|
|
@@ -76,7 +123,7 @@ export interface StopStackSetOperationInput {
|
|
|
76
123
|
* <li>
|
|
77
124
|
* <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
|
|
78
125
|
* <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
|
|
79
|
-
*
|
|
126
|
+
* administrator</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
80
127
|
* </li>
|
|
81
128
|
* </ul>
|
|
82
129
|
* @public
|
|
@@ -258,9 +305,7 @@ export interface UpdateStackInput {
|
|
|
258
305
|
StackPolicyDuringUpdateURL?: string;
|
|
259
306
|
/**
|
|
260
307
|
* <p>A list of <code>Parameter</code> structures that specify input parameters for the stack. For more information,
|
|
261
|
-
* see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">
|
|
262
|
-
* <code>Parameter</code>
|
|
263
|
-
* </a>
|
|
308
|
+
* see the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_Parameter.html">Parameter</a>
|
|
264
309
|
* data type.</p>
|
|
265
310
|
* @public
|
|
266
311
|
*/
|
|
@@ -297,51 +342,40 @@ export interface UpdateStackInput {
|
|
|
297
342
|
* <li>
|
|
298
343
|
* <p>
|
|
299
344
|
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
|
|
300
|
-
*
|
|
301
|
-
* </a>
|
|
345
|
+
* AWS::IAM::AccessKey</a>
|
|
302
346
|
* </p>
|
|
303
347
|
* </li>
|
|
304
348
|
* <li>
|
|
305
349
|
* <p>
|
|
306
350
|
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
|
|
307
|
-
*
|
|
308
|
-
* </a>
|
|
351
|
+
* AWS::IAM::Group</a>
|
|
309
352
|
* </p>
|
|
310
353
|
* </li>
|
|
311
354
|
* <li>
|
|
312
355
|
* <p>
|
|
313
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
|
|
314
|
-
* <code>AWS::IAM::InstanceProfile</code>
|
|
315
|
-
* </a>
|
|
356
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">AWS::IAM::InstanceProfile</a>
|
|
316
357
|
* </p>
|
|
317
358
|
* </li>
|
|
318
359
|
* <li>
|
|
319
360
|
* <p>
|
|
320
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
|
|
321
|
-
* <code>
|
|
322
|
-
* AWS::IAM::Policy</code>
|
|
323
|
-
* </a>
|
|
361
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">AWS::IAM::Policy</a>
|
|
324
362
|
* </p>
|
|
325
363
|
* </li>
|
|
326
364
|
* <li>
|
|
327
365
|
* <p>
|
|
328
366
|
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
|
|
329
|
-
*
|
|
330
|
-
* </a>
|
|
367
|
+
* AWS::IAM::Role</a>
|
|
331
368
|
* </p>
|
|
332
369
|
* </li>
|
|
333
370
|
* <li>
|
|
334
371
|
* <p>
|
|
335
372
|
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
|
|
336
|
-
*
|
|
337
|
-
* </a>
|
|
373
|
+
* AWS::IAM::User</a>
|
|
338
374
|
* </p>
|
|
339
375
|
* </li>
|
|
340
376
|
* <li>
|
|
341
377
|
* <p>
|
|
342
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
|
|
343
|
-
* <code>AWS::IAM::UserToGroupAddition</code>
|
|
344
|
-
* </a>
|
|
378
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">AWS::IAM::UserToGroupAddition</a>
|
|
345
379
|
* </p>
|
|
346
380
|
* </li>
|
|
347
381
|
* </ul>
|
|
@@ -357,11 +391,7 @@ export interface UpdateStackInput {
|
|
|
357
391
|
* users typically create a change set from the processed template, so that they can review the changes resulting from
|
|
358
392
|
* the macros before actually updating the stack. If your stack template contains one or more macros, and you choose
|
|
359
393
|
* to update a stack directly from the processed template, without first reviewing the resulting changes in a change
|
|
360
|
-
* set, you must acknowledge this capability. This includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">
|
|
361
|
-
* <code>AWS::Include</code>
|
|
362
|
-
* </a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">
|
|
363
|
-
* <code>AWS::Serverless</code>
|
|
364
|
-
* </a> transforms, which
|
|
394
|
+
* set, you must acknowledge this capability. This includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">AWS::Serverless</a> transforms, which
|
|
365
395
|
* are macros hosted by CloudFormation.</p>
|
|
366
396
|
* <p>If you want to update a stack from a stack template that contains macros <i>and</i> nested
|
|
367
397
|
* stacks, you must update the stack directly from the template using this capability.</p>
|
|
@@ -516,7 +546,7 @@ export interface UpdateStackInstancesInput {
|
|
|
516
546
|
/**
|
|
517
547
|
* <p>The names of one or more Amazon Web Services Regions in which you want to update parameter values for stack
|
|
518
548
|
* instances. The overridden parameter values will be applied to all stack instances in the specified accounts and
|
|
519
|
-
*
|
|
549
|
+
* Amazon Web Services Regions.</p>
|
|
520
550
|
* @public
|
|
521
551
|
*/
|
|
522
552
|
Regions: string[] | undefined;
|
|
@@ -530,8 +560,8 @@ export interface UpdateStackInstancesInput {
|
|
|
530
560
|
* </li>
|
|
531
561
|
* <li>
|
|
532
562
|
* <p>To leave an overridden parameter set to its present value, include the parameter and specify
|
|
533
|
-
*
|
|
534
|
-
*
|
|
563
|
+
* <code>UsePreviousValue</code> as <code>true</code>. (You can't specify both a value and set
|
|
564
|
+
* <code>UsePreviousValue</code> to <code>true</code>.)</p>
|
|
535
565
|
* </li>
|
|
536
566
|
* <li>
|
|
537
567
|
* <p>To set an overridden parameter back to the value specified in the stack set, specify a parameter list but
|
|
@@ -545,9 +575,7 @@ export interface UpdateStackInstancesInput {
|
|
|
545
575
|
* overridden value.</p>
|
|
546
576
|
* <p>You can only override the parameter <i>values</i> that are specified in the stack set; to add or
|
|
547
577
|
* delete a parameter itself, use <code>UpdateStackSet</code> to update the stack set template. If you add a parameter
|
|
548
|
-
* to a template, before you can override the parameter value specified in the stack set you must first use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">
|
|
549
|
-
* <code>UpdateStackSet</code>
|
|
550
|
-
* </a> to
|
|
578
|
+
* to a template, before you can override the parameter value specified in the stack set you must first use <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/API_UpdateStackSet.html">UpdateStackSet</a> to
|
|
551
579
|
* update all stack instances with the updated template and parameter value specified in the stack set. Once a stack
|
|
552
580
|
* instance has been updated with the new parameter, you can then override the parameter value using
|
|
553
581
|
* <code>UpdateStackInstances</code>.</p>
|
|
@@ -570,7 +598,7 @@ export interface UpdateStackInstancesInput {
|
|
|
570
598
|
OperationId?: string;
|
|
571
599
|
/**
|
|
572
600
|
* <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
|
|
573
|
-
*
|
|
601
|
+
* management account or as a delegated administrator in a member account.</p>
|
|
574
602
|
* <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
|
|
575
603
|
* permissions.</p>
|
|
576
604
|
* <ul>
|
|
@@ -580,7 +608,7 @@ export interface UpdateStackInstancesInput {
|
|
|
580
608
|
* <li>
|
|
581
609
|
* <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
|
|
582
610
|
* <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
|
|
583
|
-
*
|
|
611
|
+
* administrator</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
584
612
|
* </li>
|
|
585
613
|
* </ul>
|
|
586
614
|
* @public
|
|
@@ -614,9 +642,9 @@ export interface UpdateStackSetInput {
|
|
|
614
642
|
/**
|
|
615
643
|
* <p>The structure that contains the template body, with a minimum length of 1 byte and a maximum length of 51,200
|
|
616
644
|
* bytes. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template Anatomy</a> in the
|
|
617
|
-
*
|
|
645
|
+
* <i>CloudFormation User Guide</i>.</p>
|
|
618
646
|
* <p>Conditional: You must specify only one of the following parameters: <code>TemplateBody</code> or
|
|
619
|
-
*
|
|
647
|
+
* <code>TemplateURL</code>—or set <code>UsePreviousTemplate</code> to true.</p>
|
|
620
648
|
* @public
|
|
621
649
|
*/
|
|
622
650
|
TemplateBody?: string;
|
|
@@ -624,16 +652,16 @@ export interface UpdateStackSetInput {
|
|
|
624
652
|
* <p>The location of the file that contains the template body. The URL must point to a template (maximum size:
|
|
625
653
|
* 460,800 bytes) that is located in an Amazon S3 bucket or a Systems Manager document. For more information,
|
|
626
654
|
* see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-anatomy.html">Template
|
|
627
|
-
*
|
|
655
|
+
* Anatomy</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
628
656
|
* <p>Conditional: You must specify only one of the following parameters: <code>TemplateBody</code> or
|
|
629
|
-
*
|
|
657
|
+
* <code>TemplateURL</code>—or set <code>UsePreviousTemplate</code> to true.</p>
|
|
630
658
|
* @public
|
|
631
659
|
*/
|
|
632
660
|
TemplateURL?: string;
|
|
633
661
|
/**
|
|
634
662
|
* <p>Use the existing template that's associated with the stack set that you're updating.</p>
|
|
635
663
|
* <p>Conditional: You must specify only one of the following parameters: <code>TemplateBody</code> or
|
|
636
|
-
*
|
|
664
|
+
* <code>TemplateURL</code>—or set <code>UsePreviousTemplate</code> to true.</p>
|
|
637
665
|
* @public
|
|
638
666
|
*/
|
|
639
667
|
UsePreviousTemplate?: boolean;
|
|
@@ -654,18 +682,18 @@ export interface UpdateStackSetInput {
|
|
|
654
682
|
* for example, by creating new Identity and Access Management (IAM) users. For those stacks sets, you must explicitly
|
|
655
683
|
* acknowledge this by specifying one of these capabilities.</p>
|
|
656
684
|
* <p>The following IAM resources require you to specify either the <code>CAPABILITY_IAM</code> or
|
|
657
|
-
*
|
|
685
|
+
* <code>CAPABILITY_NAMED_IAM</code> capability.</p>
|
|
658
686
|
* <ul>
|
|
659
687
|
* <li>
|
|
660
688
|
* <p>If you have IAM resources, you can specify either capability.</p>
|
|
661
689
|
* </li>
|
|
662
690
|
* <li>
|
|
663
691
|
* <p>If you have IAM resources with custom names, you <i>must</i> specify
|
|
664
|
-
*
|
|
692
|
+
* <code>CAPABILITY_NAMED_IAM</code>.</p>
|
|
665
693
|
* </li>
|
|
666
694
|
* <li>
|
|
667
695
|
* <p>If you don't specify either of these capabilities, CloudFormation returns an
|
|
668
|
-
*
|
|
696
|
+
* <code>InsufficientCapabilities</code> error.</p>
|
|
669
697
|
* </li>
|
|
670
698
|
* </ul>
|
|
671
699
|
* <p>If your stack template contains these resources, we recommend that you review all permissions associated with
|
|
@@ -673,56 +701,42 @@ export interface UpdateStackSetInput {
|
|
|
673
701
|
* <ul>
|
|
674
702
|
* <li>
|
|
675
703
|
* <p>
|
|
676
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">
|
|
677
|
-
* <code>AWS::IAM::AccessKey</code>
|
|
678
|
-
* </a>
|
|
704
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-accesskey.html">AWS::IAM::AccessKey</a>
|
|
679
705
|
* </p>
|
|
680
706
|
* </li>
|
|
681
707
|
* <li>
|
|
682
708
|
* <p>
|
|
683
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">
|
|
684
|
-
* <code>AWS::IAM::Group</code>
|
|
685
|
-
* </a>
|
|
709
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-group.html">AWS::IAM::Group</a>
|
|
686
710
|
* </p>
|
|
687
711
|
* </li>
|
|
688
712
|
* <li>
|
|
689
713
|
* <p>
|
|
690
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">
|
|
691
|
-
* <code>AWS::IAM::InstanceProfile</code>
|
|
692
|
-
* </a>
|
|
714
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-instanceprofile.html">AWS::IAM::InstanceProfile</a>
|
|
693
715
|
* </p>
|
|
694
716
|
* </li>
|
|
695
717
|
* <li>
|
|
696
718
|
* <p>
|
|
697
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">
|
|
698
|
-
* <code>AWS::IAM::Policy</code>
|
|
699
|
-
* </a>
|
|
719
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-policy.html">AWS::IAM::Policy</a>
|
|
700
720
|
* </p>
|
|
701
721
|
* </li>
|
|
702
722
|
* <li>
|
|
703
723
|
* <p>
|
|
704
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">
|
|
705
|
-
* <code>AWS::IAM::Role</code>
|
|
706
|
-
* </a>
|
|
724
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iam-role.html">AWS::IAM::Role</a>
|
|
707
725
|
* </p>
|
|
708
726
|
* </li>
|
|
709
727
|
* <li>
|
|
710
728
|
* <p>
|
|
711
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">
|
|
712
|
-
* <code>AWS::IAM::User</code>
|
|
713
|
-
* </a>
|
|
729
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-user.html">AWS::IAM::User</a>
|
|
714
730
|
* </p>
|
|
715
731
|
* </li>
|
|
716
732
|
* <li>
|
|
717
733
|
* <p>
|
|
718
|
-
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">
|
|
719
|
-
* <code>AWS::IAM::UserToGroupAddition</code>
|
|
720
|
-
* </a>
|
|
734
|
+
* <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iam-addusertogroup.html">AWS::IAM::UserToGroupAddition</a>
|
|
721
735
|
* </p>
|
|
722
736
|
* </li>
|
|
723
737
|
* </ul>
|
|
724
738
|
* <p>For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-iam-template.html#capabilities">Acknowledging IAM Resources in
|
|
725
|
-
*
|
|
739
|
+
* CloudFormation Templates</a>.</p>
|
|
726
740
|
* </li>
|
|
727
741
|
* <li>
|
|
728
742
|
* <p>
|
|
@@ -731,14 +745,10 @@ export interface UpdateStackSetInput {
|
|
|
731
745
|
* <p>Some templates reference macros. If your stack set template references one or more macros, you must update the
|
|
732
746
|
* stack set directly from the processed template, without first reviewing the resulting changes in a change set. To
|
|
733
747
|
* update the stack set directly, you must acknowledge this capability. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/template-macros.html">Using CloudFormation Macros to
|
|
734
|
-
*
|
|
748
|
+
* Perform Custom Processing on Templates</a>.</p>
|
|
735
749
|
* <important>
|
|
736
750
|
* <p>Stack sets with service-managed permissions do not currently support the use of macros in templates. (This
|
|
737
|
-
* includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">
|
|
738
|
-
* <code>AWS::Include</code>
|
|
739
|
-
* </a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">
|
|
740
|
-
* <code>AWS::Serverless</code>
|
|
741
|
-
* </a> transforms, which
|
|
751
|
+
* includes the <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/create-reusable-transform-function-snippets-and-add-to-your-template-with-aws-include-transform.html">AWS::Include</a> and <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/transform-aws-serverless.html">AWS::Serverless</a> transforms, which
|
|
742
752
|
* are macros hosted by CloudFormation.) Even if you specify this capability for a stack set with service-managed permissions,
|
|
743
753
|
* if you reference a macro in your template the stack set operation will fail.</p>
|
|
744
754
|
* </important>
|
|
@@ -770,7 +780,7 @@ export interface UpdateStackSetInput {
|
|
|
770
780
|
* required IAM permission to tag resources. If you omit tags that are currently associated with the stack set from
|
|
771
781
|
* the list of tags you specify, CloudFormation assumes that you want to remove those tags from the stack set, and checks to see
|
|
772
782
|
* if you have permission to untag resources. If you don't have the necessary permission(s), the entire
|
|
773
|
-
*
|
|
783
|
+
* <code>UpdateStackSet</code> action fails with an <code>access denied</code> error, and the stack set is not
|
|
774
784
|
* updated.</p>
|
|
775
785
|
* @public
|
|
776
786
|
*/
|
|
@@ -784,7 +794,7 @@ export interface UpdateStackSetInput {
|
|
|
784
794
|
* <p>The Amazon Resource Name (ARN) of the IAM role to use to update this stack set.</p>
|
|
785
795
|
* <p>Specify an IAM role only if you are using customized administrator roles to control which users or groups can
|
|
786
796
|
* manage specific stack sets within the same administrator account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs.html">Granting Permissions for Stack
|
|
787
|
-
*
|
|
797
|
+
* Set Operations</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
788
798
|
* <p>If you specified a customized administrator role when you created the stack set, you must specify a customized
|
|
789
799
|
* administrator role, even if it is the same customized administrator role used with this stack set previously.</p>
|
|
790
800
|
* @public
|
|
@@ -807,26 +817,26 @@ export interface UpdateStackSetInput {
|
|
|
807
817
|
* <p>To update all the stack instances associated with this stack set, do not specify <code>DeploymentTargets</code>
|
|
808
818
|
* or <code>Regions</code>.</p>
|
|
809
819
|
* <p>If the stack set update includes changes to the template (that is, if <code>TemplateBody</code> or
|
|
810
|
-
*
|
|
811
|
-
* of <code>OUTDATED</code> prior to updating the stack instances in the specified accounts and Amazon Web Services Regions. If the stack set update doesn't include changes to the template or parameters, CloudFormation updates the
|
|
812
|
-
* in the specified accounts and Regions, while leaving all other stack instances with their existing
|
|
813
|
-
* status.</p>
|
|
820
|
+
* <code>TemplateURL</code> is specified), or the <code>Parameters</code>, CloudFormation marks all stack instances with a
|
|
821
|
+
* status of <code>OUTDATED</code> prior to updating the stack instances in the specified accounts and Amazon Web Services Regions. If the stack set update doesn't include changes to the template or parameters, CloudFormation updates the
|
|
822
|
+
* stack instances in the specified accounts and Regions, while leaving all other stack instances with their existing
|
|
823
|
+
* stack instance status.</p>
|
|
814
824
|
* @public
|
|
815
825
|
*/
|
|
816
826
|
DeploymentTargets?: DeploymentTargets;
|
|
817
827
|
/**
|
|
818
828
|
* <p>Describes how the IAM roles required for stack set operations are created. You cannot modify
|
|
819
|
-
*
|
|
829
|
+
* <code>PermissionModel</code> if there are stack instances associated with your stack set.</p>
|
|
820
830
|
* <ul>
|
|
821
831
|
* <li>
|
|
822
832
|
* <p>With <code>self-managed</code> permissions, you must create the administrator and execution roles required to
|
|
823
833
|
* deploy to target accounts. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-self-managed.html">Grant Self-Managed Stack Set
|
|
824
|
-
*
|
|
834
|
+
* Permissions</a>.</p>
|
|
825
835
|
* </li>
|
|
826
836
|
* <li>
|
|
827
837
|
* <p>With <code>service-managed</code> permissions, StackSets automatically creates the IAM roles required to
|
|
828
838
|
* deploy to accounts managed by Organizations. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-prereqs-service-managed.html">Grant Service-Managed Stack Set
|
|
829
|
-
*
|
|
839
|
+
* Permissions</a>.</p>
|
|
830
840
|
* </li>
|
|
831
841
|
* </ul>
|
|
832
842
|
* @public
|
|
@@ -847,7 +857,7 @@ export interface UpdateStackSetInput {
|
|
|
847
857
|
* ensure that CloudFormation successfully received them.</p>
|
|
848
858
|
* <p>If you don't specify an operation ID, CloudFormation generates one automatically.</p>
|
|
849
859
|
* <p>Repeating this stack set operation with a new operation ID retries all stack instances whose status is
|
|
850
|
-
*
|
|
860
|
+
* <code>OUTDATED</code>.</p>
|
|
851
861
|
* @public
|
|
852
862
|
*/
|
|
853
863
|
OperationId?: string;
|
|
@@ -855,11 +865,11 @@ export interface UpdateStackSetInput {
|
|
|
855
865
|
* <p>[Self-managed permissions] The accounts in which to update associated stack instances. If you specify accounts,
|
|
856
866
|
* you must also specify the Amazon Web Services Regions in which to update stack set instances.</p>
|
|
857
867
|
* <p>To update <i>all</i> the stack instances associated with this stack set, don't specify the
|
|
858
|
-
*
|
|
868
|
+
* <code>Accounts</code> or <code>Regions</code> properties.</p>
|
|
859
869
|
* <p>If the stack set update includes changes to the template (that is, if the <code>TemplateBody</code> or
|
|
860
|
-
*
|
|
870
|
+
* <code>TemplateURL</code> properties are specified), or the <code>Parameters</code> property, CloudFormation marks all stack
|
|
861
871
|
* instances with a status of <code>OUTDATED</code> prior to updating the stack instances in the specified accounts and
|
|
862
|
-
*
|
|
872
|
+
* Amazon Web Services Regions. If the stack set update does not include changes to the template or parameters, CloudFormation
|
|
863
873
|
* updates the stack instances in the specified accounts and Amazon Web Services Regions, while leaving all other stack
|
|
864
874
|
* instances with their existing stack instance status.</p>
|
|
865
875
|
* @public
|
|
@@ -869,9 +879,9 @@ export interface UpdateStackSetInput {
|
|
|
869
879
|
* <p>The Amazon Web Services Regions in which to update associated stack instances. If you specify Regions, you must
|
|
870
880
|
* also specify accounts in which to update stack set instances.</p>
|
|
871
881
|
* <p>To update <i>all</i> the stack instances associated with this stack set, do not specify the
|
|
872
|
-
*
|
|
882
|
+
* <code>Accounts</code> or <code>Regions</code> properties.</p>
|
|
873
883
|
* <p>If the stack set update includes changes to the template (that is, if the <code>TemplateBody</code> or
|
|
874
|
-
*
|
|
884
|
+
* <code>TemplateURL</code> properties are specified), or the <code>Parameters</code> property, CloudFormation marks all stack
|
|
875
885
|
* instances with a status of <code>OUTDATED</code> prior to updating the stack instances in the specified accounts and
|
|
876
886
|
* Regions. If the stack set update does not include changes to the template or parameters, CloudFormation updates the stack
|
|
877
887
|
* instances in the specified accounts and Regions, while leaving all other stack instances with their existing stack
|
|
@@ -881,7 +891,7 @@ export interface UpdateStackSetInput {
|
|
|
881
891
|
Regions?: string[];
|
|
882
892
|
/**
|
|
883
893
|
* <p>[Service-managed permissions] Specifies whether you are acting as an account administrator in the organization's
|
|
884
|
-
*
|
|
894
|
+
* management account or as a delegated administrator in a member account.</p>
|
|
885
895
|
* <p>By default, <code>SELF</code> is specified. Use <code>SELF</code> for stack sets with self-managed
|
|
886
896
|
* permissions.</p>
|
|
887
897
|
* <ul>
|
|
@@ -891,7 +901,7 @@ export interface UpdateStackSetInput {
|
|
|
891
901
|
* <li>
|
|
892
902
|
* <p>If you are signed in to a delegated administrator account, specify <code>DELEGATED_ADMIN</code>.</p>
|
|
893
903
|
* <p>Your Amazon Web Services account must be registered as a delegated administrator in the management account. For more information, see <a href="https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/stacksets-orgs-delegated-admin.html">Register a delegated
|
|
894
|
-
*
|
|
904
|
+
* administrator</a> in the <i>CloudFormation User Guide</i>.</p>
|
|
895
905
|
* </li>
|
|
896
906
|
* </ul>
|
|
897
907
|
* @public
|
|
@@ -57,6 +57,7 @@ import { ListStackInstanceResourceDriftsCommandInput, ListStackInstanceResourceD
|
|
|
57
57
|
import { ListStackInstancesCommandInput, ListStackInstancesCommandOutput } from "../commands/ListStackInstancesCommand";
|
|
58
58
|
import { ListStackResourcesCommandInput, ListStackResourcesCommandOutput } from "../commands/ListStackResourcesCommand";
|
|
59
59
|
import { ListStacksCommandInput, ListStacksCommandOutput } from "../commands/ListStacksCommand";
|
|
60
|
+
import { ListStackSetAutoDeploymentTargetsCommandInput, ListStackSetAutoDeploymentTargetsCommandOutput } from "../commands/ListStackSetAutoDeploymentTargetsCommand";
|
|
60
61
|
import { ListStackSetOperationResultsCommandInput, ListStackSetOperationResultsCommandOutput } from "../commands/ListStackSetOperationResultsCommand";
|
|
61
62
|
import { ListStackSetOperationsCommandInput, ListStackSetOperationsCommandOutput } from "../commands/ListStackSetOperationsCommand";
|
|
62
63
|
import { ListStackSetsCommandInput, ListStackSetsCommandOutput } from "../commands/ListStackSetsCommand";
|
|
@@ -309,6 +310,10 @@ export declare const se_ListStackResourcesCommand: (input: ListStackResourcesCom
|
|
|
309
310
|
* serializeAws_queryListStacksCommand
|
|
310
311
|
*/
|
|
311
312
|
export declare const se_ListStacksCommand: (input: ListStacksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
313
|
+
/**
|
|
314
|
+
* serializeAws_queryListStackSetAutoDeploymentTargetsCommand
|
|
315
|
+
*/
|
|
316
|
+
export declare const se_ListStackSetAutoDeploymentTargetsCommand: (input: ListStackSetAutoDeploymentTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
312
317
|
/**
|
|
313
318
|
* serializeAws_queryListStackSetOperationResultsCommand
|
|
314
319
|
*/
|
|
@@ -633,6 +638,10 @@ export declare const de_ListStackResourcesCommand: (output: __HttpResponse, cont
|
|
|
633
638
|
* deserializeAws_queryListStacksCommand
|
|
634
639
|
*/
|
|
635
640
|
export declare const de_ListStacksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStacksCommandOutput>;
|
|
641
|
+
/**
|
|
642
|
+
* deserializeAws_queryListStackSetAutoDeploymentTargetsCommand
|
|
643
|
+
*/
|
|
644
|
+
export declare const de_ListStackSetAutoDeploymentTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListStackSetAutoDeploymentTargetsCommandOutput>;
|
|
636
645
|
/**
|
|
637
646
|
* deserializeAws_queryListStackSetOperationResultsCommand
|
|
638
647
|
*/
|
|
@@ -228,6 +228,10 @@ import {
|
|
|
228
228
|
ListStacksCommandInput,
|
|
229
229
|
ListStacksCommandOutput,
|
|
230
230
|
} from "./commands/ListStacksCommand";
|
|
231
|
+
import {
|
|
232
|
+
ListStackSetAutoDeploymentTargetsCommandInput,
|
|
233
|
+
ListStackSetAutoDeploymentTargetsCommandOutput,
|
|
234
|
+
} from "./commands/ListStackSetAutoDeploymentTargetsCommand";
|
|
231
235
|
import {
|
|
232
236
|
ListStackSetOperationResultsCommandInput,
|
|
233
237
|
ListStackSetOperationResultsCommandOutput,
|
|
@@ -1091,6 +1095,25 @@ export interface CloudFormation {
|
|
|
1091
1095
|
options: __HttpHandlerOptions,
|
|
1092
1096
|
cb: (err: any, data?: ListStacksCommandOutput) => void
|
|
1093
1097
|
): void;
|
|
1098
|
+
listStackSetAutoDeploymentTargets(
|
|
1099
|
+
args: ListStackSetAutoDeploymentTargetsCommandInput,
|
|
1100
|
+
options?: __HttpHandlerOptions
|
|
1101
|
+
): Promise<ListStackSetAutoDeploymentTargetsCommandOutput>;
|
|
1102
|
+
listStackSetAutoDeploymentTargets(
|
|
1103
|
+
args: ListStackSetAutoDeploymentTargetsCommandInput,
|
|
1104
|
+
cb: (
|
|
1105
|
+
err: any,
|
|
1106
|
+
data?: ListStackSetAutoDeploymentTargetsCommandOutput
|
|
1107
|
+
) => void
|
|
1108
|
+
): void;
|
|
1109
|
+
listStackSetAutoDeploymentTargets(
|
|
1110
|
+
args: ListStackSetAutoDeploymentTargetsCommandInput,
|
|
1111
|
+
options: __HttpHandlerOptions,
|
|
1112
|
+
cb: (
|
|
1113
|
+
err: any,
|
|
1114
|
+
data?: ListStackSetAutoDeploymentTargetsCommandOutput
|
|
1115
|
+
) => void
|
|
1116
|
+
): void;
|
|
1094
1117
|
listStackSetOperationResults(
|
|
1095
1118
|
args: ListStackSetOperationResultsCommandInput,
|
|
1096
1119
|
options?: __HttpHandlerOptions
|
|
@@ -273,6 +273,10 @@ import {
|
|
|
273
273
|
ListStacksCommandInput,
|
|
274
274
|
ListStacksCommandOutput,
|
|
275
275
|
} from "./commands/ListStacksCommand";
|
|
276
|
+
import {
|
|
277
|
+
ListStackSetAutoDeploymentTargetsCommandInput,
|
|
278
|
+
ListStackSetAutoDeploymentTargetsCommandOutput,
|
|
279
|
+
} from "./commands/ListStackSetAutoDeploymentTargetsCommand";
|
|
276
280
|
import {
|
|
277
281
|
ListStackSetOperationResultsCommandInput,
|
|
278
282
|
ListStackSetOperationResultsCommandOutput,
|
|
@@ -433,6 +437,7 @@ export type ServiceInputTypes =
|
|
|
433
437
|
| ListStackInstanceResourceDriftsCommandInput
|
|
434
438
|
| ListStackInstancesCommandInput
|
|
435
439
|
| ListStackResourcesCommandInput
|
|
440
|
+
| ListStackSetAutoDeploymentTargetsCommandInput
|
|
436
441
|
| ListStackSetOperationResultsCommandInput
|
|
437
442
|
| ListStackSetOperationsCommandInput
|
|
438
443
|
| ListStackSetsCommandInput
|
|
@@ -515,6 +520,7 @@ export type ServiceOutputTypes =
|
|
|
515
520
|
| ListStackInstanceResourceDriftsCommandOutput
|
|
516
521
|
| ListStackInstancesCommandOutput
|
|
517
522
|
| ListStackResourcesCommandOutput
|
|
523
|
+
| ListStackSetAutoDeploymentTargetsCommandOutput
|
|
518
524
|
| ListStackSetOperationResultsCommandOutput
|
|
519
525
|
| ListStackSetOperationsCommandOutput
|
|
520
526
|
| ListStackSetsCommandOutput
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
CloudFormationClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../CloudFormationClient";
|
|
8
|
+
import {
|
|
9
|
+
ListStackSetAutoDeploymentTargetsInput,
|
|
10
|
+
ListStackSetAutoDeploymentTargetsOutput,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface ListStackSetAutoDeploymentTargetsCommandInput
|
|
14
|
+
extends ListStackSetAutoDeploymentTargetsInput {}
|
|
15
|
+
export interface ListStackSetAutoDeploymentTargetsCommandOutput
|
|
16
|
+
extends ListStackSetAutoDeploymentTargetsOutput,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const ListStackSetAutoDeploymentTargetsCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: ListStackSetAutoDeploymentTargetsCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
ListStackSetAutoDeploymentTargetsCommandInput,
|
|
23
|
+
ListStackSetAutoDeploymentTargetsCommandOutput,
|
|
24
|
+
CloudFormationClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: ListStackSetAutoDeploymentTargetsCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
ListStackSetAutoDeploymentTargetsCommandInput,
|
|
32
|
+
ListStackSetAutoDeploymentTargetsCommandOutput,
|
|
33
|
+
CloudFormationClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class ListStackSetAutoDeploymentTargetsCommand extends ListStackSetAutoDeploymentTargetsCommand_base {}
|
|
@@ -5,10 +5,8 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFormationClient";
|
|
8
|
-
import {
|
|
9
|
-
|
|
10
|
-
SetTypeDefaultVersionOutput,
|
|
11
|
-
} from "../models/models_0";
|
|
8
|
+
import { SetTypeDefaultVersionInput } from "../models/models_0";
|
|
9
|
+
import { SetTypeDefaultVersionOutput } from "../models/models_1";
|
|
12
10
|
export { __MetadataBearer, $Command };
|
|
13
11
|
export interface SetTypeDefaultVersionCommandInput
|
|
14
12
|
extends SetTypeDefaultVersionInput {}
|
|
@@ -5,7 +5,7 @@ import {
|
|
|
5
5
|
ServiceInputTypes,
|
|
6
6
|
ServiceOutputTypes,
|
|
7
7
|
} from "../CloudFormationClient";
|
|
8
|
-
import { SignalResourceInput } from "../models/
|
|
8
|
+
import { SignalResourceInput } from "../models/models_1";
|
|
9
9
|
export { __MetadataBearer, $Command };
|
|
10
10
|
export interface SignalResourceCommandInput extends SignalResourceInput {}
|
|
11
11
|
export interface SignalResourceCommandOutput extends __MetadataBearer {}
|
|
@@ -54,6 +54,7 @@ export * from "./ListResourceScansCommand";
|
|
|
54
54
|
export * from "./ListStackInstanceResourceDriftsCommand";
|
|
55
55
|
export * from "./ListStackInstancesCommand";
|
|
56
56
|
export * from "./ListStackResourcesCommand";
|
|
57
|
+
export * from "./ListStackSetAutoDeploymentTargetsCommand";
|
|
57
58
|
export * from "./ListStackSetOperationResultsCommand";
|
|
58
59
|
export * from "./ListStackSetOperationsCommand";
|
|
59
60
|
export * from "./ListStackSetsCommand";
|