@aws-sdk/client-ssm 3.52.0 → 3.53.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/CHANGELOG.md +11 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/SSMServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +881 -5
- package/dist-cjs/models/models_1.js +789 -5
- package/dist-cjs/models/models_2.js +29 -1
- package/dist-cjs/protocols/Aws_json1_1.js +1611 -5044
- package/dist-es/index.js +1 -0
- package/dist-es/models/SSMServiceException.js +12 -0
- package/dist-es/models/models_0.js +813 -1
- package/dist-es/models/models_1.js +727 -1
- package/dist-es/models/models_2.js +27 -1
- package/dist-es/protocols/Aws_json1_1.js +3189 -5341
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/SSMServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +443 -197
- package/dist-types/models/models_1.d.ts +391 -197
- package/dist-types/models/models_2.d.ts +16 -8
- package/dist-types/ts3.4/index.d.ts +1 -0
- package/dist-types/ts3.4/models/SSMServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/models_0.d.ts +317 -197
- package/dist-types/ts3.4/models/models_1.d.ts +282 -188
- package/dist-types/ts3.4/models/models_2.d.ts +12 -8
- package/package.json +26 -26
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { AssociationComplianceSeverity, AssociationDescription, AssociationOverview, AssociationStatus, AssociationSyncCompliance, AttachmentsSource, AutomationExecutionStatus, AutomationSubtype, DocumentDescription, DocumentFormat, DocumentHashType, DocumentPermissionType, DocumentRequires, DocumentStatus, DocumentType, ExecutionMode, InstanceAssociationOutputLocation, LoggingInfo, MaintenanceWindowExecutionStatus, MaintenanceWindowResourceType, MaintenanceWindowTaskCutoffBehavior, MaintenanceWindowTaskParameterValueExpression, MaintenanceWindowTaskType, MetadataValue, OperatingSystem, OpsItemDataValue, OpsItemNotification, OpsItemStatus, ParameterInlinePolicy, ParameterStringFilter, ParameterTier, PatchAction, PatchComplianceLevel, PatchFilterGroup, PatchOrchestratorFilter, PatchRuleGroup, PatchSource, PlatformType, RelatedOpsItem, ResolvedTargets, ResourceDataSyncAwsOrganizationsSource, ResourceDataSyncS3Destination, ResourceTypeForTagging, ReviewStatus, Runbook, StepExecution, Tag, Target, TargetLocation } from "./models_0";
|
|
3
|
+
import { SSMServiceException as __BaseException } from "./SSMServiceException";
|
|
3
4
|
export declare enum ParameterType {
|
|
4
5
|
SECURE_STRING = "SecureString",
|
|
5
6
|
STRING = "String",
|
|
@@ -84,14 +85,13 @@ export declare namespace DescribeParametersResult {
|
|
|
84
85
|
* <p>The specified filter option isn't valid. Valid options are Equals and BeginsWith. For Path
|
|
85
86
|
* filter, valid options are Recursive and OneLevel.</p>
|
|
86
87
|
*/
|
|
87
|
-
export
|
|
88
|
-
name: "InvalidFilterOption";
|
|
89
|
-
$fault: "client";
|
|
88
|
+
export declare class InvalidFilterOption extends __BaseException {
|
|
89
|
+
readonly name: "InvalidFilterOption";
|
|
90
|
+
readonly $fault: "client";
|
|
90
91
|
/**
|
|
91
|
-
*
|
|
92
|
-
* filter, valid options are Recursive and OneLevel.</p>
|
|
92
|
+
* @internal
|
|
93
93
|
*/
|
|
94
|
-
|
|
94
|
+
constructor(opts: __ExceptionOptionType<InvalidFilterOption, __BaseException>);
|
|
95
95
|
}
|
|
96
96
|
export interface DescribePatchBaselinesRequest {
|
|
97
97
|
/**
|
|
@@ -664,10 +664,14 @@ export declare namespace DisassociateOpsItemRelatedItemResponse {
|
|
|
664
664
|
* <p>The association wasn't found using the parameters you specified in the call. Verify the
|
|
665
665
|
* information and try again.</p>
|
|
666
666
|
*/
|
|
667
|
-
export
|
|
668
|
-
name: "OpsItemRelatedItemAssociationNotFoundException";
|
|
669
|
-
$fault: "client";
|
|
667
|
+
export declare class OpsItemRelatedItemAssociationNotFoundException extends __BaseException {
|
|
668
|
+
readonly name: "OpsItemRelatedItemAssociationNotFoundException";
|
|
669
|
+
readonly $fault: "client";
|
|
670
670
|
Message?: string;
|
|
671
|
+
/**
|
|
672
|
+
* @internal
|
|
673
|
+
*/
|
|
674
|
+
constructor(opts: __ExceptionOptionType<OpsItemRelatedItemAssociationNotFoundException, __BaseException>);
|
|
671
675
|
}
|
|
672
676
|
export interface GetAutomationExecutionRequest {
|
|
673
677
|
/**
|
|
@@ -937,18 +941,26 @@ export declare namespace GetCalendarStateResponse {
|
|
|
937
941
|
* <p>The SSM document type isn't valid. Valid document types are described in the
|
|
938
942
|
* <code>DocumentType</code> property.</p>
|
|
939
943
|
*/
|
|
940
|
-
export
|
|
941
|
-
name: "InvalidDocumentType";
|
|
942
|
-
$fault: "client";
|
|
944
|
+
export declare class InvalidDocumentType extends __BaseException {
|
|
945
|
+
readonly name: "InvalidDocumentType";
|
|
946
|
+
readonly $fault: "client";
|
|
943
947
|
Message?: string;
|
|
948
|
+
/**
|
|
949
|
+
* @internal
|
|
950
|
+
*/
|
|
951
|
+
constructor(opts: __ExceptionOptionType<InvalidDocumentType, __BaseException>);
|
|
944
952
|
}
|
|
945
953
|
/**
|
|
946
954
|
* <p>The calendar entry contained in the specified SSM document isn't supported.</p>
|
|
947
955
|
*/
|
|
948
|
-
export
|
|
949
|
-
name: "UnsupportedCalendarException";
|
|
950
|
-
$fault: "client";
|
|
956
|
+
export declare class UnsupportedCalendarException extends __BaseException {
|
|
957
|
+
readonly name: "UnsupportedCalendarException";
|
|
958
|
+
readonly $fault: "client";
|
|
951
959
|
Message?: string;
|
|
960
|
+
/**
|
|
961
|
+
* @internal
|
|
962
|
+
*/
|
|
963
|
+
constructor(opts: __ExceptionOptionType<UnsupportedCalendarException, __BaseException>);
|
|
952
964
|
}
|
|
953
965
|
export interface GetCommandInvocationRequest {
|
|
954
966
|
/**
|
|
@@ -1171,17 +1183,25 @@ export declare namespace GetCommandInvocationResult {
|
|
|
1171
1183
|
/**
|
|
1172
1184
|
* <p>The plugin name isn't valid.</p>
|
|
1173
1185
|
*/
|
|
1174
|
-
export
|
|
1175
|
-
name: "InvalidPluginName";
|
|
1176
|
-
$fault: "client";
|
|
1186
|
+
export declare class InvalidPluginName extends __BaseException {
|
|
1187
|
+
readonly name: "InvalidPluginName";
|
|
1188
|
+
readonly $fault: "client";
|
|
1189
|
+
/**
|
|
1190
|
+
* @internal
|
|
1191
|
+
*/
|
|
1192
|
+
constructor(opts: __ExceptionOptionType<InvalidPluginName, __BaseException>);
|
|
1177
1193
|
}
|
|
1178
1194
|
/**
|
|
1179
1195
|
* <p>The command ID and managed node ID you specified didn't match any invocations. Verify the
|
|
1180
1196
|
* command ID and the managed node ID and try again. </p>
|
|
1181
1197
|
*/
|
|
1182
|
-
export
|
|
1183
|
-
name: "InvocationDoesNotExist";
|
|
1184
|
-
$fault: "client";
|
|
1198
|
+
export declare class InvocationDoesNotExist extends __BaseException {
|
|
1199
|
+
readonly name: "InvocationDoesNotExist";
|
|
1200
|
+
readonly $fault: "client";
|
|
1201
|
+
/**
|
|
1202
|
+
* @internal
|
|
1203
|
+
*/
|
|
1204
|
+
constructor(opts: __ExceptionOptionType<InvocationDoesNotExist, __BaseException>);
|
|
1185
1205
|
}
|
|
1186
1206
|
export interface GetConnectionStatusRequest {
|
|
1187
1207
|
/**
|
|
@@ -1356,10 +1376,14 @@ export declare namespace GetDeployablePatchSnapshotForInstanceResult {
|
|
|
1356
1376
|
* you must enable advanced instances. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/systems-manager-managedinstances-advanced.html">Enabling
|
|
1357
1377
|
* the advanced-instances tier</a> in the <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
1358
1378
|
*/
|
|
1359
|
-
export
|
|
1360
|
-
name: "UnsupportedFeatureRequiredException";
|
|
1361
|
-
$fault: "client";
|
|
1379
|
+
export declare class UnsupportedFeatureRequiredException extends __BaseException {
|
|
1380
|
+
readonly name: "UnsupportedFeatureRequiredException";
|
|
1381
|
+
readonly $fault: "client";
|
|
1362
1382
|
Message?: string;
|
|
1383
|
+
/**
|
|
1384
|
+
* @internal
|
|
1385
|
+
*/
|
|
1386
|
+
constructor(opts: __ExceptionOptionType<UnsupportedFeatureRequiredException, __BaseException>);
|
|
1363
1387
|
}
|
|
1364
1388
|
export interface GetDocumentRequest {
|
|
1365
1389
|
/**
|
|
@@ -1650,26 +1674,38 @@ export declare namespace GetInventoryResult {
|
|
|
1650
1674
|
* valid inventory type such as <code>AWS:Application</code> or
|
|
1651
1675
|
* <code>AWS:InstanceInformation</code>.</p>
|
|
1652
1676
|
*/
|
|
1653
|
-
export
|
|
1654
|
-
name: "InvalidAggregatorException";
|
|
1655
|
-
$fault: "client";
|
|
1677
|
+
export declare class InvalidAggregatorException extends __BaseException {
|
|
1678
|
+
readonly name: "InvalidAggregatorException";
|
|
1679
|
+
readonly $fault: "client";
|
|
1656
1680
|
Message?: string;
|
|
1681
|
+
/**
|
|
1682
|
+
* @internal
|
|
1683
|
+
*/
|
|
1684
|
+
constructor(opts: __ExceptionOptionType<InvalidAggregatorException, __BaseException>);
|
|
1657
1685
|
}
|
|
1658
1686
|
/**
|
|
1659
1687
|
* <p>The specified inventory group isn't valid.</p>
|
|
1660
1688
|
*/
|
|
1661
|
-
export
|
|
1662
|
-
name: "InvalidInventoryGroupException";
|
|
1663
|
-
$fault: "client";
|
|
1689
|
+
export declare class InvalidInventoryGroupException extends __BaseException {
|
|
1690
|
+
readonly name: "InvalidInventoryGroupException";
|
|
1691
|
+
readonly $fault: "client";
|
|
1664
1692
|
Message?: string;
|
|
1693
|
+
/**
|
|
1694
|
+
* @internal
|
|
1695
|
+
*/
|
|
1696
|
+
constructor(opts: __ExceptionOptionType<InvalidInventoryGroupException, __BaseException>);
|
|
1665
1697
|
}
|
|
1666
1698
|
/**
|
|
1667
1699
|
* <p>The specified inventory item result attribute isn't valid.</p>
|
|
1668
1700
|
*/
|
|
1669
|
-
export
|
|
1670
|
-
name: "InvalidResultAttributeException";
|
|
1671
|
-
$fault: "client";
|
|
1701
|
+
export declare class InvalidResultAttributeException extends __BaseException {
|
|
1702
|
+
readonly name: "InvalidResultAttributeException";
|
|
1703
|
+
readonly $fault: "client";
|
|
1672
1704
|
Message?: string;
|
|
1705
|
+
/**
|
|
1706
|
+
* @internal
|
|
1707
|
+
*/
|
|
1708
|
+
constructor(opts: __ExceptionOptionType<InvalidResultAttributeException, __BaseException>);
|
|
1673
1709
|
}
|
|
1674
1710
|
export interface GetInventorySchemaRequest {
|
|
1675
1711
|
/**
|
|
@@ -2900,19 +2936,25 @@ export declare namespace GetParameterResult {
|
|
|
2900
2936
|
/**
|
|
2901
2937
|
* <p>The query key ID isn't valid.</p>
|
|
2902
2938
|
*/
|
|
2903
|
-
export
|
|
2904
|
-
name: "InvalidKeyId";
|
|
2905
|
-
$fault: "client";
|
|
2906
|
-
|
|
2939
|
+
export declare class InvalidKeyId extends __BaseException {
|
|
2940
|
+
readonly name: "InvalidKeyId";
|
|
2941
|
+
readonly $fault: "client";
|
|
2942
|
+
/**
|
|
2943
|
+
* @internal
|
|
2944
|
+
*/
|
|
2945
|
+
constructor(opts: __ExceptionOptionType<InvalidKeyId, __BaseException>);
|
|
2907
2946
|
}
|
|
2908
2947
|
/**
|
|
2909
2948
|
* <p>The specified parameter version wasn't found. Verify the parameter name and version, and try
|
|
2910
2949
|
* again.</p>
|
|
2911
2950
|
*/
|
|
2912
|
-
export
|
|
2913
|
-
name: "ParameterVersionNotFound";
|
|
2914
|
-
$fault: "client";
|
|
2915
|
-
|
|
2951
|
+
export declare class ParameterVersionNotFound extends __BaseException {
|
|
2952
|
+
readonly name: "ParameterVersionNotFound";
|
|
2953
|
+
readonly $fault: "client";
|
|
2954
|
+
/**
|
|
2955
|
+
* @internal
|
|
2956
|
+
*/
|
|
2957
|
+
constructor(opts: __ExceptionOptionType<ParameterVersionNotFound, __BaseException>);
|
|
2916
2958
|
}
|
|
2917
2959
|
export interface GetParameterHistoryRequest {
|
|
2918
2960
|
/**
|
|
@@ -3389,10 +3431,14 @@ export declare namespace GetServiceSettingResult {
|
|
|
3389
3431
|
* <p>The specified service setting wasn't found. Either the service name or the setting hasn't
|
|
3390
3432
|
* been provisioned by the Amazon Web Services service team.</p>
|
|
3391
3433
|
*/
|
|
3392
|
-
export
|
|
3393
|
-
name: "ServiceSettingNotFound";
|
|
3394
|
-
$fault: "client";
|
|
3434
|
+
export declare class ServiceSettingNotFound extends __BaseException {
|
|
3435
|
+
readonly name: "ServiceSettingNotFound";
|
|
3436
|
+
readonly $fault: "client";
|
|
3395
3437
|
Message?: string;
|
|
3438
|
+
/**
|
|
3439
|
+
* @internal
|
|
3440
|
+
*/
|
|
3441
|
+
constructor(opts: __ExceptionOptionType<ServiceSettingNotFound, __BaseException>);
|
|
3396
3442
|
}
|
|
3397
3443
|
export interface LabelParameterVersionRequest {
|
|
3398
3444
|
/**
|
|
@@ -3436,10 +3482,13 @@ export declare namespace LabelParameterVersionResult {
|
|
|
3436
3482
|
/**
|
|
3437
3483
|
* <p>A parameter version can have a maximum of ten labels.</p>
|
|
3438
3484
|
*/
|
|
3439
|
-
export
|
|
3440
|
-
name: "ParameterVersionLabelLimitExceeded";
|
|
3441
|
-
$fault: "client";
|
|
3442
|
-
|
|
3485
|
+
export declare class ParameterVersionLabelLimitExceeded extends __BaseException {
|
|
3486
|
+
readonly name: "ParameterVersionLabelLimitExceeded";
|
|
3487
|
+
readonly $fault: "client";
|
|
3488
|
+
/**
|
|
3489
|
+
* @internal
|
|
3490
|
+
*/
|
|
3491
|
+
constructor(opts: __ExceptionOptionType<ParameterVersionLabelLimitExceeded, __BaseException>);
|
|
3443
3492
|
}
|
|
3444
3493
|
export declare enum AssociationFilterKey {
|
|
3445
3494
|
AssociationId = "AssociationId",
|
|
@@ -6057,10 +6106,14 @@ export declare namespace ListTagsForResourceResult {
|
|
|
6057
6106
|
* with a maximum of 20 accounts. You can publicly share up to five documents. If you need to
|
|
6058
6107
|
* increase this limit, contact Amazon Web Services Support.</p>
|
|
6059
6108
|
*/
|
|
6060
|
-
export
|
|
6061
|
-
name: "DocumentPermissionLimit";
|
|
6062
|
-
$fault: "client";
|
|
6109
|
+
export declare class DocumentPermissionLimit extends __BaseException {
|
|
6110
|
+
readonly name: "DocumentPermissionLimit";
|
|
6111
|
+
readonly $fault: "client";
|
|
6063
6112
|
Message?: string;
|
|
6113
|
+
/**
|
|
6114
|
+
* @internal
|
|
6115
|
+
*/
|
|
6116
|
+
constructor(opts: __ExceptionOptionType<DocumentPermissionLimit, __BaseException>);
|
|
6064
6117
|
}
|
|
6065
6118
|
export interface ModifyDocumentPermissionRequest {
|
|
6066
6119
|
/**
|
|
@@ -6108,28 +6161,40 @@ export declare namespace ModifyDocumentPermissionResponse {
|
|
|
6108
6161
|
* <p>You specified too many custom compliance types. You can specify a maximum of 10 different
|
|
6109
6162
|
* types. </p>
|
|
6110
6163
|
*/
|
|
6111
|
-
export
|
|
6112
|
-
name: "ComplianceTypeCountLimitExceededException";
|
|
6113
|
-
$fault: "client";
|
|
6164
|
+
export declare class ComplianceTypeCountLimitExceededException extends __BaseException {
|
|
6165
|
+
readonly name: "ComplianceTypeCountLimitExceededException";
|
|
6166
|
+
readonly $fault: "client";
|
|
6114
6167
|
Message?: string;
|
|
6168
|
+
/**
|
|
6169
|
+
* @internal
|
|
6170
|
+
*/
|
|
6171
|
+
constructor(opts: __ExceptionOptionType<ComplianceTypeCountLimitExceededException, __BaseException>);
|
|
6115
6172
|
}
|
|
6116
6173
|
/**
|
|
6117
6174
|
* <p>One or more content items isn't valid.</p>
|
|
6118
6175
|
*/
|
|
6119
|
-
export
|
|
6120
|
-
name: "InvalidItemContentException";
|
|
6121
|
-
$fault: "client";
|
|
6176
|
+
export declare class InvalidItemContentException extends __BaseException {
|
|
6177
|
+
readonly name: "InvalidItemContentException";
|
|
6178
|
+
readonly $fault: "client";
|
|
6122
6179
|
TypeName?: string;
|
|
6123
6180
|
Message?: string;
|
|
6181
|
+
/**
|
|
6182
|
+
* @internal
|
|
6183
|
+
*/
|
|
6184
|
+
constructor(opts: __ExceptionOptionType<InvalidItemContentException, __BaseException>);
|
|
6124
6185
|
}
|
|
6125
6186
|
/**
|
|
6126
6187
|
* <p>The inventory item size has exceeded the size limit.</p>
|
|
6127
6188
|
*/
|
|
6128
|
-
export
|
|
6129
|
-
name: "ItemSizeLimitExceededException";
|
|
6130
|
-
$fault: "client";
|
|
6189
|
+
export declare class ItemSizeLimitExceededException extends __BaseException {
|
|
6190
|
+
readonly name: "ItemSizeLimitExceededException";
|
|
6191
|
+
readonly $fault: "client";
|
|
6131
6192
|
TypeName?: string;
|
|
6132
6193
|
Message?: string;
|
|
6194
|
+
/**
|
|
6195
|
+
* @internal
|
|
6196
|
+
*/
|
|
6197
|
+
constructor(opts: __ExceptionOptionType<ItemSizeLimitExceededException, __BaseException>);
|
|
6133
6198
|
}
|
|
6134
6199
|
/**
|
|
6135
6200
|
* <p>Information about a compliance item.</p>
|
|
@@ -6236,37 +6301,53 @@ export declare namespace PutComplianceItemsResult {
|
|
|
6236
6301
|
/**
|
|
6237
6302
|
* <p>The size of inventory data has exceeded the total size limit for the resource.</p>
|
|
6238
6303
|
*/
|
|
6239
|
-
export
|
|
6240
|
-
name: "TotalSizeLimitExceededException";
|
|
6241
|
-
$fault: "client";
|
|
6304
|
+
export declare class TotalSizeLimitExceededException extends __BaseException {
|
|
6305
|
+
readonly name: "TotalSizeLimitExceededException";
|
|
6306
|
+
readonly $fault: "client";
|
|
6242
6307
|
Message?: string;
|
|
6308
|
+
/**
|
|
6309
|
+
* @internal
|
|
6310
|
+
*/
|
|
6311
|
+
constructor(opts: __ExceptionOptionType<TotalSizeLimitExceededException, __BaseException>);
|
|
6243
6312
|
}
|
|
6244
6313
|
/**
|
|
6245
6314
|
* <p>You have exceeded the limit for custom schemas. Delete one or more custom schemas and try
|
|
6246
6315
|
* again.</p>
|
|
6247
6316
|
*/
|
|
6248
|
-
export
|
|
6249
|
-
name: "CustomSchemaCountLimitExceededException";
|
|
6250
|
-
$fault: "client";
|
|
6317
|
+
export declare class CustomSchemaCountLimitExceededException extends __BaseException {
|
|
6318
|
+
readonly name: "CustomSchemaCountLimitExceededException";
|
|
6319
|
+
readonly $fault: "client";
|
|
6251
6320
|
Message?: string;
|
|
6321
|
+
/**
|
|
6322
|
+
* @internal
|
|
6323
|
+
*/
|
|
6324
|
+
constructor(opts: __ExceptionOptionType<CustomSchemaCountLimitExceededException, __BaseException>);
|
|
6252
6325
|
}
|
|
6253
6326
|
/**
|
|
6254
6327
|
* <p>You specified invalid keys or values in the <code>Context</code> attribute for
|
|
6255
6328
|
* <code>InventoryItem</code>. Verify the keys and values, and try again.</p>
|
|
6256
6329
|
*/
|
|
6257
|
-
export
|
|
6258
|
-
name: "InvalidInventoryItemContextException";
|
|
6259
|
-
$fault: "client";
|
|
6330
|
+
export declare class InvalidInventoryItemContextException extends __BaseException {
|
|
6331
|
+
readonly name: "InvalidInventoryItemContextException";
|
|
6332
|
+
readonly $fault: "client";
|
|
6260
6333
|
Message?: string;
|
|
6334
|
+
/**
|
|
6335
|
+
* @internal
|
|
6336
|
+
*/
|
|
6337
|
+
constructor(opts: __ExceptionOptionType<InvalidInventoryItemContextException, __BaseException>);
|
|
6261
6338
|
}
|
|
6262
6339
|
/**
|
|
6263
6340
|
* <p>The inventory item has invalid content. </p>
|
|
6264
6341
|
*/
|
|
6265
|
-
export
|
|
6266
|
-
name: "ItemContentMismatchException";
|
|
6267
|
-
$fault: "client";
|
|
6342
|
+
export declare class ItemContentMismatchException extends __BaseException {
|
|
6343
|
+
readonly name: "ItemContentMismatchException";
|
|
6344
|
+
readonly $fault: "client";
|
|
6268
6345
|
TypeName?: string;
|
|
6269
6346
|
Message?: string;
|
|
6347
|
+
/**
|
|
6348
|
+
* @internal
|
|
6349
|
+
*/
|
|
6350
|
+
constructor(opts: __ExceptionOptionType<ItemContentMismatchException, __BaseException>);
|
|
6270
6351
|
}
|
|
6271
6352
|
/**
|
|
6272
6353
|
* <p>Information collected from managed nodes based on your inventory policy document</p>
|
|
@@ -6346,112 +6427,136 @@ export declare namespace PutInventoryResult {
|
|
|
6346
6427
|
/**
|
|
6347
6428
|
* <p>The sub-type count exceeded the limit for the inventory type.</p>
|
|
6348
6429
|
*/
|
|
6349
|
-
export
|
|
6350
|
-
name: "SubTypeCountLimitExceededException";
|
|
6351
|
-
$fault: "client";
|
|
6430
|
+
export declare class SubTypeCountLimitExceededException extends __BaseException {
|
|
6431
|
+
readonly name: "SubTypeCountLimitExceededException";
|
|
6432
|
+
readonly $fault: "client";
|
|
6352
6433
|
Message?: string;
|
|
6434
|
+
/**
|
|
6435
|
+
* @internal
|
|
6436
|
+
*/
|
|
6437
|
+
constructor(opts: __ExceptionOptionType<SubTypeCountLimitExceededException, __BaseException>);
|
|
6353
6438
|
}
|
|
6354
6439
|
/**
|
|
6355
6440
|
* <p>The <code>Context</code> attribute that you specified for the <code>InventoryItem</code>
|
|
6356
6441
|
* isn't allowed for this inventory type. You can only use the <code>Context</code> attribute with
|
|
6357
6442
|
* inventory types like <code>AWS:ComplianceItem</code>.</p>
|
|
6358
6443
|
*/
|
|
6359
|
-
export
|
|
6360
|
-
name: "UnsupportedInventoryItemContextException";
|
|
6361
|
-
$fault: "client";
|
|
6444
|
+
export declare class UnsupportedInventoryItemContextException extends __BaseException {
|
|
6445
|
+
readonly name: "UnsupportedInventoryItemContextException";
|
|
6446
|
+
readonly $fault: "client";
|
|
6362
6447
|
TypeName?: string;
|
|
6363
6448
|
Message?: string;
|
|
6449
|
+
/**
|
|
6450
|
+
* @internal
|
|
6451
|
+
*/
|
|
6452
|
+
constructor(opts: __ExceptionOptionType<UnsupportedInventoryItemContextException, __BaseException>);
|
|
6364
6453
|
}
|
|
6365
6454
|
/**
|
|
6366
6455
|
* <p>Inventory item type schema version has to match supported versions in the service. Check
|
|
6367
6456
|
* output of GetInventorySchema to see the available schema version for each type.</p>
|
|
6368
6457
|
*/
|
|
6369
|
-
export
|
|
6370
|
-
name: "UnsupportedInventorySchemaVersionException";
|
|
6371
|
-
$fault: "client";
|
|
6458
|
+
export declare class UnsupportedInventorySchemaVersionException extends __BaseException {
|
|
6459
|
+
readonly name: "UnsupportedInventorySchemaVersionException";
|
|
6460
|
+
readonly $fault: "client";
|
|
6372
6461
|
Message?: string;
|
|
6462
|
+
/**
|
|
6463
|
+
* @internal
|
|
6464
|
+
*/
|
|
6465
|
+
constructor(opts: __ExceptionOptionType<UnsupportedInventorySchemaVersionException, __BaseException>);
|
|
6373
6466
|
}
|
|
6374
6467
|
/**
|
|
6375
6468
|
* <p>A hierarchy can have a maximum of 15 levels. For more information, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-parameter-name-constraints.html">Requirements and
|
|
6376
6469
|
* constraints for parameter names</a> in the <i>Amazon Web Services Systems Manager User Guide</i>. </p>
|
|
6377
6470
|
*/
|
|
6378
|
-
export
|
|
6379
|
-
name: "HierarchyLevelLimitExceededException";
|
|
6380
|
-
$fault: "client";
|
|
6471
|
+
export declare class HierarchyLevelLimitExceededException extends __BaseException {
|
|
6472
|
+
readonly name: "HierarchyLevelLimitExceededException";
|
|
6473
|
+
readonly $fault: "client";
|
|
6381
6474
|
/**
|
|
6382
|
-
*
|
|
6383
|
-
* constraints for parameter names</a> in the <i>Amazon Web Services Systems Manager User Guide</i>. </p>
|
|
6475
|
+
* @internal
|
|
6384
6476
|
*/
|
|
6385
|
-
|
|
6477
|
+
constructor(opts: __ExceptionOptionType<HierarchyLevelLimitExceededException, __BaseException>);
|
|
6386
6478
|
}
|
|
6387
6479
|
/**
|
|
6388
6480
|
* <p>Parameter Store doesn't support changing a parameter type in a hierarchy. For example, you
|
|
6389
6481
|
* can't change a parameter from a <code>String</code> type to a <code>SecureString</code> type. You
|
|
6390
6482
|
* must create a new, unique parameter.</p>
|
|
6391
6483
|
*/
|
|
6392
|
-
export
|
|
6393
|
-
name: "HierarchyTypeMismatchException";
|
|
6394
|
-
$fault: "client";
|
|
6484
|
+
export declare class HierarchyTypeMismatchException extends __BaseException {
|
|
6485
|
+
readonly name: "HierarchyTypeMismatchException";
|
|
6486
|
+
readonly $fault: "client";
|
|
6395
6487
|
/**
|
|
6396
|
-
*
|
|
6397
|
-
* can't change a parameter from a <code>String</code> type to a <code>SecureString</code> type. You
|
|
6398
|
-
* must create a new, unique parameter.</p>
|
|
6488
|
+
* @internal
|
|
6399
6489
|
*/
|
|
6400
|
-
|
|
6490
|
+
constructor(opts: __ExceptionOptionType<HierarchyTypeMismatchException, __BaseException>);
|
|
6401
6491
|
}
|
|
6402
6492
|
/**
|
|
6403
6493
|
* <p>There is a conflict in the policies specified for this parameter. You can't, for example,
|
|
6404
6494
|
* specify two Expiration policies for a parameter. Review your policies, and try again.</p>
|
|
6405
6495
|
*/
|
|
6406
|
-
export
|
|
6407
|
-
name: "IncompatiblePolicyException";
|
|
6408
|
-
$fault: "client";
|
|
6409
|
-
|
|
6496
|
+
export declare class IncompatiblePolicyException extends __BaseException {
|
|
6497
|
+
readonly name: "IncompatiblePolicyException";
|
|
6498
|
+
readonly $fault: "client";
|
|
6499
|
+
/**
|
|
6500
|
+
* @internal
|
|
6501
|
+
*/
|
|
6502
|
+
constructor(opts: __ExceptionOptionType<IncompatiblePolicyException, __BaseException>);
|
|
6410
6503
|
}
|
|
6411
6504
|
/**
|
|
6412
6505
|
* <p>The request doesn't meet the regular expression requirement.</p>
|
|
6413
6506
|
*/
|
|
6414
|
-
export
|
|
6415
|
-
name: "InvalidAllowedPatternException";
|
|
6416
|
-
$fault: "client";
|
|
6507
|
+
export declare class InvalidAllowedPatternException extends __BaseException {
|
|
6508
|
+
readonly name: "InvalidAllowedPatternException";
|
|
6509
|
+
readonly $fault: "client";
|
|
6417
6510
|
/**
|
|
6418
|
-
*
|
|
6511
|
+
* @internal
|
|
6419
6512
|
*/
|
|
6420
|
-
|
|
6513
|
+
constructor(opts: __ExceptionOptionType<InvalidAllowedPatternException, __BaseException>);
|
|
6421
6514
|
}
|
|
6422
6515
|
/**
|
|
6423
6516
|
* <p>A policy attribute or its value is invalid. </p>
|
|
6424
6517
|
*/
|
|
6425
|
-
export
|
|
6426
|
-
name: "InvalidPolicyAttributeException";
|
|
6427
|
-
$fault: "client";
|
|
6428
|
-
|
|
6518
|
+
export declare class InvalidPolicyAttributeException extends __BaseException {
|
|
6519
|
+
readonly name: "InvalidPolicyAttributeException";
|
|
6520
|
+
readonly $fault: "client";
|
|
6521
|
+
/**
|
|
6522
|
+
* @internal
|
|
6523
|
+
*/
|
|
6524
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyAttributeException, __BaseException>);
|
|
6429
6525
|
}
|
|
6430
6526
|
/**
|
|
6431
6527
|
* <p>The policy type isn't supported. Parameter Store supports the following policy types:
|
|
6432
6528
|
* Expiration, ExpirationNotification, and NoChangeNotification.</p>
|
|
6433
6529
|
*/
|
|
6434
|
-
export
|
|
6435
|
-
name: "InvalidPolicyTypeException";
|
|
6436
|
-
$fault: "client";
|
|
6437
|
-
|
|
6530
|
+
export declare class InvalidPolicyTypeException extends __BaseException {
|
|
6531
|
+
readonly name: "InvalidPolicyTypeException";
|
|
6532
|
+
readonly $fault: "client";
|
|
6533
|
+
/**
|
|
6534
|
+
* @internal
|
|
6535
|
+
*/
|
|
6536
|
+
constructor(opts: __ExceptionOptionType<InvalidPolicyTypeException, __BaseException>);
|
|
6438
6537
|
}
|
|
6439
6538
|
/**
|
|
6440
6539
|
* <p>The parameter already exists. You can't create duplicate parameters.</p>
|
|
6441
6540
|
*/
|
|
6442
|
-
export
|
|
6443
|
-
name: "ParameterAlreadyExists";
|
|
6444
|
-
$fault: "client";
|
|
6445
|
-
|
|
6541
|
+
export declare class ParameterAlreadyExists extends __BaseException {
|
|
6542
|
+
readonly name: "ParameterAlreadyExists";
|
|
6543
|
+
readonly $fault: "client";
|
|
6544
|
+
/**
|
|
6545
|
+
* @internal
|
|
6546
|
+
*/
|
|
6547
|
+
constructor(opts: __ExceptionOptionType<ParameterAlreadyExists, __BaseException>);
|
|
6446
6548
|
}
|
|
6447
6549
|
/**
|
|
6448
6550
|
* <p>You have exceeded the number of parameters for this Amazon Web Services account. Delete one or more
|
|
6449
6551
|
* parameters and try again.</p>
|
|
6450
6552
|
*/
|
|
6451
|
-
export
|
|
6452
|
-
name: "ParameterLimitExceeded";
|
|
6453
|
-
$fault: "client";
|
|
6454
|
-
|
|
6553
|
+
export declare class ParameterLimitExceeded extends __BaseException {
|
|
6554
|
+
readonly name: "ParameterLimitExceeded";
|
|
6555
|
+
readonly $fault: "client";
|
|
6556
|
+
/**
|
|
6557
|
+
* @internal
|
|
6558
|
+
*/
|
|
6559
|
+
constructor(opts: __ExceptionOptionType<ParameterLimitExceeded, __BaseException>);
|
|
6455
6560
|
}
|
|
6456
6561
|
/**
|
|
6457
6562
|
* <p>Parameter Store retains the 100 most recently created versions of a parameter. After this
|
|
@@ -6471,30 +6576,36 @@ export interface ParameterLimitExceeded extends __SmithyException, $MetadataBear
|
|
|
6471
6576
|
* oldest version of the parameter to a newer one for use in your operations. For information about
|
|
6472
6577
|
* moving parameter labels, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-console-move">Move a parameter label (console)</a> or <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-labels.html#sysman-paramstore-labels-cli-move">Move a parameter label (CLI)</a> in the <i>Amazon Web Services Systems Manager User Guide</i>. </p>
|
|
6473
6578
|
*/
|
|
6474
|
-
export
|
|
6475
|
-
name: "ParameterMaxVersionLimitExceeded";
|
|
6476
|
-
$fault: "client";
|
|
6477
|
-
|
|
6579
|
+
export declare class ParameterMaxVersionLimitExceeded extends __BaseException {
|
|
6580
|
+
readonly name: "ParameterMaxVersionLimitExceeded";
|
|
6581
|
+
readonly $fault: "client";
|
|
6582
|
+
/**
|
|
6583
|
+
* @internal
|
|
6584
|
+
*/
|
|
6585
|
+
constructor(opts: __ExceptionOptionType<ParameterMaxVersionLimitExceeded, __BaseException>);
|
|
6478
6586
|
}
|
|
6479
6587
|
/**
|
|
6480
6588
|
* <p>The parameter name isn't valid.</p>
|
|
6481
6589
|
*/
|
|
6482
|
-
export
|
|
6483
|
-
name: "ParameterPatternMismatchException";
|
|
6484
|
-
$fault: "client";
|
|
6590
|
+
export declare class ParameterPatternMismatchException extends __BaseException {
|
|
6591
|
+
readonly name: "ParameterPatternMismatchException";
|
|
6592
|
+
readonly $fault: "client";
|
|
6485
6593
|
/**
|
|
6486
|
-
*
|
|
6594
|
+
* @internal
|
|
6487
6595
|
*/
|
|
6488
|
-
|
|
6596
|
+
constructor(opts: __ExceptionOptionType<ParameterPatternMismatchException, __BaseException>);
|
|
6489
6597
|
}
|
|
6490
6598
|
/**
|
|
6491
6599
|
* <p>You specified more than the maximum number of allowed policies for the parameter. The
|
|
6492
6600
|
* maximum is 10.</p>
|
|
6493
6601
|
*/
|
|
6494
|
-
export
|
|
6495
|
-
name: "PoliciesLimitExceededException";
|
|
6496
|
-
$fault: "client";
|
|
6497
|
-
|
|
6602
|
+
export declare class PoliciesLimitExceededException extends __BaseException {
|
|
6603
|
+
readonly name: "PoliciesLimitExceededException";
|
|
6604
|
+
readonly $fault: "client";
|
|
6605
|
+
/**
|
|
6606
|
+
* @internal
|
|
6607
|
+
*/
|
|
6608
|
+
constructor(opts: __ExceptionOptionType<PoliciesLimitExceededException, __BaseException>);
|
|
6498
6609
|
}
|
|
6499
6610
|
export interface PutParameterRequest {
|
|
6500
6611
|
/**
|
|
@@ -6771,10 +6882,13 @@ export declare namespace PutParameterResult {
|
|
|
6771
6882
|
/**
|
|
6772
6883
|
* <p>The parameter type isn't supported.</p>
|
|
6773
6884
|
*/
|
|
6774
|
-
export
|
|
6775
|
-
name: "UnsupportedParameterType";
|
|
6776
|
-
$fault: "client";
|
|
6777
|
-
|
|
6885
|
+
export declare class UnsupportedParameterType extends __BaseException {
|
|
6886
|
+
readonly name: "UnsupportedParameterType";
|
|
6887
|
+
readonly $fault: "client";
|
|
6888
|
+
/**
|
|
6889
|
+
* @internal
|
|
6890
|
+
*/
|
|
6891
|
+
constructor(opts: __ExceptionOptionType<UnsupportedParameterType, __BaseException>);
|
|
6778
6892
|
}
|
|
6779
6893
|
export interface RegisterDefaultPatchBaselineRequest {
|
|
6780
6894
|
/**
|
|
@@ -6932,10 +7046,14 @@ export declare namespace RegisterTargetWithMaintenanceWindowResult {
|
|
|
6932
7046
|
* <p>You attempted to register a <code>LAMBDA</code> or <code>STEP_FUNCTIONS</code> task in a
|
|
6933
7047
|
* region where the corresponding service isn't available. </p>
|
|
6934
7048
|
*/
|
|
6935
|
-
export
|
|
6936
|
-
name: "FeatureNotAvailableException";
|
|
6937
|
-
$fault: "client";
|
|
7049
|
+
export declare class FeatureNotAvailableException extends __BaseException {
|
|
7050
|
+
readonly name: "FeatureNotAvailableException";
|
|
7051
|
+
readonly $fault: "client";
|
|
6938
7052
|
Message?: string;
|
|
7053
|
+
/**
|
|
7054
|
+
* @internal
|
|
7055
|
+
*/
|
|
7056
|
+
constructor(opts: __ExceptionOptionType<FeatureNotAvailableException, __BaseException>);
|
|
6939
7057
|
}
|
|
6940
7058
|
export interface RegisterTaskWithMaintenanceWindowRequest {
|
|
6941
7059
|
/**
|
|
@@ -7272,18 +7390,26 @@ export declare namespace ResumeSessionResponse {
|
|
|
7272
7390
|
* <p>The specified step name and execution ID don't exist. Verify the information and try
|
|
7273
7391
|
* again.</p>
|
|
7274
7392
|
*/
|
|
7275
|
-
export
|
|
7276
|
-
name: "AutomationStepNotFoundException";
|
|
7277
|
-
$fault: "client";
|
|
7393
|
+
export declare class AutomationStepNotFoundException extends __BaseException {
|
|
7394
|
+
readonly name: "AutomationStepNotFoundException";
|
|
7395
|
+
readonly $fault: "client";
|
|
7278
7396
|
Message?: string;
|
|
7397
|
+
/**
|
|
7398
|
+
* @internal
|
|
7399
|
+
*/
|
|
7400
|
+
constructor(opts: __ExceptionOptionType<AutomationStepNotFoundException, __BaseException>);
|
|
7279
7401
|
}
|
|
7280
7402
|
/**
|
|
7281
7403
|
* <p>The signal isn't valid for the current Automation execution.</p>
|
|
7282
7404
|
*/
|
|
7283
|
-
export
|
|
7284
|
-
name: "InvalidAutomationSignalException";
|
|
7285
|
-
$fault: "client";
|
|
7405
|
+
export declare class InvalidAutomationSignalException extends __BaseException {
|
|
7406
|
+
readonly name: "InvalidAutomationSignalException";
|
|
7407
|
+
readonly $fault: "client";
|
|
7286
7408
|
Message?: string;
|
|
7409
|
+
/**
|
|
7410
|
+
* @internal
|
|
7411
|
+
*/
|
|
7412
|
+
constructor(opts: __ExceptionOptionType<InvalidAutomationSignalException, __BaseException>);
|
|
7287
7413
|
}
|
|
7288
7414
|
export declare enum SignalType {
|
|
7289
7415
|
APPROVE = "Approve",
|
|
@@ -7343,27 +7469,39 @@ export declare namespace SendAutomationSignalResult {
|
|
|
7343
7469
|
* <p>One or more configuration items isn't valid. Verify that a valid Amazon Resource Name (ARN)
|
|
7344
7470
|
* was provided for an Amazon Simple Notification Service topic.</p>
|
|
7345
7471
|
*/
|
|
7346
|
-
export
|
|
7347
|
-
name: "InvalidNotificationConfig";
|
|
7348
|
-
$fault: "client";
|
|
7472
|
+
export declare class InvalidNotificationConfig extends __BaseException {
|
|
7473
|
+
readonly name: "InvalidNotificationConfig";
|
|
7474
|
+
readonly $fault: "client";
|
|
7349
7475
|
Message?: string;
|
|
7476
|
+
/**
|
|
7477
|
+
* @internal
|
|
7478
|
+
*/
|
|
7479
|
+
constructor(opts: __ExceptionOptionType<InvalidNotificationConfig, __BaseException>);
|
|
7350
7480
|
}
|
|
7351
7481
|
/**
|
|
7352
7482
|
* <p>The S3 bucket doesn't exist.</p>
|
|
7353
7483
|
*/
|
|
7354
|
-
export
|
|
7355
|
-
name: "InvalidOutputFolder";
|
|
7356
|
-
$fault: "client";
|
|
7484
|
+
export declare class InvalidOutputFolder extends __BaseException {
|
|
7485
|
+
readonly name: "InvalidOutputFolder";
|
|
7486
|
+
readonly $fault: "client";
|
|
7487
|
+
/**
|
|
7488
|
+
* @internal
|
|
7489
|
+
*/
|
|
7490
|
+
constructor(opts: __ExceptionOptionType<InvalidOutputFolder, __BaseException>);
|
|
7357
7491
|
}
|
|
7358
7492
|
/**
|
|
7359
7493
|
* <p>The role name can't contain invalid characters. Also verify that you specified an IAM role for notifications that includes the required trust policy. For information about
|
|
7360
7494
|
* configuring the IAM role for Run Command notifications, see <a href="https://docs.aws.amazon.com/systems-manager/latest/userguide/rc-sns-notifications.html">Configuring Amazon SNS Notifications for Run Command</a> in the
|
|
7361
7495
|
* <i>Amazon Web Services Systems Manager User Guide</i>.</p>
|
|
7362
7496
|
*/
|
|
7363
|
-
export
|
|
7364
|
-
name: "InvalidRole";
|
|
7365
|
-
$fault: "client";
|
|
7497
|
+
export declare class InvalidRole extends __BaseException {
|
|
7498
|
+
readonly name: "InvalidRole";
|
|
7499
|
+
readonly $fault: "client";
|
|
7366
7500
|
Message?: string;
|
|
7501
|
+
/**
|
|
7502
|
+
* @internal
|
|
7503
|
+
*/
|
|
7504
|
+
constructor(opts: __ExceptionOptionType<InvalidRole, __BaseException>);
|
|
7367
7505
|
}
|
|
7368
7506
|
export interface SendCommandRequest {
|
|
7369
7507
|
/**
|
|
@@ -7506,10 +7644,14 @@ export declare namespace SendCommandResult {
|
|
|
7506
7644
|
/**
|
|
7507
7645
|
* <p>The association isn't valid or doesn't exist. </p>
|
|
7508
7646
|
*/
|
|
7509
|
-
export
|
|
7510
|
-
name: "InvalidAssociation";
|
|
7511
|
-
$fault: "client";
|
|
7647
|
+
export declare class InvalidAssociation extends __BaseException {
|
|
7648
|
+
readonly name: "InvalidAssociation";
|
|
7649
|
+
readonly $fault: "client";
|
|
7512
7650
|
Message?: string;
|
|
7651
|
+
/**
|
|
7652
|
+
* @internal
|
|
7653
|
+
*/
|
|
7654
|
+
constructor(opts: __ExceptionOptionType<InvalidAssociation, __BaseException>);
|
|
7513
7655
|
}
|
|
7514
7656
|
export interface StartAssociationsOnceRequest {
|
|
7515
7657
|
/**
|
|
@@ -7534,37 +7676,53 @@ export declare namespace StartAssociationsOnceResult {
|
|
|
7534
7676
|
/**
|
|
7535
7677
|
* <p>An Automation runbook with the specified name couldn't be found.</p>
|
|
7536
7678
|
*/
|
|
7537
|
-
export
|
|
7538
|
-
name: "AutomationDefinitionNotFoundException";
|
|
7539
|
-
$fault: "client";
|
|
7679
|
+
export declare class AutomationDefinitionNotFoundException extends __BaseException {
|
|
7680
|
+
readonly name: "AutomationDefinitionNotFoundException";
|
|
7681
|
+
readonly $fault: "client";
|
|
7540
7682
|
Message?: string;
|
|
7683
|
+
/**
|
|
7684
|
+
* @internal
|
|
7685
|
+
*/
|
|
7686
|
+
constructor(opts: __ExceptionOptionType<AutomationDefinitionNotFoundException, __BaseException>);
|
|
7541
7687
|
}
|
|
7542
7688
|
/**
|
|
7543
7689
|
* <p>An Automation runbook with the specified name and version couldn't be found.</p>
|
|
7544
7690
|
*/
|
|
7545
|
-
export
|
|
7546
|
-
name: "AutomationDefinitionVersionNotFoundException";
|
|
7547
|
-
$fault: "client";
|
|
7691
|
+
export declare class AutomationDefinitionVersionNotFoundException extends __BaseException {
|
|
7692
|
+
readonly name: "AutomationDefinitionVersionNotFoundException";
|
|
7693
|
+
readonly $fault: "client";
|
|
7548
7694
|
Message?: string;
|
|
7695
|
+
/**
|
|
7696
|
+
* @internal
|
|
7697
|
+
*/
|
|
7698
|
+
constructor(opts: __ExceptionOptionType<AutomationDefinitionVersionNotFoundException, __BaseException>);
|
|
7549
7699
|
}
|
|
7550
7700
|
/**
|
|
7551
7701
|
* <p>The number of simultaneously running Automation executions exceeded the allowable
|
|
7552
7702
|
* limit.</p>
|
|
7553
7703
|
*/
|
|
7554
|
-
export
|
|
7555
|
-
name: "AutomationExecutionLimitExceededException";
|
|
7556
|
-
$fault: "client";
|
|
7704
|
+
export declare class AutomationExecutionLimitExceededException extends __BaseException {
|
|
7705
|
+
readonly name: "AutomationExecutionLimitExceededException";
|
|
7706
|
+
readonly $fault: "client";
|
|
7557
7707
|
Message?: string;
|
|
7708
|
+
/**
|
|
7709
|
+
* @internal
|
|
7710
|
+
*/
|
|
7711
|
+
constructor(opts: __ExceptionOptionType<AutomationExecutionLimitExceededException, __BaseException>);
|
|
7558
7712
|
}
|
|
7559
7713
|
/**
|
|
7560
7714
|
* <p>The supplied parameters for invoking the specified Automation runbook are incorrect. For
|
|
7561
7715
|
* example, they may not match the set of parameters permitted for the specified Automation
|
|
7562
7716
|
* document.</p>
|
|
7563
7717
|
*/
|
|
7564
|
-
export
|
|
7565
|
-
name: "InvalidAutomationExecutionParametersException";
|
|
7566
|
-
$fault: "client";
|
|
7718
|
+
export declare class InvalidAutomationExecutionParametersException extends __BaseException {
|
|
7719
|
+
readonly name: "InvalidAutomationExecutionParametersException";
|
|
7720
|
+
readonly $fault: "client";
|
|
7567
7721
|
Message?: string;
|
|
7722
|
+
/**
|
|
7723
|
+
* @internal
|
|
7724
|
+
*/
|
|
7725
|
+
constructor(opts: __ExceptionOptionType<InvalidAutomationExecutionParametersException, __BaseException>);
|
|
7568
7726
|
}
|
|
7569
7727
|
export interface StartAutomationExecutionRequest {
|
|
7570
7728
|
/**
|
|
@@ -7684,10 +7842,14 @@ export declare namespace StartAutomationExecutionResult {
|
|
|
7684
7842
|
* <p>Indicates that the Change Manager change template used in the change request was rejected or is
|
|
7685
7843
|
* still in a pending state.</p>
|
|
7686
7844
|
*/
|
|
7687
|
-
export
|
|
7688
|
-
name: "AutomationDefinitionNotApprovedException";
|
|
7689
|
-
$fault: "client";
|
|
7845
|
+
export declare class AutomationDefinitionNotApprovedException extends __BaseException {
|
|
7846
|
+
readonly name: "AutomationDefinitionNotApprovedException";
|
|
7847
|
+
readonly $fault: "client";
|
|
7690
7848
|
Message?: string;
|
|
7849
|
+
/**
|
|
7850
|
+
* @internal
|
|
7851
|
+
*/
|
|
7852
|
+
constructor(opts: __ExceptionOptionType<AutomationDefinitionNotApprovedException, __BaseException>);
|
|
7691
7853
|
}
|
|
7692
7854
|
export interface StartChangeRequestExecutionRequest {
|
|
7693
7855
|
/**
|
|
@@ -7862,18 +8024,26 @@ export declare namespace StartSessionResponse {
|
|
|
7862
8024
|
* attempt to start a session on a managed node that is located in a different account or
|
|
7863
8025
|
* Region</p>
|
|
7864
8026
|
*/
|
|
7865
|
-
export
|
|
7866
|
-
name: "TargetNotConnected";
|
|
7867
|
-
$fault: "client";
|
|
8027
|
+
export declare class TargetNotConnected extends __BaseException {
|
|
8028
|
+
readonly name: "TargetNotConnected";
|
|
8029
|
+
readonly $fault: "client";
|
|
7868
8030
|
Message?: string;
|
|
8031
|
+
/**
|
|
8032
|
+
* @internal
|
|
8033
|
+
*/
|
|
8034
|
+
constructor(opts: __ExceptionOptionType<TargetNotConnected, __BaseException>);
|
|
7869
8035
|
}
|
|
7870
8036
|
/**
|
|
7871
8037
|
* <p>The specified update status operation isn't valid.</p>
|
|
7872
8038
|
*/
|
|
7873
|
-
export
|
|
7874
|
-
name: "InvalidAutomationStatusUpdateException";
|
|
7875
|
-
$fault: "client";
|
|
8039
|
+
export declare class InvalidAutomationStatusUpdateException extends __BaseException {
|
|
8040
|
+
readonly name: "InvalidAutomationStatusUpdateException";
|
|
8041
|
+
readonly $fault: "client";
|
|
7876
8042
|
Message?: string;
|
|
8043
|
+
/**
|
|
8044
|
+
* @internal
|
|
8045
|
+
*/
|
|
8046
|
+
constructor(opts: __ExceptionOptionType<InvalidAutomationStatusUpdateException, __BaseException>);
|
|
7877
8047
|
}
|
|
7878
8048
|
export declare enum StopType {
|
|
7879
8049
|
CANCEL = "Cancel",
|
|
@@ -7969,18 +8139,26 @@ export declare namespace UnlabelParameterVersionResult {
|
|
|
7969
8139
|
* <p>You have reached the maximum number versions allowed for an association. Each association
|
|
7970
8140
|
* has a limit of 1,000 versions. </p>
|
|
7971
8141
|
*/
|
|
7972
|
-
export
|
|
7973
|
-
name: "AssociationVersionLimitExceeded";
|
|
7974
|
-
$fault: "client";
|
|
8142
|
+
export declare class AssociationVersionLimitExceeded extends __BaseException {
|
|
8143
|
+
readonly name: "AssociationVersionLimitExceeded";
|
|
8144
|
+
readonly $fault: "client";
|
|
7975
8145
|
Message?: string;
|
|
8146
|
+
/**
|
|
8147
|
+
* @internal
|
|
8148
|
+
*/
|
|
8149
|
+
constructor(opts: __ExceptionOptionType<AssociationVersionLimitExceeded, __BaseException>);
|
|
7976
8150
|
}
|
|
7977
8151
|
/**
|
|
7978
8152
|
* <p>The update isn't valid.</p>
|
|
7979
8153
|
*/
|
|
7980
|
-
export
|
|
7981
|
-
name: "InvalidUpdate";
|
|
7982
|
-
$fault: "client";
|
|
8154
|
+
export declare class InvalidUpdate extends __BaseException {
|
|
8155
|
+
readonly name: "InvalidUpdate";
|
|
8156
|
+
readonly $fault: "client";
|
|
7983
8157
|
Message?: string;
|
|
8158
|
+
/**
|
|
8159
|
+
* @internal
|
|
8160
|
+
*/
|
|
8161
|
+
constructor(opts: __ExceptionOptionType<InvalidUpdate, __BaseException>);
|
|
7984
8162
|
}
|
|
7985
8163
|
export interface UpdateAssociationRequest {
|
|
7986
8164
|
/**
|
|
@@ -8141,9 +8319,13 @@ export declare namespace UpdateAssociationResult {
|
|
|
8141
8319
|
/**
|
|
8142
8320
|
* <p>The updated status is the same as the current status.</p>
|
|
8143
8321
|
*/
|
|
8144
|
-
export
|
|
8145
|
-
name: "StatusUnchanged";
|
|
8146
|
-
$fault: "client";
|
|
8322
|
+
export declare class StatusUnchanged extends __BaseException {
|
|
8323
|
+
readonly name: "StatusUnchanged";
|
|
8324
|
+
readonly $fault: "client";
|
|
8325
|
+
/**
|
|
8326
|
+
* @internal
|
|
8327
|
+
*/
|
|
8328
|
+
constructor(opts: __ExceptionOptionType<StatusUnchanged, __BaseException>);
|
|
8147
8329
|
}
|
|
8148
8330
|
export interface UpdateAssociationStatusRequest {
|
|
8149
8331
|
/**
|
|
@@ -8181,28 +8363,40 @@ export declare namespace UpdateAssociationStatusResult {
|
|
|
8181
8363
|
* <p>The document has too many versions. Delete one or more document versions and try
|
|
8182
8364
|
* again.</p>
|
|
8183
8365
|
*/
|
|
8184
|
-
export
|
|
8185
|
-
name: "DocumentVersionLimitExceeded";
|
|
8186
|
-
$fault: "client";
|
|
8366
|
+
export declare class DocumentVersionLimitExceeded extends __BaseException {
|
|
8367
|
+
readonly name: "DocumentVersionLimitExceeded";
|
|
8368
|
+
readonly $fault: "client";
|
|
8187
8369
|
Message?: string;
|
|
8370
|
+
/**
|
|
8371
|
+
* @internal
|
|
8372
|
+
*/
|
|
8373
|
+
constructor(opts: __ExceptionOptionType<DocumentVersionLimitExceeded, __BaseException>);
|
|
8188
8374
|
}
|
|
8189
8375
|
/**
|
|
8190
8376
|
* <p>The content of the association document matches another document. Change the content of the
|
|
8191
8377
|
* document and try again.</p>
|
|
8192
8378
|
*/
|
|
8193
|
-
export
|
|
8194
|
-
name: "DuplicateDocumentContent";
|
|
8195
|
-
$fault: "client";
|
|
8379
|
+
export declare class DuplicateDocumentContent extends __BaseException {
|
|
8380
|
+
readonly name: "DuplicateDocumentContent";
|
|
8381
|
+
readonly $fault: "client";
|
|
8196
8382
|
Message?: string;
|
|
8383
|
+
/**
|
|
8384
|
+
* @internal
|
|
8385
|
+
*/
|
|
8386
|
+
constructor(opts: __ExceptionOptionType<DuplicateDocumentContent, __BaseException>);
|
|
8197
8387
|
}
|
|
8198
8388
|
/**
|
|
8199
8389
|
* <p>The version name has already been used in this document. Specify a different version name,
|
|
8200
8390
|
* and then try again.</p>
|
|
8201
8391
|
*/
|
|
8202
|
-
export
|
|
8203
|
-
name: "DuplicateDocumentVersionName";
|
|
8204
|
-
$fault: "client";
|
|
8392
|
+
export declare class DuplicateDocumentVersionName extends __BaseException {
|
|
8393
|
+
readonly name: "DuplicateDocumentVersionName";
|
|
8394
|
+
readonly $fault: "client";
|
|
8205
8395
|
Message?: string;
|
|
8396
|
+
/**
|
|
8397
|
+
* @internal
|
|
8398
|
+
*/
|
|
8399
|
+
constructor(opts: __ExceptionOptionType<DuplicateDocumentVersionName, __BaseException>);
|
|
8206
8400
|
}
|
|
8207
8401
|
export interface UpdateDocumentRequest {
|
|
8208
8402
|
/**
|