@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
|
@@ -36,6 +36,12 @@ 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 = {
|
|
40
|
+
* ChangeSetName: "STRING_VALUE", // required
|
|
41
|
+
* StackName: "STRING_VALUE",
|
|
42
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
43
|
+
* DisableRollback: true || false,
|
|
44
|
+
* };
|
|
39
45
|
* const command = new ExecuteChangeSetCommand(input);
|
|
40
46
|
* const response = await client.send(command);
|
|
41
47
|
* ```
|
|
@@ -27,6 +27,9 @@ 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 = {
|
|
31
|
+
* StackName: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
30
33
|
* const command = new GetStackPolicyCommand(input);
|
|
31
34
|
* const response = await client.send(command);
|
|
32
35
|
* ```
|
|
@@ -32,6 +32,11 @@ 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 = {
|
|
36
|
+
* StackName: "STRING_VALUE",
|
|
37
|
+
* ChangeSetName: "STRING_VALUE",
|
|
38
|
+
* TemplateStage: "Original" || "Processed",
|
|
39
|
+
* };
|
|
35
40
|
* const command = new GetTemplateCommand(input);
|
|
36
41
|
* const response = await client.send(command);
|
|
37
42
|
* ```
|
|
@@ -34,6 +34,13 @@ 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 = {
|
|
38
|
+
* TemplateBody: "STRING_VALUE",
|
|
39
|
+
* TemplateURL: "STRING_VALUE",
|
|
40
|
+
* StackName: "STRING_VALUE",
|
|
41
|
+
* StackSetName: "STRING_VALUE",
|
|
42
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
43
|
+
* };
|
|
37
44
|
* const command = new GetTemplateSummaryCommand(input);
|
|
38
45
|
* const response = await client.send(command);
|
|
39
46
|
* ```
|
|
@@ -34,6 +34,28 @@ 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 = {
|
|
38
|
+
* StackSetName: "STRING_VALUE", // required
|
|
39
|
+
* StackIds: [
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* StackIdsUrl: "STRING_VALUE",
|
|
43
|
+
* OrganizationalUnitIds: [
|
|
44
|
+
* "STRING_VALUE",
|
|
45
|
+
* ],
|
|
46
|
+
* OperationPreferences: {
|
|
47
|
+
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
48
|
+
* RegionOrder: [
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* FailureToleranceCount: Number("int"),
|
|
52
|
+
* FailureTolerancePercentage: Number("int"),
|
|
53
|
+
* MaxConcurrentCount: Number("int"),
|
|
54
|
+
* MaxConcurrentPercentage: Number("int"),
|
|
55
|
+
* },
|
|
56
|
+
* OperationId: "STRING_VALUE",
|
|
57
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
58
|
+
* };
|
|
37
59
|
* const command = new ImportStacksToStackSetCommand(input);
|
|
38
60
|
* const response = await client.send(command);
|
|
39
61
|
* ```
|
|
@@ -27,6 +27,10 @@ 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 = {
|
|
31
|
+
* StackName: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
30
34
|
* const command = new ListChangeSetsCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -32,6 +32,9 @@ 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 = {
|
|
36
|
+
* NextToken: "STRING_VALUE",
|
|
37
|
+
* };
|
|
35
38
|
* const command = new ListExportsCommand(input);
|
|
36
39
|
* const response = await client.send(command);
|
|
37
40
|
* ```
|
|
@@ -31,6 +31,10 @@ 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 = {
|
|
35
|
+
* ExportName: "STRING_VALUE", // required
|
|
36
|
+
* NextToken: "STRING_VALUE",
|
|
37
|
+
* };
|
|
34
38
|
* const command = new ListImportsCommand(input);
|
|
35
39
|
* const response = await client.send(command);
|
|
36
40
|
* ```
|
|
@@ -27,6 +27,20 @@ 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 = {
|
|
31
|
+
* StackSetName: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* Filters: [
|
|
35
|
+
* {
|
|
36
|
+
* Name: "DETAILED_STATUS" || "LAST_OPERATION_ID",
|
|
37
|
+
* Values: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* ],
|
|
40
|
+
* StackInstanceAccount: "STRING_VALUE",
|
|
41
|
+
* StackInstanceRegion: "STRING_VALUE",
|
|
42
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
43
|
+
* };
|
|
30
44
|
* const command = new ListStackInstancesCommand(input);
|
|
31
45
|
* const response = await client.send(command);
|
|
32
46
|
* ```
|
|
@@ -28,6 +28,10 @@ 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 = {
|
|
32
|
+
* StackName: "STRING_VALUE", // required
|
|
33
|
+
* NextToken: "STRING_VALUE",
|
|
34
|
+
* };
|
|
31
35
|
* const command = new ListStackResourcesCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -26,6 +26,19 @@ 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 = {
|
|
30
|
+
* StackSetName: "STRING_VALUE", // required
|
|
31
|
+
* OperationId: "STRING_VALUE", // required
|
|
32
|
+
* NextToken: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
35
|
+
* Filters: [
|
|
36
|
+
* {
|
|
37
|
+
* Name: "OPERATION_RESULT_STATUS",
|
|
38
|
+
* Values: "STRING_VALUE",
|
|
39
|
+
* },
|
|
40
|
+
* ],
|
|
41
|
+
* };
|
|
29
42
|
* const command = new ListStackSetOperationResultsCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -26,6 +26,12 @@ 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 = {
|
|
30
|
+
* StackSetName: "STRING_VALUE", // required
|
|
31
|
+
* NextToken: "STRING_VALUE",
|
|
32
|
+
* MaxResults: Number("int"),
|
|
33
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
34
|
+
* };
|
|
29
35
|
* const command = new ListStackSetOperationsCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -44,6 +44,12 @@ 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 = {
|
|
48
|
+
* NextToken: "STRING_VALUE",
|
|
49
|
+
* MaxResults: Number("int"),
|
|
50
|
+
* Status: "ACTIVE" || "DELETED",
|
|
51
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
52
|
+
* };
|
|
47
53
|
* const command = new ListStackSetsCommand(input);
|
|
48
54
|
* const response = await client.send(command);
|
|
49
55
|
* ```
|
|
@@ -30,6 +30,12 @@ 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 = {
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* StackStatusFilter: [
|
|
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
|
+
* ],
|
|
38
|
+
* };
|
|
33
39
|
* const command = new ListStacksCommand(input);
|
|
34
40
|
* const response = await client.send(command);
|
|
35
41
|
* ```
|
|
@@ -26,6 +26,14 @@ 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 = {
|
|
30
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
31
|
+
* TypeName: "STRING_VALUE",
|
|
32
|
+
* TypeArn: "STRING_VALUE",
|
|
33
|
+
* RegistrationStatusFilter: "COMPLETE" || "IN_PROGRESS" || "FAILED",
|
|
34
|
+
* MaxResults: Number("int"),
|
|
35
|
+
* NextToken: "STRING_VALUE",
|
|
36
|
+
* };
|
|
29
37
|
* const command = new ListTypeRegistrationsCommand(input);
|
|
30
38
|
* const response = await client.send(command);
|
|
31
39
|
* ```
|
|
@@ -26,6 +26,15 @@ 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 = {
|
|
30
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
31
|
+
* TypeName: "STRING_VALUE",
|
|
32
|
+
* Arn: "STRING_VALUE",
|
|
33
|
+
* MaxResults: Number("int"),
|
|
34
|
+
* NextToken: "STRING_VALUE",
|
|
35
|
+
* DeprecatedStatus: "LIVE" || "DEPRECATED",
|
|
36
|
+
* PublisherId: "STRING_VALUE",
|
|
37
|
+
* };
|
|
29
38
|
* const command = new ListTypeVersionsCommand(input);
|
|
30
39
|
* const response = await client.send(command);
|
|
31
40
|
* ```
|
|
@@ -26,6 +26,19 @@ 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 = {
|
|
30
|
+
* Visibility: "PUBLIC" || "PRIVATE",
|
|
31
|
+
* ProvisioningType: "NON_PROVISIONABLE" || "IMMUTABLE" || "FULLY_MUTABLE",
|
|
32
|
+
* DeprecatedStatus: "LIVE" || "DEPRECATED",
|
|
33
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
34
|
+
* Filters: {
|
|
35
|
+
* Category: "REGISTERED" || "ACTIVATED" || "THIRD_PARTY" || "AWS_TYPES",
|
|
36
|
+
* PublisherId: "STRING_VALUE",
|
|
37
|
+
* TypeNamePrefix: "STRING_VALUE",
|
|
38
|
+
* },
|
|
39
|
+
* MaxResults: Number("int"),
|
|
40
|
+
* NextToken: "STRING_VALUE",
|
|
41
|
+
* };
|
|
29
42
|
* const command = new ListTypesCommand(input);
|
|
30
43
|
* const response = await client.send(command);
|
|
31
44
|
* ```
|
|
@@ -29,6 +29,12 @@ 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 = {
|
|
33
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
34
|
+
* Arn: "STRING_VALUE",
|
|
35
|
+
* TypeName: "STRING_VALUE",
|
|
36
|
+
* PublicVersionNumber: "STRING_VALUE",
|
|
37
|
+
* };
|
|
32
38
|
* const command = new PublishTypeCommand(input);
|
|
33
39
|
* const response = await client.send(command);
|
|
34
40
|
* ```
|
|
@@ -27,6 +27,15 @@ 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 = {
|
|
31
|
+
* BearerToken: "STRING_VALUE", // required
|
|
32
|
+
* OperationStatus: "PENDING" || "IN_PROGRESS" || "SUCCESS" || "FAILED", // required
|
|
33
|
+
* CurrentOperationStatus: "PENDING" || "IN_PROGRESS" || "SUCCESS" || "FAILED",
|
|
34
|
+
* StatusMessage: "STRING_VALUE",
|
|
35
|
+
* ErrorCode: "NotUpdatable" || "InvalidRequest" || "AccessDenied" || "InvalidCredentials" || "AlreadyExists" || "NotFound" || "ResourceConflict" || "Throttling" || "ServiceLimitExceeded" || "NotStabilized" || "GeneralServiceException" || "ServiceInternalError" || "NetworkFailure" || "InternalFailure" || "InvalidTypeConfiguration" || "HandlerInternalFailure" || "NonCompliant" || "Unknown" || "UnsupportedTarget",
|
|
36
|
+
* ResourceModel: "STRING_VALUE",
|
|
37
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
30
39
|
* const command = new RecordHandlerProgressCommand(input);
|
|
31
40
|
* const response = await client.send(command);
|
|
32
41
|
* ```
|
|
@@ -32,6 +32,10 @@ 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 = {
|
|
36
|
+
* AcceptTermsAndConditions: true || false,
|
|
37
|
+
* ConnectionArn: "STRING_VALUE",
|
|
38
|
+
* };
|
|
35
39
|
* const command = new RegisterPublisherCommand(input);
|
|
36
40
|
* const response = await client.send(command);
|
|
37
41
|
* ```
|
|
@@ -52,6 +52,17 @@ 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 = {
|
|
56
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
57
|
+
* TypeName: "STRING_VALUE", // required
|
|
58
|
+
* SchemaHandlerPackage: "STRING_VALUE", // required
|
|
59
|
+
* LoggingConfig: {
|
|
60
|
+
* LogRoleArn: "STRING_VALUE", // required
|
|
61
|
+
* LogGroupName: "STRING_VALUE", // required
|
|
62
|
+
* },
|
|
63
|
+
* ExecutionRoleArn: "STRING_VALUE",
|
|
64
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
65
|
+
* };
|
|
55
66
|
* const command = new RegisterTypeCommand(input);
|
|
56
67
|
* const response = await client.send(command);
|
|
57
68
|
* ```
|
|
@@ -60,6 +60,11 @@ 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 = {
|
|
64
|
+
* StackName: "STRING_VALUE", // required
|
|
65
|
+
* RoleARN: "STRING_VALUE",
|
|
66
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
67
|
+
* };
|
|
63
68
|
* const command = new RollbackStackCommand(input);
|
|
64
69
|
* const response = await client.send(command);
|
|
65
70
|
* ```
|
|
@@ -26,6 +26,11 @@ 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 = {
|
|
30
|
+
* StackName: "STRING_VALUE", // required
|
|
31
|
+
* StackPolicyBody: "STRING_VALUE",
|
|
32
|
+
* StackPolicyURL: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new SetStackPolicyCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -38,6 +38,13 @@ 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 = {
|
|
42
|
+
* TypeArn: "STRING_VALUE",
|
|
43
|
+
* Configuration: "STRING_VALUE", // required
|
|
44
|
+
* ConfigurationAlias: "STRING_VALUE",
|
|
45
|
+
* TypeName: "STRING_VALUE",
|
|
46
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
47
|
+
* };
|
|
41
48
|
* const command = new SetTypeConfigurationCommand(input);
|
|
42
49
|
* const response = await client.send(command);
|
|
43
50
|
* ```
|
|
@@ -27,6 +27,12 @@ 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 = {
|
|
31
|
+
* Arn: "STRING_VALUE",
|
|
32
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
33
|
+
* TypeName: "STRING_VALUE",
|
|
34
|
+
* VersionId: "STRING_VALUE",
|
|
35
|
+
* };
|
|
30
36
|
* const command = new SetTypeDefaultVersionCommand(input);
|
|
31
37
|
* const response = await client.send(command);
|
|
32
38
|
* ```
|
|
@@ -31,6 +31,12 @@ 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 = {
|
|
35
|
+
* StackName: "STRING_VALUE", // required
|
|
36
|
+
* LogicalResourceId: "STRING_VALUE", // required
|
|
37
|
+
* UniqueId: "STRING_VALUE", // required
|
|
38
|
+
* Status: "SUCCESS" || "FAILURE", // required
|
|
39
|
+
* };
|
|
34
40
|
* const command = new SignalResourceCommand(input);
|
|
35
41
|
* const response = await client.send(command);
|
|
36
42
|
* ```
|
|
@@ -28,6 +28,11 @@ 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 = {
|
|
32
|
+
* StackSetName: "STRING_VALUE", // required
|
|
33
|
+
* OperationId: "STRING_VALUE", // required
|
|
34
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
35
|
+
* };
|
|
31
36
|
* const command = new StopStackSetOperationCommand(input);
|
|
32
37
|
* const response = await client.send(command);
|
|
33
38
|
* ```
|
|
@@ -48,6 +48,13 @@ 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 = {
|
|
52
|
+
* Arn: "STRING_VALUE",
|
|
53
|
+
* Type: "RESOURCE" || "MODULE" || "HOOK",
|
|
54
|
+
* TypeName: "STRING_VALUE",
|
|
55
|
+
* VersionId: "STRING_VALUE",
|
|
56
|
+
* LogDeliveryBucket: "STRING_VALUE",
|
|
57
|
+
* };
|
|
51
58
|
* const command = new TestTypeCommand(input);
|
|
52
59
|
* const response = await client.send(command);
|
|
53
60
|
* ```
|
|
@@ -31,6 +31,51 @@ 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 = {
|
|
35
|
+
* StackName: "STRING_VALUE", // required
|
|
36
|
+
* TemplateBody: "STRING_VALUE",
|
|
37
|
+
* TemplateURL: "STRING_VALUE",
|
|
38
|
+
* UsePreviousTemplate: true || false,
|
|
39
|
+
* StackPolicyDuringUpdateBody: "STRING_VALUE",
|
|
40
|
+
* StackPolicyDuringUpdateURL: "STRING_VALUE",
|
|
41
|
+
* Parameters: [
|
|
42
|
+
* {
|
|
43
|
+
* ParameterKey: "STRING_VALUE",
|
|
44
|
+
* ParameterValue: "STRING_VALUE",
|
|
45
|
+
* UsePreviousValue: true || false,
|
|
46
|
+
* ResolvedValue: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* Capabilities: [
|
|
50
|
+
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
51
|
+
* ],
|
|
52
|
+
* ResourceTypes: [
|
|
53
|
+
* "STRING_VALUE",
|
|
54
|
+
* ],
|
|
55
|
+
* RoleARN: "STRING_VALUE",
|
|
56
|
+
* RollbackConfiguration: {
|
|
57
|
+
* RollbackTriggers: [
|
|
58
|
+
* {
|
|
59
|
+
* Arn: "STRING_VALUE", // required
|
|
60
|
+
* Type: "STRING_VALUE", // required
|
|
61
|
+
* },
|
|
62
|
+
* ],
|
|
63
|
+
* MonitoringTimeInMinutes: Number("int"),
|
|
64
|
+
* },
|
|
65
|
+
* StackPolicyBody: "STRING_VALUE",
|
|
66
|
+
* StackPolicyURL: "STRING_VALUE",
|
|
67
|
+
* NotificationARNs: [
|
|
68
|
+
* "STRING_VALUE",
|
|
69
|
+
* ],
|
|
70
|
+
* Tags: [
|
|
71
|
+
* {
|
|
72
|
+
* Key: "STRING_VALUE", // required
|
|
73
|
+
* Value: "STRING_VALUE", // required
|
|
74
|
+
* },
|
|
75
|
+
* ],
|
|
76
|
+
* DisableRollback: true || false,
|
|
77
|
+
* ClientRequestToken: "STRING_VALUE",
|
|
78
|
+
* };
|
|
34
79
|
* const command = new UpdateStackCommand(input);
|
|
35
80
|
* const response = await client.send(command);
|
|
36
81
|
* ```
|
|
@@ -39,6 +39,45 @@ 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 = {
|
|
43
|
+
* StackSetName: "STRING_VALUE", // required
|
|
44
|
+
* Accounts: [
|
|
45
|
+
* "STRING_VALUE",
|
|
46
|
+
* ],
|
|
47
|
+
* DeploymentTargets: {
|
|
48
|
+
* Accounts: [
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* AccountsUrl: "STRING_VALUE",
|
|
52
|
+
* OrganizationalUnitIds: [
|
|
53
|
+
* "STRING_VALUE",
|
|
54
|
+
* ],
|
|
55
|
+
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
56
|
+
* },
|
|
57
|
+
* Regions: [ // required
|
|
58
|
+
* "STRING_VALUE",
|
|
59
|
+
* ],
|
|
60
|
+
* ParameterOverrides: [
|
|
61
|
+
* {
|
|
62
|
+
* ParameterKey: "STRING_VALUE",
|
|
63
|
+
* ParameterValue: "STRING_VALUE",
|
|
64
|
+
* UsePreviousValue: true || false,
|
|
65
|
+
* ResolvedValue: "STRING_VALUE",
|
|
66
|
+
* },
|
|
67
|
+
* ],
|
|
68
|
+
* OperationPreferences: {
|
|
69
|
+
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
70
|
+
* RegionOrder: [
|
|
71
|
+
* "STRING_VALUE",
|
|
72
|
+
* ],
|
|
73
|
+
* FailureToleranceCount: Number("int"),
|
|
74
|
+
* FailureTolerancePercentage: Number("int"),
|
|
75
|
+
* MaxConcurrentCount: Number("int"),
|
|
76
|
+
* MaxConcurrentPercentage: Number("int"),
|
|
77
|
+
* },
|
|
78
|
+
* OperationId: "STRING_VALUE",
|
|
79
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
80
|
+
* };
|
|
42
81
|
* const command = new UpdateStackInstancesCommand(input);
|
|
43
82
|
* const response = await client.send(command);
|
|
44
83
|
* ```
|
|
@@ -31,6 +31,68 @@ 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 = {
|
|
35
|
+
* StackSetName: "STRING_VALUE", // required
|
|
36
|
+
* Description: "STRING_VALUE",
|
|
37
|
+
* TemplateBody: "STRING_VALUE",
|
|
38
|
+
* TemplateURL: "STRING_VALUE",
|
|
39
|
+
* UsePreviousTemplate: true || false,
|
|
40
|
+
* Parameters: [
|
|
41
|
+
* {
|
|
42
|
+
* ParameterKey: "STRING_VALUE",
|
|
43
|
+
* ParameterValue: "STRING_VALUE",
|
|
44
|
+
* UsePreviousValue: true || false,
|
|
45
|
+
* ResolvedValue: "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* ],
|
|
48
|
+
* Capabilities: [
|
|
49
|
+
* "CAPABILITY_IAM" || "CAPABILITY_NAMED_IAM" || "CAPABILITY_AUTO_EXPAND",
|
|
50
|
+
* ],
|
|
51
|
+
* Tags: [
|
|
52
|
+
* {
|
|
53
|
+
* Key: "STRING_VALUE", // required
|
|
54
|
+
* Value: "STRING_VALUE", // required
|
|
55
|
+
* },
|
|
56
|
+
* ],
|
|
57
|
+
* OperationPreferences: {
|
|
58
|
+
* RegionConcurrencyType: "SEQUENTIAL" || "PARALLEL",
|
|
59
|
+
* RegionOrder: [
|
|
60
|
+
* "STRING_VALUE",
|
|
61
|
+
* ],
|
|
62
|
+
* FailureToleranceCount: Number("int"),
|
|
63
|
+
* FailureTolerancePercentage: Number("int"),
|
|
64
|
+
* MaxConcurrentCount: Number("int"),
|
|
65
|
+
* MaxConcurrentPercentage: Number("int"),
|
|
66
|
+
* },
|
|
67
|
+
* AdministrationRoleARN: "STRING_VALUE",
|
|
68
|
+
* ExecutionRoleName: "STRING_VALUE",
|
|
69
|
+
* DeploymentTargets: {
|
|
70
|
+
* Accounts: [
|
|
71
|
+
* "STRING_VALUE",
|
|
72
|
+
* ],
|
|
73
|
+
* AccountsUrl: "STRING_VALUE",
|
|
74
|
+
* OrganizationalUnitIds: [
|
|
75
|
+
* "STRING_VALUE",
|
|
76
|
+
* ],
|
|
77
|
+
* AccountFilterType: "NONE" || "INTERSECTION" || "DIFFERENCE" || "UNION",
|
|
78
|
+
* },
|
|
79
|
+
* PermissionModel: "SERVICE_MANAGED" || "SELF_MANAGED",
|
|
80
|
+
* AutoDeployment: {
|
|
81
|
+
* Enabled: true || false,
|
|
82
|
+
* RetainStacksOnAccountRemoval: true || false,
|
|
83
|
+
* },
|
|
84
|
+
* OperationId: "STRING_VALUE",
|
|
85
|
+
* Accounts: [
|
|
86
|
+
* "STRING_VALUE",
|
|
87
|
+
* ],
|
|
88
|
+
* Regions: [
|
|
89
|
+
* "STRING_VALUE",
|
|
90
|
+
* ],
|
|
91
|
+
* CallAs: "SELF" || "DELEGATED_ADMIN",
|
|
92
|
+
* ManagedExecution: {
|
|
93
|
+
* Active: true || false,
|
|
94
|
+
* },
|
|
95
|
+
* };
|
|
34
96
|
* const command = new UpdateStackSetCommand(input);
|
|
35
97
|
* const response = await client.send(command);
|
|
36
98
|
* ```
|
|
@@ -32,6 +32,10 @@ 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 = {
|
|
36
|
+
* EnableTerminationProtection: true || false, // required
|
|
37
|
+
* StackName: "STRING_VALUE", // required
|
|
38
|
+
* };
|
|
35
39
|
* const command = new UpdateTerminationProtectionCommand(input);
|
|
36
40
|
* const response = await client.send(command);
|
|
37
41
|
* ```
|
|
@@ -28,6 +28,10 @@ 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 = {
|
|
32
|
+
* TemplateBody: "STRING_VALUE",
|
|
33
|
+
* TemplateURL: "STRING_VALUE",
|
|
34
|
+
* };
|
|
31
35
|
* const command = new ValidateTemplateCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|