@aws-sdk/client-cloudformation 3.300.0 → 3.301.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 +2 -2
- package/dist-types/commands/BatchDescribeTypeConfigurationsCommand.d.ts +3 -3
- package/dist-types/commands/CancelUpdateStackCommand.d.ts +1 -1
- package/dist-types/commands/ContinueUpdateRollbackCommand.d.ts +2 -2
- package/dist-types/commands/CreateChangeSetCommand.d.ts +14 -14
- package/dist-types/commands/CreateStackCommand.d.ts +11 -11
- package/dist-types/commands/CreateStackInstancesCommand.d.ts +8 -8
- package/dist-types/commands/CreateStackSetCommand.d.ts +8 -8
- package/dist-types/commands/DeactivateTypeCommand.d.ts +1 -1
- package/dist-types/commands/DeleteChangeSetCommand.d.ts +1 -1
- package/dist-types/commands/DeleteStackCommand.d.ts +2 -2
- package/dist-types/commands/DeleteStackInstancesCommand.d.ts +6 -6
- package/dist-types/commands/DeleteStackSetCommand.d.ts +1 -1
- package/dist-types/commands/DeregisterTypeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeAccountLimitsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeChangeSetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeChangeSetHooksCommand.d.ts +1 -1
- package/dist-types/commands/DescribePublisherCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackDriftDetectionStatusCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackEventsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackInstanceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackResourceCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackResourceDriftsCommand.d.ts +2 -2
- package/dist-types/commands/DescribeStackResourcesCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackSetCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStackSetOperationCommand.d.ts +1 -1
- package/dist-types/commands/DescribeStacksCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTypeCommand.d.ts +1 -1
- package/dist-types/commands/DescribeTypeRegistrationCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackDriftCommand.d.ts +2 -2
- package/dist-types/commands/DetectStackResourceDriftCommand.d.ts +1 -1
- package/dist-types/commands/DetectStackSetDriftCommand.d.ts +3 -3
- package/dist-types/commands/EstimateTemplateCostCommand.d.ts +3 -3
- package/dist-types/commands/ExecuteChangeSetCommand.d.ts +1 -1
- package/dist-types/commands/GetStackPolicyCommand.d.ts +1 -1
- package/dist-types/commands/GetTemplateCommand.d.ts +1 -1
- package/dist-types/commands/GetTemplateSummaryCommand.d.ts +1 -1
- package/dist-types/commands/ImportStacksToStackSetCommand.d.ts +5 -5
- package/dist-types/commands/ListChangeSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListExportsCommand.d.ts +1 -1
- package/dist-types/commands/ListImportsCommand.d.ts +1 -1
- package/dist-types/commands/ListStackInstancesCommand.d.ts +3 -3
- package/dist-types/commands/ListStackResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListStackSetOperationResultsCommand.d.ts +3 -3
- package/dist-types/commands/ListStackSetOperationsCommand.d.ts +1 -1
- package/dist-types/commands/ListStackSetsCommand.d.ts +1 -1
- package/dist-types/commands/ListStacksCommand.d.ts +2 -2
- package/dist-types/commands/ListTypeRegistrationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTypeVersionsCommand.d.ts +1 -1
- package/dist-types/commands/ListTypesCommand.d.ts +2 -2
- package/dist-types/commands/PublishTypeCommand.d.ts +1 -1
- package/dist-types/commands/RecordHandlerProgressCommand.d.ts +1 -1
- package/dist-types/commands/RegisterPublisherCommand.d.ts +1 -1
- package/dist-types/commands/RegisterTypeCommand.d.ts +2 -2
- package/dist-types/commands/RollbackStackCommand.d.ts +1 -1
- package/dist-types/commands/SetStackPolicyCommand.d.ts +1 -1
- package/dist-types/commands/SetTypeConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/SetTypeDefaultVersionCommand.d.ts +1 -1
- package/dist-types/commands/SignalResourceCommand.d.ts +1 -1
- package/dist-types/commands/StopStackSetOperationCommand.d.ts +1 -1
- package/dist-types/commands/TestTypeCommand.d.ts +1 -1
- package/dist-types/commands/UpdateStackCommand.d.ts +11 -11
- package/dist-types/commands/UpdateStackInstancesCommand.d.ts +8 -8
- package/dist-types/commands/UpdateStackSetCommand.d.ts +13 -13
- package/dist-types/commands/UpdateTerminationProtectionCommand.d.ts +1 -1
- package/dist-types/commands/ValidateTemplateCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -31,14 +31,14 @@ 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 = {
|
|
34
|
+
* const input = { // ActivateTypeInput
|
|
35
35
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
36
36
|
* PublicTypeArn: "STRING_VALUE",
|
|
37
37
|
* PublisherId: "STRING_VALUE",
|
|
38
38
|
* TypeName: "STRING_VALUE",
|
|
39
39
|
* TypeNameAlias: "STRING_VALUE",
|
|
40
40
|
* AutoUpdate: true || false,
|
|
41
|
-
* LoggingConfig: {
|
|
41
|
+
* LoggingConfig: { // LoggingConfig
|
|
42
42
|
* LogRoleArn: "STRING_VALUE", // required
|
|
43
43
|
* LogGroupName: "STRING_VALUE", // required
|
|
44
44
|
* },
|
|
@@ -29,9 +29,9 @@ 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
|
-
* {
|
|
32
|
+
* const input = { // BatchDescribeTypeConfigurationsInput
|
|
33
|
+
* TypeConfigurationIdentifiers: [ // TypeConfigurationIdentifiers // required
|
|
34
|
+
* { // TypeConfigurationIdentifier
|
|
35
35
|
* TypeArn: "STRING_VALUE",
|
|
36
36
|
* TypeConfigurationAlias: "STRING_VALUE",
|
|
37
37
|
* TypeConfigurationArn: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // CancelUpdateStackInput
|
|
35
35
|
* StackName: "STRING_VALUE", // required
|
|
36
36
|
* ClientRequestToken: "STRING_VALUE",
|
|
37
37
|
* };
|
|
@@ -35,10 +35,10 @@ 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 = {
|
|
38
|
+
* const input = { // ContinueUpdateRollbackInput
|
|
39
39
|
* StackName: "STRING_VALUE", // required
|
|
40
40
|
* RoleARN: "STRING_VALUE",
|
|
41
|
-
* ResourcesToSkip: [
|
|
41
|
+
* ResourcesToSkip: [ // ResourcesToSkip
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* ClientRequestToken: "STRING_VALUE",
|
|
@@ -46,40 +46,40 @@ 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 = {
|
|
49
|
+
* const input = { // CreateChangeSetInput
|
|
50
50
|
* StackName: "STRING_VALUE", // required
|
|
51
51
|
* TemplateBody: "STRING_VALUE",
|
|
52
52
|
* TemplateURL: "STRING_VALUE",
|
|
53
53
|
* UsePreviousTemplate: true || false,
|
|
54
|
-
* Parameters: [
|
|
55
|
-
* {
|
|
54
|
+
* Parameters: [ // Parameters
|
|
55
|
+
* { // Parameter
|
|
56
56
|
* ParameterKey: "STRING_VALUE",
|
|
57
57
|
* ParameterValue: "STRING_VALUE",
|
|
58
58
|
* UsePreviousValue: true || false,
|
|
59
59
|
* ResolvedValue: "STRING_VALUE",
|
|
60
60
|
* },
|
|
61
61
|
* ],
|
|
62
|
-
* Capabilities: [
|
|
62
|
+
* Capabilities: [ // Capabilities
|
|
63
63
|
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
64
64
|
* ],
|
|
65
|
-
* ResourceTypes: [
|
|
65
|
+
* ResourceTypes: [ // ResourceTypes
|
|
66
66
|
* "STRING_VALUE",
|
|
67
67
|
* ],
|
|
68
68
|
* RoleARN: "STRING_VALUE",
|
|
69
|
-
* RollbackConfiguration: {
|
|
70
|
-
* RollbackTriggers: [
|
|
71
|
-
* {
|
|
69
|
+
* RollbackConfiguration: { // RollbackConfiguration
|
|
70
|
+
* RollbackTriggers: [ // RollbackTriggers
|
|
71
|
+
* { // RollbackTrigger
|
|
72
72
|
* Arn: "STRING_VALUE", // required
|
|
73
73
|
* Type: "STRING_VALUE", // required
|
|
74
74
|
* },
|
|
75
75
|
* ],
|
|
76
76
|
* MonitoringTimeInMinutes: Number("int"),
|
|
77
77
|
* },
|
|
78
|
-
* NotificationARNs: [
|
|
78
|
+
* NotificationARNs: [ // NotificationARNs
|
|
79
79
|
* "STRING_VALUE",
|
|
80
80
|
* ],
|
|
81
|
-
* Tags: [
|
|
82
|
-
* {
|
|
81
|
+
* Tags: [ // Tags
|
|
82
|
+
* { // Tag
|
|
83
83
|
* Key: "STRING_VALUE", // required
|
|
84
84
|
* Value: "STRING_VALUE", // required
|
|
85
85
|
* },
|
|
@@ -88,11 +88,11 @@ export interface CreateChangeSetCommandOutput extends CreateChangeSetOutput, __M
|
|
|
88
88
|
* ClientToken: "STRING_VALUE",
|
|
89
89
|
* Description: "STRING_VALUE",
|
|
90
90
|
* ChangeSetType: "CREATE" || "UPDATE" || "IMPORT",
|
|
91
|
-
* ResourcesToImport: [
|
|
92
|
-
* {
|
|
91
|
+
* ResourcesToImport: [ // ResourcesToImport
|
|
92
|
+
* { // ResourceToImport
|
|
93
93
|
* ResourceType: "STRING_VALUE", // required
|
|
94
94
|
* LogicalResourceId: "STRING_VALUE", // required
|
|
95
|
-
* ResourceIdentifier: { // required
|
|
95
|
+
* ResourceIdentifier: { // ResourceIdentifierProperties // required
|
|
96
96
|
* "<keys>": "STRING_VALUE",
|
|
97
97
|
* },
|
|
98
98
|
* },
|
|
@@ -27,12 +27,12 @@ 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 = {
|
|
30
|
+
* const input = { // CreateStackInput
|
|
31
31
|
* StackName: "STRING_VALUE", // required
|
|
32
32
|
* TemplateBody: "STRING_VALUE",
|
|
33
33
|
* TemplateURL: "STRING_VALUE",
|
|
34
|
-
* Parameters: [
|
|
35
|
-
* {
|
|
34
|
+
* Parameters: [ // Parameters
|
|
35
|
+
* { // Parameter
|
|
36
36
|
* ParameterKey: "STRING_VALUE",
|
|
37
37
|
* ParameterValue: "STRING_VALUE",
|
|
38
38
|
* UsePreviousValue: true || false,
|
|
@@ -40,9 +40,9 @@ export interface CreateStackCommandOutput extends CreateStackOutput, __MetadataB
|
|
|
40
40
|
* },
|
|
41
41
|
* ],
|
|
42
42
|
* DisableRollback: true || false,
|
|
43
|
-
* RollbackConfiguration: {
|
|
44
|
-
* RollbackTriggers: [
|
|
45
|
-
* {
|
|
43
|
+
* RollbackConfiguration: { // RollbackConfiguration
|
|
44
|
+
* RollbackTriggers: [ // RollbackTriggers
|
|
45
|
+
* { // RollbackTrigger
|
|
46
46
|
* Arn: "STRING_VALUE", // required
|
|
47
47
|
* Type: "STRING_VALUE", // required
|
|
48
48
|
* },
|
|
@@ -50,21 +50,21 @@ export interface CreateStackCommandOutput extends CreateStackOutput, __MetadataB
|
|
|
50
50
|
* MonitoringTimeInMinutes: Number("int"),
|
|
51
51
|
* },
|
|
52
52
|
* TimeoutInMinutes: Number("int"),
|
|
53
|
-
* NotificationARNs: [
|
|
53
|
+
* NotificationARNs: [ // NotificationARNs
|
|
54
54
|
* "STRING_VALUE",
|
|
55
55
|
* ],
|
|
56
|
-
* Capabilities: [
|
|
56
|
+
* Capabilities: [ // Capabilities
|
|
57
57
|
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
58
58
|
* ],
|
|
59
|
-
* ResourceTypes: [
|
|
59
|
+
* ResourceTypes: [ // ResourceTypes
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* RoleARN: "STRING_VALUE",
|
|
63
63
|
* OnFailure: "DO_NOTHING" || "ROLLBACK" || "DELETE",
|
|
64
64
|
* StackPolicyBody: "STRING_VALUE",
|
|
65
65
|
* StackPolicyURL: "STRING_VALUE",
|
|
66
|
-
* Tags: [
|
|
67
|
-
* {
|
|
66
|
+
* Tags: [ // Tags
|
|
67
|
+
* { // Tag
|
|
68
68
|
* Key: "STRING_VALUE", // required
|
|
69
69
|
* Value: "STRING_VALUE", // required
|
|
70
70
|
* },
|
|
@@ -29,33 +29,33 @@ 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 = {
|
|
32
|
+
* const input = { // CreateStackInstancesInput
|
|
33
33
|
* StackSetName: "STRING_VALUE", // required
|
|
34
|
-
* Accounts: [
|
|
34
|
+
* Accounts: [ // AccountList
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
|
-
* DeploymentTargets: {
|
|
37
|
+
* DeploymentTargets: { // DeploymentTargets
|
|
38
38
|
* Accounts: [
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
41
|
* AccountsUrl: "STRING_VALUE",
|
|
42
|
-
* OrganizationalUnitIds: [
|
|
42
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
43
43
|
* "STRING_VALUE",
|
|
44
44
|
* ],
|
|
45
45
|
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
46
46
|
* },
|
|
47
|
-
* Regions: [ // required
|
|
47
|
+
* Regions: [ // RegionList // required
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
|
-
* ParameterOverrides: [
|
|
51
|
-
* {
|
|
50
|
+
* ParameterOverrides: [ // Parameters
|
|
51
|
+
* { // Parameter
|
|
52
52
|
* ParameterKey: "STRING_VALUE",
|
|
53
53
|
* ParameterValue: "STRING_VALUE",
|
|
54
54
|
* UsePreviousValue: true || false,
|
|
55
55
|
* ResolvedValue: "STRING_VALUE",
|
|
56
56
|
* },
|
|
57
57
|
* ],
|
|
58
|
-
* OperationPreferences: {
|
|
58
|
+
* OperationPreferences: { // StackSetOperationPreferences
|
|
59
59
|
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
60
60
|
* RegionOrder: [
|
|
61
61
|
* "STRING_VALUE",
|
|
@@ -26,25 +26,25 @@ 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 = {
|
|
29
|
+
* const input = { // CreateStackSetInput
|
|
30
30
|
* StackSetName: "STRING_VALUE", // required
|
|
31
31
|
* Description: "STRING_VALUE",
|
|
32
32
|
* TemplateBody: "STRING_VALUE",
|
|
33
33
|
* TemplateURL: "STRING_VALUE",
|
|
34
34
|
* StackId: "STRING_VALUE",
|
|
35
|
-
* Parameters: [
|
|
36
|
-
* {
|
|
35
|
+
* Parameters: [ // Parameters
|
|
36
|
+
* { // Parameter
|
|
37
37
|
* ParameterKey: "STRING_VALUE",
|
|
38
38
|
* ParameterValue: "STRING_VALUE",
|
|
39
39
|
* UsePreviousValue: true || false,
|
|
40
40
|
* ResolvedValue: "STRING_VALUE",
|
|
41
41
|
* },
|
|
42
42
|
* ],
|
|
43
|
-
* Capabilities: [
|
|
43
|
+
* Capabilities: [ // Capabilities
|
|
44
44
|
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
45
45
|
* ],
|
|
46
|
-
* Tags: [
|
|
47
|
-
* {
|
|
46
|
+
* Tags: [ // Tags
|
|
47
|
+
* { // Tag
|
|
48
48
|
* Key: "STRING_VALUE", // required
|
|
49
49
|
* Value: "STRING_VALUE", // required
|
|
50
50
|
* },
|
|
@@ -52,13 +52,13 @@ export interface CreateStackSetCommandOutput extends CreateStackSetOutput, __Met
|
|
|
52
52
|
* AdministrationRoleARN: "STRING_VALUE",
|
|
53
53
|
* ExecutionRoleName: "STRING_VALUE",
|
|
54
54
|
* PermissionModel: "SERVICE_MANAGED" || "SELF_MANAGED",
|
|
55
|
-
* AutoDeployment: {
|
|
55
|
+
* AutoDeployment: { // AutoDeployment
|
|
56
56
|
* Enabled: true || false,
|
|
57
57
|
* RetainStacksOnAccountRemoval: true || false,
|
|
58
58
|
* },
|
|
59
59
|
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
60
60
|
* ClientRequestToken: "STRING_VALUE",
|
|
61
|
-
* ManagedExecution: {
|
|
61
|
+
* ManagedExecution: { // ManagedExecution
|
|
62
62
|
* Active: true || false,
|
|
63
63
|
* },
|
|
64
64
|
* };
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // DeactivateTypeInput
|
|
35
35
|
* TypeName: "STRING_VALUE",
|
|
36
36
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
37
37
|
* Arn: "STRING_VALUE",
|
|
@@ -33,7 +33,7 @@ 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 = {
|
|
36
|
+
* const input = { // DeleteChangeSetInput
|
|
37
37
|
* ChangeSetName: "STRING_VALUE", // required
|
|
38
38
|
* StackName: "STRING_VALUE",
|
|
39
39
|
* };
|
|
@@ -28,9 +28,9 @@ 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 = {
|
|
31
|
+
* const input = { // DeleteStackInput
|
|
32
32
|
* StackName: "STRING_VALUE", // required
|
|
33
|
-
* RetainResources: [
|
|
33
|
+
* RetainResources: [ // RetainResources
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
36
|
* RoleARN: "STRING_VALUE",
|
|
@@ -26,25 +26,25 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteStackInstancesInput
|
|
30
30
|
* StackSetName: "STRING_VALUE", // required
|
|
31
|
-
* Accounts: [
|
|
31
|
+
* Accounts: [ // AccountList
|
|
32
32
|
* "STRING_VALUE",
|
|
33
33
|
* ],
|
|
34
|
-
* DeploymentTargets: {
|
|
34
|
+
* DeploymentTargets: { // DeploymentTargets
|
|
35
35
|
* Accounts: [
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
38
|
* AccountsUrl: "STRING_VALUE",
|
|
39
|
-
* OrganizationalUnitIds: [
|
|
39
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
43
43
|
* },
|
|
44
|
-
* Regions: [ // required
|
|
44
|
+
* Regions: [ // RegionList // required
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* OperationPreferences: {
|
|
47
|
+
* OperationPreferences: { // StackSetOperationPreferences
|
|
48
48
|
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
49
49
|
* RegionOrder: [
|
|
50
50
|
* "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DeleteStackSetInput
|
|
31
31
|
* StackSetName: "STRING_VALUE", // required
|
|
32
32
|
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
33
33
|
* };
|
|
@@ -35,7 +35,7 @@ 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 = {
|
|
38
|
+
* const input = { // DeregisterTypeInput
|
|
39
39
|
* Arn: "STRING_VALUE",
|
|
40
40
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
41
41
|
* TypeName: "STRING_VALUE",
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DescribeAccountLimitsInput
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeAccountLimitsCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DescribeChangeSetInput
|
|
31
31
|
* ChangeSetName: "STRING_VALUE", // required
|
|
32
32
|
* StackName: "STRING_VALUE",
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeChangeSetHooksInput
|
|
30
30
|
* ChangeSetName: "STRING_VALUE", // required
|
|
31
31
|
* StackName: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -43,7 +43,7 @@ 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 = {
|
|
46
|
+
* const input = { // DescribePublisherInput
|
|
47
47
|
* PublisherId: "STRING_VALUE",
|
|
48
48
|
* };
|
|
49
49
|
* const command = new DescribePublisherCommand(input);
|
|
@@ -38,7 +38,7 @@ 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 = {
|
|
41
|
+
* const input = { // DescribeStackDriftDetectionStatusInput
|
|
42
42
|
* StackDriftDetectionId: "STRING_VALUE", // required
|
|
43
43
|
* };
|
|
44
44
|
* const command = new DescribeStackDriftDetectionStatusCommand(input);
|
|
@@ -32,7 +32,7 @@ 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 = {
|
|
35
|
+
* const input = { // DescribeStackEventsInput
|
|
36
36
|
* StackName: "STRING_VALUE",
|
|
37
37
|
* NextToken: "STRING_VALUE",
|
|
38
38
|
* };
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DescribeStackInstanceInput
|
|
31
31
|
* StackSetName: "STRING_VALUE", // required
|
|
32
32
|
* StackInstanceAccount: "STRING_VALUE", // required
|
|
33
33
|
* StackInstanceRegion: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DescribeStackResourceInput
|
|
32
32
|
* StackName: "STRING_VALUE", // required
|
|
33
33
|
* LogicalResourceId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -35,9 +35,9 @@ 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 = {
|
|
38
|
+
* const input = { // DescribeStackResourceDriftsInput
|
|
39
39
|
* StackName: "STRING_VALUE", // required
|
|
40
|
-
* StackResourceDriftStatusFilters: [
|
|
40
|
+
* StackResourceDriftStatusFilters: [ // StackResourceDriftStatusFilters
|
|
41
41
|
* "IN_SYNC" || "MODIFIED" || "DELETED" || "NOT_CHECKED",
|
|
42
42
|
* ],
|
|
43
43
|
* NextToken: "STRING_VALUE",
|
|
@@ -44,7 +44,7 @@ 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 = {
|
|
47
|
+
* const input = { // DescribeStackResourcesInput
|
|
48
48
|
* StackName: "STRING_VALUE",
|
|
49
49
|
* LogicalResourceId: "STRING_VALUE",
|
|
50
50
|
* PhysicalResourceId: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeStackSetInput
|
|
30
30
|
* StackSetName: "STRING_VALUE", // required
|
|
31
31
|
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DescribeStackSetOperationInput
|
|
30
30
|
* StackSetName: "STRING_VALUE", // required
|
|
31
31
|
* OperationId: "STRING_VALUE", // required
|
|
32
32
|
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
@@ -30,7 +30,7 @@ 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 = {
|
|
33
|
+
* const input = { // DescribeStacksInput
|
|
34
34
|
* StackName: "STRING_VALUE",
|
|
35
35
|
* NextToken: "STRING_VALUE",
|
|
36
36
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DescribeTypeInput
|
|
33
33
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
34
34
|
* TypeName: "STRING_VALUE",
|
|
35
35
|
* Arn: "STRING_VALUE",
|
|
@@ -36,7 +36,7 @@ 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 = {
|
|
39
|
+
* const input = { // DescribeTypeRegistrationInput
|
|
40
40
|
* RegistrationToken: "STRING_VALUE", // required
|
|
41
41
|
* };
|
|
42
42
|
* const command = new DescribeTypeRegistrationCommand(input);
|
|
@@ -46,9 +46,9 @@ 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 = {
|
|
49
|
+
* const input = { // DetectStackDriftInput
|
|
50
50
|
* StackName: "STRING_VALUE", // required
|
|
51
|
-
* LogicalResourceIds: [
|
|
51
|
+
* LogicalResourceIds: [ // LogicalResourceIds
|
|
52
52
|
* "STRING_VALUE",
|
|
53
53
|
* ],
|
|
54
54
|
* };
|
|
@@ -37,7 +37,7 @@ 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 = {
|
|
40
|
+
* const input = { // DetectStackResourceDriftInput
|
|
41
41
|
* StackName: "STRING_VALUE", // required
|
|
42
42
|
* LogicalResourceId: "STRING_VALUE", // required
|
|
43
43
|
* };
|
|
@@ -70,11 +70,11 @@ 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 = {
|
|
73
|
+
* const input = { // DetectStackSetDriftInput
|
|
74
74
|
* StackSetName: "STRING_VALUE", // required
|
|
75
|
-
* OperationPreferences: {
|
|
75
|
+
* OperationPreferences: { // StackSetOperationPreferences
|
|
76
76
|
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
77
|
-
* RegionOrder: [
|
|
77
|
+
* RegionOrder: [ // RegionList
|
|
78
78
|
* "STRING_VALUE",
|
|
79
79
|
* ],
|
|
80
80
|
* FailureToleranceCount: Number("int"),
|
|
@@ -27,11 +27,11 @@ 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 = {
|
|
30
|
+
* const input = { // EstimateTemplateCostInput
|
|
31
31
|
* TemplateBody: "STRING_VALUE",
|
|
32
32
|
* TemplateURL: "STRING_VALUE",
|
|
33
|
-
* Parameters: [
|
|
34
|
-
* {
|
|
33
|
+
* Parameters: [ // Parameters
|
|
34
|
+
* { // Parameter
|
|
35
35
|
* ParameterKey: "STRING_VALUE",
|
|
36
36
|
* ParameterValue: "STRING_VALUE",
|
|
37
37
|
* UsePreviousValue: true || false,
|
|
@@ -36,7 +36,7 @@ export interface ExecuteChangeSetCommandOutput extends ExecuteChangeSetOutput, _
|
|
|
36
36
|
* import { CloudFormationClient, ExecuteChangeSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
37
37
|
* // const { CloudFormationClient, ExecuteChangeSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
38
38
|
* const client = new CloudFormationClient(config);
|
|
39
|
-
* const input = {
|
|
39
|
+
* const input = { // ExecuteChangeSetInput
|
|
40
40
|
* ChangeSetName: "STRING_VALUE", // required
|
|
41
41
|
* StackName: "STRING_VALUE",
|
|
42
42
|
* ClientRequestToken: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface GetStackPolicyCommandOutput extends GetStackPolicyOutput, __Met
|
|
|
27
27
|
* import { CloudFormationClient, GetStackPolicyCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, GetStackPolicyCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // GetStackPolicyInput
|
|
31
31
|
* StackName: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
33
33
|
* const command = new GetStackPolicyCommand(input);
|
|
@@ -32,7 +32,7 @@ export interface GetTemplateCommandOutput extends GetTemplateOutput, __MetadataB
|
|
|
32
32
|
* import { CloudFormationClient, GetTemplateCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
33
33
|
* // const { CloudFormationClient, GetTemplateCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
34
34
|
* const client = new CloudFormationClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // GetTemplateInput
|
|
36
36
|
* StackName: "STRING_VALUE",
|
|
37
37
|
* ChangeSetName: "STRING_VALUE",
|
|
38
38
|
* TemplateStage: "Original" || "Processed",
|
|
@@ -34,7 +34,7 @@ export interface GetTemplateSummaryCommandOutput extends GetTemplateSummaryOutpu
|
|
|
34
34
|
* import { CloudFormationClient, GetTemplateSummaryCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
35
35
|
* // const { CloudFormationClient, GetTemplateSummaryCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
36
36
|
* const client = new CloudFormationClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // GetTemplateSummaryInput
|
|
38
38
|
* TemplateBody: "STRING_VALUE",
|
|
39
39
|
* TemplateURL: "STRING_VALUE",
|
|
40
40
|
* StackName: "STRING_VALUE",
|
|
@@ -34,18 +34,18 @@ export interface ImportStacksToStackSetCommandOutput extends ImportStacksToStack
|
|
|
34
34
|
* import { CloudFormationClient, ImportStacksToStackSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
35
35
|
* // const { CloudFormationClient, ImportStacksToStackSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
36
36
|
* const client = new CloudFormationClient(config);
|
|
37
|
-
* const input = {
|
|
37
|
+
* const input = { // ImportStacksToStackSetInput
|
|
38
38
|
* StackSetName: "STRING_VALUE", // required
|
|
39
|
-
* StackIds: [
|
|
39
|
+
* StackIds: [ // StackIdList
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* StackIdsUrl: "STRING_VALUE",
|
|
43
|
-
* OrganizationalUnitIds: [
|
|
43
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
|
-
* OperationPreferences: {
|
|
46
|
+
* OperationPreferences: { // StackSetOperationPreferences
|
|
47
47
|
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
48
|
-
* RegionOrder: [
|
|
48
|
+
* RegionOrder: [ // RegionList
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* FailureToleranceCount: Number("int"),
|
|
@@ -27,7 +27,7 @@ export interface ListChangeSetsCommandOutput extends ListChangeSetsOutput, __Met
|
|
|
27
27
|
* import { CloudFormationClient, ListChangeSetsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, ListChangeSetsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListChangeSetsInput
|
|
31
31
|
* StackName: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* };
|
|
@@ -32,7 +32,7 @@ export interface ListExportsCommandOutput extends ListExportsOutput, __MetadataB
|
|
|
32
32
|
* import { CloudFormationClient, ListExportsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
33
33
|
* // const { CloudFormationClient, ListExportsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
34
34
|
* const client = new CloudFormationClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // ListExportsInput
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
37
|
* };
|
|
38
38
|
* const command = new ListExportsCommand(input);
|
|
@@ -31,7 +31,7 @@ export interface ListImportsCommandOutput extends ListImportsOutput, __MetadataB
|
|
|
31
31
|
* import { CloudFormationClient, ListImportsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
32
32
|
* // const { CloudFormationClient, ListImportsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
33
33
|
* const client = new CloudFormationClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // ListImportsInput
|
|
35
35
|
* ExportName: "STRING_VALUE", // required
|
|
36
36
|
* NextToken: "STRING_VALUE",
|
|
37
37
|
* };
|
|
@@ -27,12 +27,12 @@ export interface ListStackInstancesCommandOutput extends ListStackInstancesOutpu
|
|
|
27
27
|
* import { CloudFormationClient, ListStackInstancesCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, ListStackInstancesCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // ListStackInstancesInput
|
|
31
31
|
* StackSetName: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
|
-
* Filters: [
|
|
35
|
-
* {
|
|
34
|
+
* Filters: [ // StackInstanceFilters
|
|
35
|
+
* { // StackInstanceFilter
|
|
36
36
|
* Name: "DETAILED_STATUS" || "LAST_OPERATION_ID",
|
|
37
37
|
* Values: "STRING_VALUE",
|
|
38
38
|
* },
|
|
@@ -28,7 +28,7 @@ export interface ListStackResourcesCommandOutput extends ListStackResourcesOutpu
|
|
|
28
28
|
* import { CloudFormationClient, ListStackResourcesCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
29
29
|
* // const { CloudFormationClient, ListStackResourcesCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
30
30
|
* const client = new CloudFormationClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ListStackResourcesInput
|
|
32
32
|
* StackName: "STRING_VALUE", // required
|
|
33
33
|
* NextToken: "STRING_VALUE",
|
|
34
34
|
* };
|
|
@@ -26,14 +26,14 @@ export interface ListStackSetOperationResultsCommandOutput extends ListStackSetO
|
|
|
26
26
|
* import { CloudFormationClient, ListStackSetOperationResultsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, ListStackSetOperationResultsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListStackSetOperationResultsInput
|
|
30
30
|
* StackSetName: "STRING_VALUE", // required
|
|
31
31
|
* OperationId: "STRING_VALUE", // required
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
33
33
|
* MaxResults: Number("int"),
|
|
34
34
|
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
35
|
-
* Filters: [
|
|
36
|
-
* {
|
|
35
|
+
* Filters: [ // OperationResultFilters
|
|
36
|
+
* { // OperationResultFilter
|
|
37
37
|
* Name: "OPERATION_RESULT_STATUS",
|
|
38
38
|
* Values: "STRING_VALUE",
|
|
39
39
|
* },
|
|
@@ -26,7 +26,7 @@ export interface ListStackSetOperationsCommandOutput extends ListStackSetOperati
|
|
|
26
26
|
* import { CloudFormationClient, ListStackSetOperationsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, ListStackSetOperationsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListStackSetOperationsInput
|
|
30
30
|
* StackSetName: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -44,7 +44,7 @@ export interface ListStackSetsCommandOutput extends ListStackSetsOutput, __Metad
|
|
|
44
44
|
* import { CloudFormationClient, ListStackSetsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
45
45
|
* // const { CloudFormationClient, ListStackSetsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
46
46
|
* const client = new CloudFormationClient(config);
|
|
47
|
-
* const input = {
|
|
47
|
+
* const input = { // ListStackSetsInput
|
|
48
48
|
* NextToken: "STRING_VALUE",
|
|
49
49
|
* MaxResults: Number("int"),
|
|
50
50
|
* Status: "ACTIVE" || "DELETED",
|
|
@@ -30,9 +30,9 @@ export interface ListStacksCommandOutput extends ListStacksOutput, __MetadataBea
|
|
|
30
30
|
* import { CloudFormationClient, ListStacksCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
31
31
|
* // const { CloudFormationClient, ListStacksCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
32
32
|
* const client = new CloudFormationClient(config);
|
|
33
|
-
* const input = {
|
|
33
|
+
* const input = { // ListStacksInput
|
|
34
34
|
* NextToken: "STRING_VALUE",
|
|
35
|
-
* StackStatusFilter: [
|
|
35
|
+
* StackStatusFilter: [ // StackStatusFilter
|
|
36
36
|
* "CREATE_IN_PROGRESS" || "CREATE_FAILED" || "CREATE_COMPLETE" || "ROLLBACK_IN_PROGRESS" || "ROLLBACK_FAILED" || "ROLLBACK_COMPLETE" || "DELETE_IN_PROGRESS" || "DELETE_FAILED" || "DELETE_COMPLETE" || "UPDATE_IN_PROGRESS" || "UPDATE_COMPLETE_CLEANUP_IN_PROGRESS" || "UPDATE_COMPLETE" || "UPDATE_FAILED" || "UPDATE_ROLLBACK_IN_PROGRESS" || "UPDATE_ROLLBACK_FAILED" || "UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS" || "UPDATE_ROLLBACK_COMPLETE" || "REVIEW_IN_PROGRESS" || "IMPORT_IN_PROGRESS" || "IMPORT_COMPLETE" || "IMPORT_ROLLBACK_IN_PROGRESS" || "IMPORT_ROLLBACK_FAILED" || "IMPORT_ROLLBACK_COMPLETE",
|
|
37
37
|
* ],
|
|
38
38
|
* };
|
|
@@ -26,7 +26,7 @@ export interface ListTypeRegistrationsCommandOutput extends ListTypeRegistration
|
|
|
26
26
|
* import { CloudFormationClient, ListTypeRegistrationsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, ListTypeRegistrationsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTypeRegistrationsInput
|
|
30
30
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
31
31
|
* TypeName: "STRING_VALUE",
|
|
32
32
|
* TypeArn: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface ListTypeVersionsCommandOutput extends ListTypeVersionsOutput, _
|
|
|
26
26
|
* import { CloudFormationClient, ListTypeVersionsCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, ListTypeVersionsCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTypeVersionsInput
|
|
30
30
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
31
31
|
* TypeName: "STRING_VALUE",
|
|
32
32
|
* Arn: "STRING_VALUE",
|
|
@@ -26,12 +26,12 @@ export interface ListTypesCommandOutput extends ListTypesOutput, __MetadataBeare
|
|
|
26
26
|
* import { CloudFormationClient, ListTypesCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, ListTypesCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // ListTypesInput
|
|
30
30
|
* Visibility: "PUBLIC" || "PRIVATE",
|
|
31
31
|
* ProvisioningType: "NON_PROVISIONABLE" || "IMMUTABLE" || "FULLY_MUTABLE",
|
|
32
32
|
* DeprecatedStatus: "LIVE" || "DEPRECATED",
|
|
33
33
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
34
|
-
* Filters: {
|
|
34
|
+
* Filters: { // TypeFilters
|
|
35
35
|
* Category: "REGISTERED" || "ACTIVATED" || "THIRD_PARTY" || "AWS_TYPES",
|
|
36
36
|
* PublisherId: "STRING_VALUE",
|
|
37
37
|
* TypeNamePrefix: "STRING_VALUE",
|
|
@@ -29,7 +29,7 @@ export interface PublishTypeCommandOutput extends PublishTypeOutput, __MetadataB
|
|
|
29
29
|
* import { CloudFormationClient, PublishTypeCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
30
30
|
* // const { CloudFormationClient, PublishTypeCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
31
31
|
* const client = new CloudFormationClient(config);
|
|
32
|
-
* const input = {
|
|
32
|
+
* const input = { // PublishTypeInput
|
|
33
33
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
34
34
|
* Arn: "STRING_VALUE",
|
|
35
35
|
* TypeName: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface RecordHandlerProgressCommandOutput extends RecordHandlerProgres
|
|
|
27
27
|
* import { CloudFormationClient, RecordHandlerProgressCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, RecordHandlerProgressCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // RecordHandlerProgressInput
|
|
31
31
|
* BearerToken: "STRING_VALUE", // required
|
|
32
32
|
* OperationStatus: "PENDING" || "IN_PROGRESS" || "SUCCESS" || "FAILED", // required
|
|
33
33
|
* CurrentOperationStatus: "PENDING" || "IN_PROGRESS" || "SUCCESS" || "FAILED",
|
|
@@ -32,7 +32,7 @@ export interface RegisterPublisherCommandOutput extends RegisterPublisherOutput,
|
|
|
32
32
|
* import { CloudFormationClient, RegisterPublisherCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
33
33
|
* // const { CloudFormationClient, RegisterPublisherCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
34
34
|
* const client = new CloudFormationClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // RegisterPublisherInput
|
|
36
36
|
* AcceptTermsAndConditions: true || false,
|
|
37
37
|
* ConnectionArn: "STRING_VALUE",
|
|
38
38
|
* };
|
|
@@ -52,11 +52,11 @@ export interface RegisterTypeCommandOutput extends RegisterTypeOutput, __Metadat
|
|
|
52
52
|
* import { CloudFormationClient, RegisterTypeCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
53
53
|
* // const { CloudFormationClient, RegisterTypeCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
54
54
|
* const client = new CloudFormationClient(config);
|
|
55
|
-
* const input = {
|
|
55
|
+
* const input = { // RegisterTypeInput
|
|
56
56
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
57
57
|
* TypeName: "STRING_VALUE", // required
|
|
58
58
|
* SchemaHandlerPackage: "STRING_VALUE", // required
|
|
59
|
-
* LoggingConfig: {
|
|
59
|
+
* LoggingConfig: { // LoggingConfig
|
|
60
60
|
* LogRoleArn: "STRING_VALUE", // required
|
|
61
61
|
* LogGroupName: "STRING_VALUE", // required
|
|
62
62
|
* },
|
|
@@ -60,7 +60,7 @@ export interface RollbackStackCommandOutput extends RollbackStackOutput, __Metad
|
|
|
60
60
|
* import { CloudFormationClient, RollbackStackCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
61
61
|
* // const { CloudFormationClient, RollbackStackCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
62
62
|
* const client = new CloudFormationClient(config);
|
|
63
|
-
* const input = {
|
|
63
|
+
* const input = { // RollbackStackInput
|
|
64
64
|
* StackName: "STRING_VALUE", // required
|
|
65
65
|
* RoleARN: "STRING_VALUE",
|
|
66
66
|
* ClientRequestToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ export interface SetStackPolicyCommandOutput extends __MetadataBearer {
|
|
|
26
26
|
* import { CloudFormationClient, SetStackPolicyCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
27
27
|
* // const { CloudFormationClient, SetStackPolicyCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
28
28
|
* const client = new CloudFormationClient(config);
|
|
29
|
-
* const input = {
|
|
29
|
+
* const input = { // SetStackPolicyInput
|
|
30
30
|
* StackName: "STRING_VALUE", // required
|
|
31
31
|
* StackPolicyBody: "STRING_VALUE",
|
|
32
32
|
* StackPolicyURL: "STRING_VALUE",
|
|
@@ -38,7 +38,7 @@ export interface SetTypeConfigurationCommandOutput extends SetTypeConfigurationO
|
|
|
38
38
|
* import { CloudFormationClient, SetTypeConfigurationCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
39
39
|
* // const { CloudFormationClient, SetTypeConfigurationCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
40
40
|
* const client = new CloudFormationClient(config);
|
|
41
|
-
* const input = {
|
|
41
|
+
* const input = { // SetTypeConfigurationInput
|
|
42
42
|
* TypeArn: "STRING_VALUE",
|
|
43
43
|
* Configuration: "STRING_VALUE", // required
|
|
44
44
|
* ConfigurationAlias: "STRING_VALUE",
|
|
@@ -27,7 +27,7 @@ export interface SetTypeDefaultVersionCommandOutput extends SetTypeDefaultVersio
|
|
|
27
27
|
* import { CloudFormationClient, SetTypeDefaultVersionCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
28
28
|
* // const { CloudFormationClient, SetTypeDefaultVersionCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
29
29
|
* const client = new CloudFormationClient(config);
|
|
30
|
-
* const input = {
|
|
30
|
+
* const input = { // SetTypeDefaultVersionInput
|
|
31
31
|
* Arn: "STRING_VALUE",
|
|
32
32
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
33
33
|
* TypeName: "STRING_VALUE",
|
|
@@ -31,7 +31,7 @@ export interface SignalResourceCommandOutput extends __MetadataBearer {
|
|
|
31
31
|
* import { CloudFormationClient, SignalResourceCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
32
32
|
* // const { CloudFormationClient, SignalResourceCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
33
33
|
* const client = new CloudFormationClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // SignalResourceInput
|
|
35
35
|
* StackName: "STRING_VALUE", // required
|
|
36
36
|
* LogicalResourceId: "STRING_VALUE", // required
|
|
37
37
|
* UniqueId: "STRING_VALUE", // required
|
|
@@ -28,7 +28,7 @@ export interface StopStackSetOperationCommandOutput extends StopStackSetOperatio
|
|
|
28
28
|
* import { CloudFormationClient, StopStackSetOperationCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
29
29
|
* // const { CloudFormationClient, StopStackSetOperationCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
30
30
|
* const client = new CloudFormationClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // StopStackSetOperationInput
|
|
32
32
|
* StackSetName: "STRING_VALUE", // required
|
|
33
33
|
* OperationId: "STRING_VALUE", // required
|
|
34
34
|
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
@@ -48,7 +48,7 @@ export interface TestTypeCommandOutput extends TestTypeOutput, __MetadataBearer
|
|
|
48
48
|
* import { CloudFormationClient, TestTypeCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
49
49
|
* // const { CloudFormationClient, TestTypeCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
50
50
|
* const client = new CloudFormationClient(config);
|
|
51
|
-
* const input = {
|
|
51
|
+
* const input = { // TestTypeInput
|
|
52
52
|
* Arn: "STRING_VALUE",
|
|
53
53
|
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
54
54
|
* TypeName: "STRING_VALUE",
|
|
@@ -31,31 +31,31 @@ export interface UpdateStackCommandOutput extends UpdateStackOutput, __MetadataB
|
|
|
31
31
|
* import { CloudFormationClient, UpdateStackCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
32
32
|
* // const { CloudFormationClient, UpdateStackCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
33
33
|
* const client = new CloudFormationClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // UpdateStackInput
|
|
35
35
|
* StackName: "STRING_VALUE", // required
|
|
36
36
|
* TemplateBody: "STRING_VALUE",
|
|
37
37
|
* TemplateURL: "STRING_VALUE",
|
|
38
38
|
* UsePreviousTemplate: true || false,
|
|
39
39
|
* StackPolicyDuringUpdateBody: "STRING_VALUE",
|
|
40
40
|
* StackPolicyDuringUpdateURL: "STRING_VALUE",
|
|
41
|
-
* Parameters: [
|
|
42
|
-
* {
|
|
41
|
+
* Parameters: [ // Parameters
|
|
42
|
+
* { // Parameter
|
|
43
43
|
* ParameterKey: "STRING_VALUE",
|
|
44
44
|
* ParameterValue: "STRING_VALUE",
|
|
45
45
|
* UsePreviousValue: true || false,
|
|
46
46
|
* ResolvedValue: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* ],
|
|
49
|
-
* Capabilities: [
|
|
49
|
+
* Capabilities: [ // Capabilities
|
|
50
50
|
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
51
51
|
* ],
|
|
52
|
-
* ResourceTypes: [
|
|
52
|
+
* ResourceTypes: [ // ResourceTypes
|
|
53
53
|
* "STRING_VALUE",
|
|
54
54
|
* ],
|
|
55
55
|
* RoleARN: "STRING_VALUE",
|
|
56
|
-
* RollbackConfiguration: {
|
|
57
|
-
* RollbackTriggers: [
|
|
58
|
-
* {
|
|
56
|
+
* RollbackConfiguration: { // RollbackConfiguration
|
|
57
|
+
* RollbackTriggers: [ // RollbackTriggers
|
|
58
|
+
* { // RollbackTrigger
|
|
59
59
|
* Arn: "STRING_VALUE", // required
|
|
60
60
|
* Type: "STRING_VALUE", // required
|
|
61
61
|
* },
|
|
@@ -64,11 +64,11 @@ export interface UpdateStackCommandOutput extends UpdateStackOutput, __MetadataB
|
|
|
64
64
|
* },
|
|
65
65
|
* StackPolicyBody: "STRING_VALUE",
|
|
66
66
|
* StackPolicyURL: "STRING_VALUE",
|
|
67
|
-
* NotificationARNs: [
|
|
67
|
+
* NotificationARNs: [ // NotificationARNs
|
|
68
68
|
* "STRING_VALUE",
|
|
69
69
|
* ],
|
|
70
|
-
* Tags: [
|
|
71
|
-
* {
|
|
70
|
+
* Tags: [ // Tags
|
|
71
|
+
* { // Tag
|
|
72
72
|
* Key: "STRING_VALUE", // required
|
|
73
73
|
* Value: "STRING_VALUE", // required
|
|
74
74
|
* },
|
|
@@ -39,33 +39,33 @@ export interface UpdateStackInstancesCommandOutput extends UpdateStackInstancesO
|
|
|
39
39
|
* import { CloudFormationClient, UpdateStackInstancesCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
40
40
|
* // const { CloudFormationClient, UpdateStackInstancesCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
41
41
|
* const client = new CloudFormationClient(config);
|
|
42
|
-
* const input = {
|
|
42
|
+
* const input = { // UpdateStackInstancesInput
|
|
43
43
|
* StackSetName: "STRING_VALUE", // required
|
|
44
|
-
* Accounts: [
|
|
44
|
+
* Accounts: [ // AccountList
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* DeploymentTargets: {
|
|
47
|
+
* DeploymentTargets: { // DeploymentTargets
|
|
48
48
|
* Accounts: [
|
|
49
49
|
* "STRING_VALUE",
|
|
50
50
|
* ],
|
|
51
51
|
* AccountsUrl: "STRING_VALUE",
|
|
52
|
-
* OrganizationalUnitIds: [
|
|
52
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
53
53
|
* "STRING_VALUE",
|
|
54
54
|
* ],
|
|
55
55
|
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
56
56
|
* },
|
|
57
|
-
* Regions: [ // required
|
|
57
|
+
* Regions: [ // RegionList // required
|
|
58
58
|
* "STRING_VALUE",
|
|
59
59
|
* ],
|
|
60
|
-
* ParameterOverrides: [
|
|
61
|
-
* {
|
|
60
|
+
* ParameterOverrides: [ // Parameters
|
|
61
|
+
* { // Parameter
|
|
62
62
|
* ParameterKey: "STRING_VALUE",
|
|
63
63
|
* ParameterValue: "STRING_VALUE",
|
|
64
64
|
* UsePreviousValue: true || false,
|
|
65
65
|
* ResolvedValue: "STRING_VALUE",
|
|
66
66
|
* },
|
|
67
67
|
* ],
|
|
68
|
-
* OperationPreferences: {
|
|
68
|
+
* OperationPreferences: { // StackSetOperationPreferences
|
|
69
69
|
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
70
70
|
* RegionOrder: [
|
|
71
71
|
* "STRING_VALUE",
|
|
@@ -31,32 +31,32 @@ export interface UpdateStackSetCommandOutput extends UpdateStackSetOutput, __Met
|
|
|
31
31
|
* import { CloudFormationClient, UpdateStackSetCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
32
32
|
* // const { CloudFormationClient, UpdateStackSetCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
33
33
|
* const client = new CloudFormationClient(config);
|
|
34
|
-
* const input = {
|
|
34
|
+
* const input = { // UpdateStackSetInput
|
|
35
35
|
* StackSetName: "STRING_VALUE", // required
|
|
36
36
|
* Description: "STRING_VALUE",
|
|
37
37
|
* TemplateBody: "STRING_VALUE",
|
|
38
38
|
* TemplateURL: "STRING_VALUE",
|
|
39
39
|
* UsePreviousTemplate: true || false,
|
|
40
|
-
* Parameters: [
|
|
41
|
-
* {
|
|
40
|
+
* Parameters: [ // Parameters
|
|
41
|
+
* { // Parameter
|
|
42
42
|
* ParameterKey: "STRING_VALUE",
|
|
43
43
|
* ParameterValue: "STRING_VALUE",
|
|
44
44
|
* UsePreviousValue: true || false,
|
|
45
45
|
* ResolvedValue: "STRING_VALUE",
|
|
46
46
|
* },
|
|
47
47
|
* ],
|
|
48
|
-
* Capabilities: [
|
|
48
|
+
* Capabilities: [ // Capabilities
|
|
49
49
|
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
50
50
|
* ],
|
|
51
|
-
* Tags: [
|
|
52
|
-
* {
|
|
51
|
+
* Tags: [ // Tags
|
|
52
|
+
* { // Tag
|
|
53
53
|
* Key: "STRING_VALUE", // required
|
|
54
54
|
* Value: "STRING_VALUE", // required
|
|
55
55
|
* },
|
|
56
56
|
* ],
|
|
57
|
-
* OperationPreferences: {
|
|
57
|
+
* OperationPreferences: { // StackSetOperationPreferences
|
|
58
58
|
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
59
|
-
* RegionOrder: [
|
|
59
|
+
* RegionOrder: [ // RegionList
|
|
60
60
|
* "STRING_VALUE",
|
|
61
61
|
* ],
|
|
62
62
|
* FailureToleranceCount: Number("int"),
|
|
@@ -66,18 +66,18 @@ export interface UpdateStackSetCommandOutput extends UpdateStackSetOutput, __Met
|
|
|
66
66
|
* },
|
|
67
67
|
* AdministrationRoleARN: "STRING_VALUE",
|
|
68
68
|
* ExecutionRoleName: "STRING_VALUE",
|
|
69
|
-
* DeploymentTargets: {
|
|
70
|
-
* Accounts: [
|
|
69
|
+
* DeploymentTargets: { // DeploymentTargets
|
|
70
|
+
* Accounts: [ // AccountList
|
|
71
71
|
* "STRING_VALUE",
|
|
72
72
|
* ],
|
|
73
73
|
* AccountsUrl: "STRING_VALUE",
|
|
74
|
-
* OrganizationalUnitIds: [
|
|
74
|
+
* OrganizationalUnitIds: [ // OrganizationalUnitIdList
|
|
75
75
|
* "STRING_VALUE",
|
|
76
76
|
* ],
|
|
77
77
|
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
78
78
|
* },
|
|
79
79
|
* PermissionModel: "SERVICE_MANAGED" || "SELF_MANAGED",
|
|
80
|
-
* AutoDeployment: {
|
|
80
|
+
* AutoDeployment: { // AutoDeployment
|
|
81
81
|
* Enabled: true || false,
|
|
82
82
|
* RetainStacksOnAccountRemoval: true || false,
|
|
83
83
|
* },
|
|
@@ -89,7 +89,7 @@ export interface UpdateStackSetCommandOutput extends UpdateStackSetOutput, __Met
|
|
|
89
89
|
* "STRING_VALUE",
|
|
90
90
|
* ],
|
|
91
91
|
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
92
|
-
* ManagedExecution: {
|
|
92
|
+
* ManagedExecution: { // ManagedExecution
|
|
93
93
|
* Active: true || false,
|
|
94
94
|
* },
|
|
95
95
|
* };
|
|
@@ -32,7 +32,7 @@ export interface UpdateTerminationProtectionCommandOutput extends UpdateTerminat
|
|
|
32
32
|
* import { CloudFormationClient, UpdateTerminationProtectionCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
33
33
|
* // const { CloudFormationClient, UpdateTerminationProtectionCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
34
34
|
* const client = new CloudFormationClient(config);
|
|
35
|
-
* const input = {
|
|
35
|
+
* const input = { // UpdateTerminationProtectionInput
|
|
36
36
|
* EnableTerminationProtection: true || false, // required
|
|
37
37
|
* StackName: "STRING_VALUE", // required
|
|
38
38
|
* };
|
|
@@ -28,7 +28,7 @@ export interface ValidateTemplateCommandOutput extends ValidateTemplateOutput, _
|
|
|
28
28
|
* import { CloudFormationClient, ValidateTemplateCommand } from "@aws-sdk/client-cloudformation"; // ES Modules import
|
|
29
29
|
* // const { CloudFormationClient, ValidateTemplateCommand } = require("@aws-sdk/client-cloudformation"); // CommonJS import
|
|
30
30
|
* const client = new CloudFormationClient(config);
|
|
31
|
-
* const input = {
|
|
31
|
+
* const input = { // ValidateTemplateInput
|
|
32
32
|
* TemplateBody: "STRING_VALUE",
|
|
33
33
|
* TemplateURL: "STRING_VALUE",
|
|
34
34
|
* };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|