@aws-sdk/client-cloudformation 3.299.0 → 3.300.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/dist-types/commands/ActivateTypeCommand.d.ts +15 -0
- package/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +11 -0
- package/dist-types/commands/CancelUpdateStackCommand.d.ts +4 -0
- package/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +8 -0
- package/dist-types/commands/CreateChangeSetCommand.d.ts +53 -0
- package/dist-types/commands/CreateStackCommand.d.ts +45 -0
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +39 -0
- package/dist-types/commands/CreateStackSetCommand.d.ts +36 -0
- package/dist-types/commands/DeactivateTypeCommand.d.ts +5 -0
- package/dist-types/commands/DeleteChangeSetCommand.d.ts +4 -0
- package/dist-types/commands/DeleteStackCommand.d.ts +8 -0
- package/dist-types/commands/DeleteStackInstancesCommand.d.ts +32 -0
- package/dist-types/commands/DeleteStackSetCommand.d.ts +4 -0
- package/dist-types/commands/DeregisterTypeCommand.d.ts +6 -0
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +3 -0
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +5 -0
- package/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +6 -0
- package/dist-types/commands/DescribePublisherCommand.d.ts +3 -0
- package/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +3 -0
- package/dist-types/commands/DescribeStackEventsCommand.d.ts +4 -0
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +6 -0
- package/dist-types/commands/DescribeStackResourceCommand.d.ts +4 -0
- package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +8 -0
- package/dist-types/commands/DescribeStackResourcesCommand.d.ts +5 -0
- package/dist-types/commands/DescribeStackSetCommand.d.ts +4 -0
- package/dist-types/commands/DescribeStackSetOperationCommand.d.ts +5 -0
- package/dist-types/commands/DescribeStacksCommand.d.ts +4 -0
- package/dist-types/commands/DescribeTypeCommand.d.ts +8 -0
- package/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +3 -0
- package/dist-types/commands/DetectStackDriftCommand.d.ts +6 -0
- package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +4 -0
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +15 -0
- package/dist-types/commands/EstimateTemplateCostCommand.d.ts +12 -0
- package/dist-types/commands/ExecuteChangeSetCommand.d.ts +6 -0
- package/dist-types/commands/GetStackPolicyCommand.d.ts +3 -0
- package/dist-types/commands/GetTemplateCommand.d.ts +5 -0
- package/dist-types/commands/GetTemplateSummaryCommand.d.ts +7 -0
- package/dist-types/commands/ImportStacksToStackSetCommand.d.ts +22 -0
- package/dist-types/commands/ListChangeSetsCommand.d.ts +4 -0
- package/dist-types/commands/ListExportsCommand.d.ts +3 -0
- package/dist-types/commands/ListImportsCommand.d.ts +4 -0
- package/dist-types/commands/ListStackInstancesCommand.d.ts +14 -0
- package/dist-types/commands/ListStackResourcesCommand.d.ts +4 -0
- package/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +13 -0
- package/dist-types/commands/ListStackSetOperationsCommand.d.ts +6 -0
- package/dist-types/commands/ListStackSetsCommand.d.ts +6 -0
- package/dist-types/commands/ListStacksCommand.d.ts +6 -0
- package/dist-types/commands/ListTypeRegistrationsCommand.d.ts +8 -0
- package/dist-types/commands/ListTypeVersionsCommand.d.ts +9 -0
- package/dist-types/commands/ListTypesCommand.d.ts +13 -0
- package/dist-types/commands/PublishTypeCommand.d.ts +6 -0
- package/dist-types/commands/RecordHandlerProgressCommand.d.ts +9 -0
- package/dist-types/commands/RegisterPublisherCommand.d.ts +4 -0
- package/dist-types/commands/RegisterTypeCommand.d.ts +11 -0
- package/dist-types/commands/RollbackStackCommand.d.ts +5 -0
- package/dist-types/commands/SetStackPolicyCommand.d.ts +5 -0
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +7 -0
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +6 -0
- package/dist-types/commands/SignalResourceCommand.d.ts +6 -0
- package/dist-types/commands/StopStackSetOperationCommand.d.ts +5 -0
- package/dist-types/commands/TestTypeCommand.d.ts +7 -0
- package/dist-types/commands/UpdateStackCommand.d.ts +45 -0
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +39 -0
- package/dist-types/commands/UpdateStackSetCommand.d.ts +62 -0
- package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +4 -0
- package/dist-types/commands/ValidateTemplateCommand.d.ts +4 -0
- package/package.json +8 -8
|
@@ -31,6 +31,21 @@ export interface ActivateTypeCommandOutput extends ActivateTypeOutput, __Metadat
|
|
|
31
31
|
* import { CloudFormationClient, ActivateTypeCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
32
32
|
* // const { CloudFormationClient, ActivateTypeCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
33
33
|
* const client = new CloudFormationClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
36
|
+
* PublicTypeArn: "STRING_VALUE",
|
|
37
|
+
* PublisherId: "STRING_VALUE",
|
|
38
|
+
* TypeName: "STRING_VALUE",
|
|
39
|
+
* TypeNameAlias: "STRING_VALUE",
|
|
40
|
+
* AutoUpdate: true || false,
|
|
41
|
+
* LoggingConfig: {
|
|
42
|
+
* LogRoleArn: "STRING_VALUE", // required
|
|
43
|
+
* LogGroupName: "STRING_VALUE", // required
|
|
44
|
+
* },
|
|
45
|
+
* ExecutionRoleArn: "STRING_VALUE",
|
|
46
|
+
* VersionBump: "MAJOR" || "MINOR",
|
|
47
|
+
* MajorVersion: Number("long"),
|
|
48
|
+
* };
|
|
34
49
|
* const command = new ActivateTypeCommand(input);
|
|
35
50
|
* const response = await client.send(command);
|
|
36
51
|
* ```
|
|
@@ -29,6 +29,17 @@ export interface BatchDescribeTypeConfigurationsCommandOutput extends BatchDescr
|
|
|
29
29
|
* import { CloudFormationClient, BatchDescribeTypeConfigurationsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
30
30
|
* // const { CloudFormationClient, BatchDescribeTypeConfigurationsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
31
31
|
* const client = new CloudFormationClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* TypeConfigurationIdentifiers: [ // required
|
|
34
|
+
* {
|
|
35
|
+
* TypeArn: "STRING_VALUE",
|
|
36
|
+
* TypeConfigurationAlias: "STRING_VALUE",
|
|
37
|
+
* TypeConfigurationArn: "STRING_VALUE",
|
|
38
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
39
|
+
* TypeName: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* };
|
|
32
43
|
* const command = new BatchDescribeTypeConfigurationsCommand(input);
|
|
33
44
|
* const response = await client.send(command);
|
|
34
45
|
* ```
|
|
@@ -31,6 +31,10 @@ export interface CancelUpdateStackCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* import { CloudFormationClient, CancelUpdateStackCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
32
32
|
* // const { CloudFormationClient, CancelUpdateStackCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
33
33
|
* const client = new CloudFormationClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* StackName: "STRING_VALUE", // required
|
|
36
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
37
|
+
* };
|
|
34
38
|
* const command = new CancelUpdateStackCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -35,6 +35,14 @@ export interface ContinueUpdateRollbackCommandOutput extends ContinueUpdateRollb
|
|
|
35
35
|
* import { CloudFormationClient, ContinueUpdateRollbackCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
36
36
|
* // const { CloudFormationClient, ContinueUpdateRollbackCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
37
37
|
* const client = new CloudFormationClient(config);
|
|
38
|
+
* const input = {
|
|
39
|
+
* StackName: "STRING_VALUE", // required
|
|
40
|
+
* RoleARN: "STRING_VALUE",
|
|
41
|
+
* ResourcesToSkip: [
|
|
42
|
+
* "STRING_VALUE",
|
|
43
|
+
* ],
|
|
44
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
38
46
|
* const command = new ContinueUpdateRollbackCommand(input);
|
|
39
47
|
* const response = await client.send(command);
|
|
40
48
|
* ```
|
|
@@ -46,6 +46,59 @@ export interface CreateChangeSetCommandOutput extends CreateChangeSetOutput, __M
|
|
|
46
46
|
* import { CloudFormationClient, CreateChangeSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
47
47
|
* // const { CloudFormationClient, CreateChangeSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
48
48
|
* const client = new CloudFormationClient(config);
|
|
49
|
+
* const input = {
|
|
50
|
+
* StackName: "STRING_VALUE", // required
|
|
51
|
+
* TemplateBody: "STRING_VALUE",
|
|
52
|
+
* TemplateURL: "STRING_VALUE",
|
|
53
|
+
* UsePreviousTemplate: true || false,
|
|
54
|
+
* Parameters: [
|
|
55
|
+
* {
|
|
56
|
+
* ParameterKey: "STRING_VALUE",
|
|
57
|
+
* ParameterValue: "STRING_VALUE",
|
|
58
|
+
* UsePreviousValue: true || false,
|
|
59
|
+
* ResolvedValue: "STRING_VALUE",
|
|
60
|
+
* },
|
|
61
|
+
* ],
|
|
62
|
+
* Capabilities: [
|
|
63
|
+
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
64
|
+
* ],
|
|
65
|
+
* ResourceTypes: [
|
|
66
|
+
* "STRING_VALUE",
|
|
67
|
+
* ],
|
|
68
|
+
* RoleARN: "STRING_VALUE",
|
|
69
|
+
* RollbackConfiguration: {
|
|
70
|
+
* RollbackTriggers: [
|
|
71
|
+
* {
|
|
72
|
+
* Arn: "STRING_VALUE", // required
|
|
73
|
+
* Type: "STRING_VALUE", // required
|
|
74
|
+
* },
|
|
75
|
+
* ],
|
|
76
|
+
* MonitoringTimeInMinutes: Number("int"),
|
|
77
|
+
* },
|
|
78
|
+
* NotificationARNs: [
|
|
79
|
+
* "STRING_VALUE",
|
|
80
|
+
* ],
|
|
81
|
+
* Tags: [
|
|
82
|
+
* {
|
|
83
|
+
* Key: "STRING_VALUE", // required
|
|
84
|
+
* Value: "STRING_VALUE", // required
|
|
85
|
+
* },
|
|
86
|
+
* ],
|
|
87
|
+
* ChangeSetName: "STRING_VALUE", // required
|
|
88
|
+
* ClientToken: "STRING_VALUE",
|
|
89
|
+
* Description: "STRING_VALUE",
|
|
90
|
+
* ChangeSetType: "CREATE" || "UPDATE" || "IMPORT",
|
|
91
|
+
* ResourcesToImport: [
|
|
92
|
+
* {
|
|
93
|
+
* ResourceType: "STRING_VALUE", // required
|
|
94
|
+
* LogicalResourceId: "STRING_VALUE", // required
|
|
95
|
+
* ResourceIdentifier: { // required
|
|
96
|
+
* "<keys>": "STRING_VALUE",
|
|
97
|
+
* },
|
|
98
|
+
* },
|
|
99
|
+
* ],
|
|
100
|
+
* IncludeNestedStacks: true || false,
|
|
101
|
+
* };
|
|
49
102
|
* const command = new CreateChangeSetCommand(input);
|
|
50
103
|
* const response = await client.send(command);
|
|
51
104
|
* ```
|
|
@@ -27,6 +27,51 @@ export interface CreateStackCommandOutput extends CreateStackOutput, __MetadataB
|
|
|
27
27
|
* import { CloudFormationClient, CreateStackCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, CreateStackCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* StackName: "STRING_VALUE", // required
|
|
32
|
+
* TemplateBody: "STRING_VALUE",
|
|
33
|
+
* TemplateURL: "STRING_VALUE",
|
|
34
|
+
* Parameters: [
|
|
35
|
+
* {
|
|
36
|
+
* ParameterKey: "STRING_VALUE",
|
|
37
|
+
* ParameterValue: "STRING_VALUE",
|
|
38
|
+
* UsePreviousValue: true || false,
|
|
39
|
+
* ResolvedValue: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* ],
|
|
42
|
+
* DisableRollback: true || false,
|
|
43
|
+
* RollbackConfiguration: {
|
|
44
|
+
* RollbackTriggers: [
|
|
45
|
+
* {
|
|
46
|
+
* Arn: "STRING_VALUE", // required
|
|
47
|
+
* Type: "STRING_VALUE", // required
|
|
48
|
+
* },
|
|
49
|
+
* ],
|
|
50
|
+
* MonitoringTimeInMinutes: Number("int"),
|
|
51
|
+
* },
|
|
52
|
+
* TimeoutInMinutes: Number("int"),
|
|
53
|
+
* NotificationARNs: [
|
|
54
|
+
* "STRING_VALUE",
|
|
55
|
+
* ],
|
|
56
|
+
* Capabilities: [
|
|
57
|
+
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
58
|
+
* ],
|
|
59
|
+
* ResourceTypes: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* RoleARN: "STRING_VALUE",
|
|
63
|
+
* OnFailure: "DO_NOTHING" || "ROLLBACK" || "DELETE",
|
|
64
|
+
* StackPolicyBody: "STRING_VALUE",
|
|
65
|
+
* StackPolicyURL: "STRING_VALUE",
|
|
66
|
+
* Tags: [
|
|
67
|
+
* {
|
|
68
|
+
* Key: "STRING_VALUE", // required
|
|
69
|
+
* Value: "STRING_VALUE", // required
|
|
70
|
+
* },
|
|
71
|
+
* ],
|
|
72
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
73
|
+
* EnableTerminationProtection: true || false,
|
|
74
|
+
* };
|
|
30
75
|
* const command = new CreateStackCommand(input);
|
|
31
76
|
* const response = await client.send(command);
|
|
32
77
|
* ```
|
|
@@ -29,6 +29,45 @@ export interface CreateStackInstancesCommandOutput extends CreateStackInstancesO
|
|
|
29
29
|
* import { CloudFormationClient, CreateStackInstancesCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
30
30
|
* // const { CloudFormationClient, CreateStackInstancesCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
31
31
|
* const client = new CloudFormationClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* StackSetName: "STRING_VALUE", // required
|
|
34
|
+
* Accounts: [
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* DeploymentTargets: {
|
|
38
|
+
* Accounts: [
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* AccountsUrl: "STRING_VALUE",
|
|
42
|
+
* OrganizationalUnitIds: [
|
|
43
|
+
* "STRING_VALUE",
|
|
44
|
+
* ],
|
|
45
|
+
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
46
|
+
* },
|
|
47
|
+
* Regions: [ // required
|
|
48
|
+
* "STRING_VALUE",
|
|
49
|
+
* ],
|
|
50
|
+
* ParameterOverrides: [
|
|
51
|
+
* {
|
|
52
|
+
* ParameterKey: "STRING_VALUE",
|
|
53
|
+
* ParameterValue: "STRING_VALUE",
|
|
54
|
+
* UsePreviousValue: true || false,
|
|
55
|
+
* ResolvedValue: "STRING_VALUE",
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* OperationPreferences: {
|
|
59
|
+
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
60
|
+
* RegionOrder: [
|
|
61
|
+
* "STRING_VALUE",
|
|
62
|
+
* ],
|
|
63
|
+
* FailureToleranceCount: Number("int"),
|
|
64
|
+
* FailureTolerancePercentage: Number("int"),
|
|
65
|
+
* MaxConcurrentCount: Number("int"),
|
|
66
|
+
* MaxConcurrentPercentage: Number("int"),
|
|
67
|
+
* },
|
|
68
|
+
* OperationId: "STRING_VALUE",
|
|
69
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
70
|
+
* };
|
|
32
71
|
* const command = new CreateStackInstancesCommand(input);
|
|
33
72
|
* const response = await client.send(command);
|
|
34
73
|
* ```
|
|
@@ -26,6 +26,42 @@ export interface CreateStackSetCommandOutput extends CreateStackSetOutput, __Met
|
|
|
26
26
|
* import { CloudFormationClient, CreateStackSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, CreateStackSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* StackSetName: "STRING_VALUE", // required
|
|
31
|
+
* Description: "STRING_VALUE",
|
|
32
|
+
* TemplateBody: "STRING_VALUE",
|
|
33
|
+
* TemplateURL: "STRING_VALUE",
|
|
34
|
+
* StackId: "STRING_VALUE",
|
|
35
|
+
* Parameters: [
|
|
36
|
+
* {
|
|
37
|
+
* ParameterKey: "STRING_VALUE",
|
|
38
|
+
* ParameterValue: "STRING_VALUE",
|
|
39
|
+
* UsePreviousValue: true || false,
|
|
40
|
+
* ResolvedValue: "STRING_VALUE",
|
|
41
|
+
* },
|
|
42
|
+
* ],
|
|
43
|
+
* Capabilities: [
|
|
44
|
+
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
45
|
+
* ],
|
|
46
|
+
* Tags: [
|
|
47
|
+
* {
|
|
48
|
+
* Key: "STRING_VALUE", // required
|
|
49
|
+
* Value: "STRING_VALUE", // required
|
|
50
|
+
* },
|
|
51
|
+
* ],
|
|
52
|
+
* AdministrationRoleARN: "STRING_VALUE",
|
|
53
|
+
* ExecutionRoleName: "STRING_VALUE",
|
|
54
|
+
* PermissionModel: "SERVICE_MANAGED" || "SELF_MANAGED",
|
|
55
|
+
* AutoDeployment: {
|
|
56
|
+
* Enabled: true || false,
|
|
57
|
+
* RetainStacksOnAccountRemoval: true || false,
|
|
58
|
+
* },
|
|
59
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
60
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
61
|
+
* ManagedExecution: {
|
|
62
|
+
* Active: true || false,
|
|
63
|
+
* },
|
|
64
|
+
* };
|
|
29
65
|
* const command = new CreateStackSetCommand(input);
|
|
30
66
|
* const response = await client.send(command);
|
|
31
67
|
* ```
|
|
@@ -31,6 +31,11 @@ export interface DeactivateTypeCommandOutput extends DeactivateTypeOutput, __Met
|
|
|
31
31
|
* import { CloudFormationClient, DeactivateTypeCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
32
32
|
* // const { CloudFormationClient, DeactivateTypeCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
33
33
|
* const client = new CloudFormationClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* TypeName: "STRING_VALUE",
|
|
36
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
37
|
+
* Arn: "STRING_VALUE",
|
|
38
|
+
* };
|
|
34
39
|
* const command = new DeactivateTypeCommand(input);
|
|
35
40
|
* const response = await client.send(command);
|
|
36
41
|
* ```
|
|
@@ -33,6 +33,10 @@ export interface DeleteChangeSetCommandOutput extends DeleteChangeSetOutput, __M
|
|
|
33
33
|
* import { CloudFormationClient, DeleteChangeSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
34
34
|
* // const { CloudFormationClient, DeleteChangeSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
35
35
|
* const client = new CloudFormationClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* ChangeSetName: "STRING_VALUE", // required
|
|
38
|
+
* StackName: "STRING_VALUE",
|
|
39
|
+
* };
|
|
36
40
|
* const command = new DeleteChangeSetCommand(input);
|
|
37
41
|
* const response = await client.send(command);
|
|
38
42
|
* ```
|
|
@@ -28,6 +28,14 @@ export interface DeleteStackCommandOutput extends __MetadataBearer {
|
|
|
28
28
|
* import { CloudFormationClient, DeleteStackCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
29
29
|
* // const { CloudFormationClient, DeleteStackCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
30
30
|
* const client = new CloudFormationClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* StackName: "STRING_VALUE", // required
|
|
33
|
+
* RetainResources: [
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* RoleARN: "STRING_VALUE",
|
|
37
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
31
39
|
* const command = new DeleteStackCommand(input);
|
|
32
40
|
* const response = await client.send(command);
|
|
33
41
|
* ```
|
|
@@ -26,6 +26,38 @@ export interface DeleteStackInstancesCommandOutput extends DeleteStackInstancesO
|
|
|
26
26
|
* import { CloudFormationClient, DeleteStackInstancesCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, DeleteStackInstancesCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* StackSetName: "STRING_VALUE", // required
|
|
31
|
+
* Accounts: [
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* DeploymentTargets: {
|
|
35
|
+
* Accounts: [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* AccountsUrl: "STRING_VALUE",
|
|
39
|
+
* OrganizationalUnitIds: [
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
43
|
+
* },
|
|
44
|
+
* Regions: [ // required
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* OperationPreferences: {
|
|
48
|
+
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
49
|
+
* RegionOrder: [
|
|
50
|
+
* "STRING_VALUE",
|
|
51
|
+
* ],
|
|
52
|
+
* FailureToleranceCount: Number("int"),
|
|
53
|
+
* FailureTolerancePercentage: Number("int"),
|
|
54
|
+
* MaxConcurrentCount: Number("int"),
|
|
55
|
+
* MaxConcurrentPercentage: Number("int"),
|
|
56
|
+
* },
|
|
57
|
+
* RetainStacks: true || false, // required
|
|
58
|
+
* OperationId: "STRING_VALUE",
|
|
59
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
60
|
+
* };
|
|
29
61
|
* const command = new DeleteStackInstancesCommand(input);
|
|
30
62
|
* const response = await client.send(command);
|
|
31
63
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DeleteStackSetCommandOutput extends DeleteStackSetOutput, __Met
|
|
|
27
27
|
* import { CloudFormationClient, DeleteStackSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, DeleteStackSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* StackSetName: "STRING_VALUE", // required
|
|
32
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DeleteStackSetCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -35,6 +35,12 @@ export interface DeregisterTypeCommandOutput extends DeregisterTypeOutput, __Met
|
|
|
35
35
|
* import { CloudFormationClient, DeregisterTypeCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
36
36
|
* // const { CloudFormationClient, DeregisterTypeCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
37
37
|
* const client = new CloudFormationClient(config);
|
|
38
|
+
* const input = {
|
|
39
|
+
* Arn: "STRING_VALUE",
|
|
40
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
41
|
+
* TypeName: "STRING_VALUE",
|
|
42
|
+
* VersionId: "STRING_VALUE",
|
|
43
|
+
* };
|
|
38
44
|
* const command = new DeregisterTypeCommand(input);
|
|
39
45
|
* const response = await client.send(command);
|
|
40
46
|
* ```
|
|
@@ -28,6 +28,9 @@ export interface DescribeAccountLimitsCommandOutput extends DescribeAccountLimit
|
|
|
28
28
|
* import { CloudFormationClient, DescribeAccountLimitsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
29
29
|
* // const { CloudFormationClient, DescribeAccountLimitsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
30
30
|
* const client = new CloudFormationClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
31
34
|
* const command = new DescribeAccountLimitsCommand(input);
|
|
32
35
|
* const response = await client.send(command);
|
|
33
36
|
* ```
|
|
@@ -27,6 +27,11 @@ export interface DescribeChangeSetCommandOutput extends DescribeChangeSetOutput,
|
|
|
27
27
|
* import { CloudFormationClient, DescribeChangeSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, DescribeChangeSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* ChangeSetName: "STRING_VALUE", // required
|
|
32
|
+
* StackName: "STRING_VALUE",
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
30
35
|
* const command = new DescribeChangeSetCommand(input);
|
|
31
36
|
* const response = await client.send(command);
|
|
32
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface DescribeChangeSetHooksCommandOutput extends DescribeChangeSetHo
|
|
|
26
26
|
* import { CloudFormationClient, DescribeChangeSetHooksCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, DescribeChangeSetHooksCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ChangeSetName: "STRING_VALUE", // required
|
|
31
|
+
* StackName: "STRING_VALUE",
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* LogicalResourceId: "STRING_VALUE",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new DescribeChangeSetHooksCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -43,6 +43,9 @@ export interface DescribePublisherCommandOutput extends DescribePublisherOutput,
|
|
|
43
43
|
* import { CloudFormationClient, DescribePublisherCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
44
44
|
* // const { CloudFormationClient, DescribePublisherCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
45
45
|
* const client = new CloudFormationClient(config);
|
|
46
|
+
* const input = {
|
|
47
|
+
* PublisherId: "STRING_VALUE",
|
|
48
|
+
* };
|
|
46
49
|
* const command = new DescribePublisherCommand(input);
|
|
47
50
|
* const response = await client.send(command);
|
|
48
51
|
* ```
|
|
@@ -38,6 +38,9 @@ export interface DescribeStackDriftDetectionStatusCommandOutput extends Describe
|
|
|
38
38
|
* import { CloudFormationClient, DescribeStackDriftDetectionStatusCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
39
39
|
* // const { CloudFormationClient, DescribeStackDriftDetectionStatusCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
40
40
|
* const client = new CloudFormationClient(config);
|
|
41
|
+
* const input = {
|
|
42
|
+
* StackDriftDetectionId: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
41
44
|
* const command = new DescribeStackDriftDetectionStatusCommand(input);
|
|
42
45
|
* const response = await client.send(command);
|
|
43
46
|
* ```
|
|
@@ -32,6 +32,10 @@ export interface DescribeStackEventsCommandOutput extends DescribeStackEventsOut
|
|
|
32
32
|
* import { CloudFormationClient, DescribeStackEventsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
33
33
|
* // const { CloudFormationClient, DescribeStackEventsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
34
34
|
* const client = new CloudFormationClient(config);
|
|
35
|
+
* const input = {
|
|
36
|
+
* StackName: "STRING_VALUE",
|
|
37
|
+
* NextToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
35
39
|
* const command = new DescribeStackEventsCommand(input);
|
|
36
40
|
* const response = await client.send(command);
|
|
37
41
|
* ```
|
|
@@ -27,6 +27,12 @@ export interface DescribeStackInstanceCommandOutput extends DescribeStackInstanc
|
|
|
27
27
|
* import { CloudFormationClient, DescribeStackInstanceCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, DescribeStackInstanceCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* StackSetName: "STRING_VALUE", // required
|
|
32
|
+
* StackInstanceAccount: "STRING_VALUE", // required
|
|
33
|
+
* StackInstanceRegion: "STRING_VALUE", // required
|
|
34
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
35
|
+
* };
|
|
30
36
|
* const command = new DescribeStackInstanceCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface DescribeStackResourceCommandOutput extends DescribeStackResourc
|
|
|
28
28
|
* import { CloudFormationClient, DescribeStackResourceCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
29
29
|
* // const { CloudFormationClient, DescribeStackResourceCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
30
30
|
* const client = new CloudFormationClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* StackName: "STRING_VALUE", // required
|
|
33
|
+
* LogicalResourceId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
31
35
|
* const command = new DescribeStackResourceCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -35,6 +35,14 @@ export interface DescribeStackResourceDriftsCommandOutput extends DescribeStackR
|
|
|
35
35
|
* import { CloudFormationClient, DescribeStackResourceDriftsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
36
36
|
* // const { CloudFormationClient, DescribeStackResourceDriftsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
37
37
|
* const client = new CloudFormationClient(config);
|
|
38
|
+
* const input = {
|
|
39
|
+
* StackName: "STRING_VALUE", // required
|
|
40
|
+
* StackResourceDriftStatusFilters: [
|
|
41
|
+
* "IN_SYNC" || "MODIFIED" || "DELETED" || "NOT_CHECKED",
|
|
42
|
+
* ],
|
|
43
|
+
* NextToken: "STRING_VALUE",
|
|
44
|
+
* MaxResults: Number("int"),
|
|
45
|
+
* };
|
|
38
46
|
* const command = new DescribeStackResourceDriftsCommand(input);
|
|
39
47
|
* const response = await client.send(command);
|
|
40
48
|
* ```
|
|
@@ -44,6 +44,11 @@ export interface DescribeStackResourcesCommandOutput extends DescribeStackResour
|
|
|
44
44
|
* import { CloudFormationClient, DescribeStackResourcesCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
45
45
|
* // const { CloudFormationClient, DescribeStackResourcesCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
46
46
|
* const client = new CloudFormationClient(config);
|
|
47
|
+
* const input = {
|
|
48
|
+
* StackName: "STRING_VALUE",
|
|
49
|
+
* LogicalResourceId: "STRING_VALUE",
|
|
50
|
+
* PhysicalResourceId: "STRING_VALUE",
|
|
51
|
+
* };
|
|
47
52
|
* const command = new DescribeStackResourcesCommand(input);
|
|
48
53
|
* const response = await client.send(command);
|
|
49
54
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DescribeStackSetCommandOutput extends DescribeStackSetOutput, _
|
|
|
26
26
|
* import { CloudFormationClient, DescribeStackSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, DescribeStackSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* StackSetName: "STRING_VALUE", // required
|
|
31
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DescribeStackSetCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface DescribeStackSetOperationCommandOutput extends DescribeStackSet
|
|
|
26
26
|
* import { CloudFormationClient, DescribeStackSetOperationCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, DescribeStackSetOperationCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* StackSetName: "STRING_VALUE", // required
|
|
31
|
+
* OperationId: "STRING_VALUE", // required
|
|
32
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new DescribeStackSetOperationCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -30,6 +30,10 @@ export interface DescribeStacksCommandOutput extends DescribeStacksOutput, __Met
|
|
|
30
30
|
* import { CloudFormationClient, DescribeStacksCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
31
31
|
* // const { CloudFormationClient, DescribeStacksCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
32
32
|
* const client = new CloudFormationClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* StackName: "STRING_VALUE",
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
33
37
|
* const command = new DescribeStacksCommand(input);
|
|
34
38
|
* const response = await client.send(command);
|
|
35
39
|
* ```
|
|
@@ -29,6 +29,14 @@ export interface DescribeTypeCommandOutput extends DescribeTypeOutput, __Metadat
|
|
|
29
29
|
* import { CloudFormationClient, DescribeTypeCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
30
30
|
* // const { CloudFormationClient, DescribeTypeCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
31
31
|
* const client = new CloudFormationClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
34
|
+
* TypeName: "STRING_VALUE",
|
|
35
|
+
* Arn: "STRING_VALUE",
|
|
36
|
+
* VersionId: "STRING_VALUE",
|
|
37
|
+
* PublisherId: "STRING_VALUE",
|
|
38
|
+
* PublicVersionNumber: "STRING_VALUE",
|
|
39
|
+
* };
|
|
32
40
|
* const command = new DescribeTypeCommand(input);
|
|
33
41
|
* const response = await client.send(command);
|
|
34
42
|
* ```
|
|
@@ -36,6 +36,9 @@ export interface DescribeTypeRegistrationCommandOutput extends DescribeTypeRegis
|
|
|
36
36
|
* import { CloudFormationClient, DescribeTypeRegistrationCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
37
37
|
* // const { CloudFormationClient, DescribeTypeRegistrationCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
38
38
|
* const client = new CloudFormationClient(config);
|
|
39
|
+
* const input = {
|
|
40
|
+
* RegistrationToken: "STRING_VALUE", // required
|
|
41
|
+
* };
|
|
39
42
|
* const command = new DescribeTypeRegistrationCommand(input);
|
|
40
43
|
* const response = await client.send(command);
|
|
41
44
|
* ```
|
|
@@ -46,6 +46,12 @@ export interface DetectStackDriftCommandOutput extends DetectStackDriftOutput, _
|
|
|
46
46
|
* import { CloudFormationClient, DetectStackDriftCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
47
47
|
* // const { CloudFormationClient, DetectStackDriftCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
48
48
|
* const client = new CloudFormationClient(config);
|
|
49
|
+
* const input = {
|
|
50
|
+
* StackName: "STRING_VALUE", // required
|
|
51
|
+
* LogicalResourceIds: [
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* };
|
|
49
55
|
* const command = new DetectStackDriftCommand(input);
|
|
50
56
|
* const response = await client.send(command);
|
|
51
57
|
* ```
|
|
@@ -37,6 +37,10 @@ export interface DetectStackResourceDriftCommandOutput extends DetectStackResour
|
|
|
37
37
|
* import { CloudFormationClient, DetectStackResourceDriftCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
38
38
|
* // const { CloudFormationClient, DetectStackResourceDriftCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
39
39
|
* const client = new CloudFormationClient(config);
|
|
40
|
+
* const input = {
|
|
41
|
+
* StackName: "STRING_VALUE", // required
|
|
42
|
+
* LogicalResourceId: "STRING_VALUE", // required
|
|
43
|
+
* };
|
|
40
44
|
* const command = new DetectStackResourceDriftCommand(input);
|
|
41
45
|
* const response = await client.send(command);
|
|
42
46
|
* ```
|
|
@@ -70,6 +70,21 @@ export interface DetectStackSetDriftCommandOutput extends DetectStackSetDriftOut
|
|
|
70
70
|
* import { CloudFormationClient, DetectStackSetDriftCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
71
71
|
* // const { CloudFormationClient, DetectStackSetDriftCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
72
72
|
* const client = new CloudFormationClient(config);
|
|
73
|
+
* const input = {
|
|
74
|
+
* StackSetName: "STRING_VALUE", // required
|
|
75
|
+
* OperationPreferences: {
|
|
76
|
+
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
77
|
+
* RegionOrder: [
|
|
78
|
+
* "STRING_VALUE",
|
|
79
|
+
* ],
|
|
80
|
+
* FailureToleranceCount: Number("int"),
|
|
81
|
+
* FailureTolerancePercentage: Number("int"),
|
|
82
|
+
* MaxConcurrentCount: Number("int"),
|
|
83
|
+
* MaxConcurrentPercentage: Number("int"),
|
|
84
|
+
* },
|
|
85
|
+
* OperationId: "STRING_VALUE",
|
|
86
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
87
|
+
* };
|
|
73
88
|
* const command = new DetectStackSetDriftCommand(input);
|
|
74
89
|
* const response = await client.send(command);
|
|
75
90
|
* ```
|
|
@@ -27,6 +27,18 @@ export interface EstimateTemplateCostCommandOutput extends EstimateTemplateCostO
|
|
|
27
27
|
* import { CloudFormationClient, EstimateTemplateCostCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, EstimateTemplateCostCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* TemplateBody: "STRING_VALUE",
|
|
32
|
+
* TemplateURL: "STRING_VALUE",
|
|
33
|
+
* Parameters: [
|
|
34
|
+
* {
|
|
35
|
+
* ParameterKey: "STRING_VALUE",
|
|
36
|
+
* ParameterValue: "STRING_VALUE",
|
|
37
|
+
* UsePreviousValue: true || false,
|
|
38
|
+
* ResolvedValue: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
30
42
|
* const command = new EstimateTemplateCostCommand(input);
|
|
31
43
|
* const response = await client.send(command);
|
|
32
44
|
* ```
|