@aws-sdk/client-synthetics 3.300.0 → 3.303.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.
Files changed (26) hide show
  1. package/dist-cjs/models/models_0.js +38 -43
  2. package/dist-es/models/models_0.js +38 -43
  3. package/dist-types/commands/AssociateResourceCommand.d.ts +1 -1
  4. package/dist-types/commands/CreateCanaryCommand.d.ts +11 -11
  5. package/dist-types/commands/CreateGroupCommand.d.ts +2 -2
  6. package/dist-types/commands/DeleteCanaryCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteGroupCommand.d.ts +1 -1
  8. package/dist-types/commands/DescribeCanariesCommand.d.ts +2 -2
  9. package/dist-types/commands/DescribeCanariesLastRunCommand.d.ts +2 -2
  10. package/dist-types/commands/DescribeRuntimeVersionsCommand.d.ts +1 -1
  11. package/dist-types/commands/DisassociateResourceCommand.d.ts +1 -1
  12. package/dist-types/commands/GetCanaryCommand.d.ts +1 -1
  13. package/dist-types/commands/GetCanaryRunsCommand.d.ts +1 -1
  14. package/dist-types/commands/GetGroupCommand.d.ts +1 -1
  15. package/dist-types/commands/ListAssociatedGroupsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListGroupResourcesCommand.d.ts +1 -1
  17. package/dist-types/commands/ListGroupsCommand.d.ts +1 -1
  18. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  19. package/dist-types/commands/StartCanaryCommand.d.ts +1 -1
  20. package/dist-types/commands/StopCanaryCommand.d.ts +1 -1
  21. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  22. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  23. package/dist-types/commands/UpdateCanaryCommand.d.ts +14 -14
  24. package/dist-types/models/models_0.d.ts +63 -38
  25. package/dist-types/ts3.4/models/models_0.d.ts +47 -38
  26. package/package.json +34 -34
@@ -2,11 +2,10 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.TooManyRequestsException = exports.NotFoundException = exports.InternalFailureException = exports.RequestEntityTooLargeException = exports.CanaryRunStateReasonCode = exports.CanaryRunState = exports.CanaryStateReasonCode = exports.CanaryState = exports.BadRequestException = exports.ValidationException = exports.ServiceQuotaExceededException = exports.ResourceNotFoundException = exports.InternalServerException = exports.ConflictException = exports.EncryptionMode = void 0;
4
4
  const SyntheticsServiceException_1 = require("./SyntheticsServiceException");
5
- var EncryptionMode;
6
- (function (EncryptionMode) {
7
- EncryptionMode["SSE_KMS"] = "SSE_KMS";
8
- EncryptionMode["SSE_S3"] = "SSE_S3";
9
- })(EncryptionMode = exports.EncryptionMode || (exports.EncryptionMode = {}));
5
+ exports.EncryptionMode = {
6
+ SSE_KMS: "SSE_KMS",
7
+ SSE_S3: "SSE_S3",
8
+ };
10
9
  class ConflictException extends SyntheticsServiceException_1.SyntheticsServiceException {
11
10
  constructor(opts) {
12
11
  super({
@@ -91,44 +90,40 @@ class BadRequestException extends SyntheticsServiceException_1.SyntheticsService
91
90
  }
92
91
  }
93
92
  exports.BadRequestException = BadRequestException;
94
- var CanaryState;
95
- (function (CanaryState) {
96
- CanaryState["CREATING"] = "CREATING";
97
- CanaryState["DELETING"] = "DELETING";
98
- CanaryState["ERROR"] = "ERROR";
99
- CanaryState["READY"] = "READY";
100
- CanaryState["RUNNING"] = "RUNNING";
101
- CanaryState["STARTING"] = "STARTING";
102
- CanaryState["STOPPED"] = "STOPPED";
103
- CanaryState["STOPPING"] = "STOPPING";
104
- CanaryState["UPDATING"] = "UPDATING";
105
- })(CanaryState = exports.CanaryState || (exports.CanaryState = {}));
106
- var CanaryStateReasonCode;
107
- (function (CanaryStateReasonCode) {
108
- CanaryStateReasonCode["CREATE_FAILED"] = "CREATE_FAILED";
109
- CanaryStateReasonCode["CREATE_IN_PROGRESS"] = "CREATE_IN_PROGRESS";
110
- CanaryStateReasonCode["CREATE_PENDING"] = "CREATE_PENDING";
111
- CanaryStateReasonCode["DELETE_FAILED"] = "DELETE_FAILED";
112
- CanaryStateReasonCode["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
113
- CanaryStateReasonCode["INVALID_PERMISSIONS"] = "INVALID_PERMISSIONS";
114
- CanaryStateReasonCode["ROLLBACK_COMPLETE"] = "ROLLBACK_COMPLETE";
115
- CanaryStateReasonCode["ROLLBACK_FAILED"] = "ROLLBACK_FAILED";
116
- CanaryStateReasonCode["SYNC_DELETE_IN_PROGRESS"] = "SYNC_DELETE_IN_PROGRESS";
117
- CanaryStateReasonCode["UPDATE_COMPLETE"] = "UPDATE_COMPLETE";
118
- CanaryStateReasonCode["UPDATE_IN_PROGRESS"] = "UPDATE_IN_PROGRESS";
119
- CanaryStateReasonCode["UPDATE_PENDING"] = "UPDATE_PENDING";
120
- })(CanaryStateReasonCode = exports.CanaryStateReasonCode || (exports.CanaryStateReasonCode = {}));
121
- var CanaryRunState;
122
- (function (CanaryRunState) {
123
- CanaryRunState["FAILED"] = "FAILED";
124
- CanaryRunState["PASSED"] = "PASSED";
125
- CanaryRunState["RUNNING"] = "RUNNING";
126
- })(CanaryRunState = exports.CanaryRunState || (exports.CanaryRunState = {}));
127
- var CanaryRunStateReasonCode;
128
- (function (CanaryRunStateReasonCode) {
129
- CanaryRunStateReasonCode["CANARY_FAILURE"] = "CANARY_FAILURE";
130
- CanaryRunStateReasonCode["EXECUTION_FAILURE"] = "EXECUTION_FAILURE";
131
- })(CanaryRunStateReasonCode = exports.CanaryRunStateReasonCode || (exports.CanaryRunStateReasonCode = {}));
93
+ exports.CanaryState = {
94
+ CREATING: "CREATING",
95
+ DELETING: "DELETING",
96
+ ERROR: "ERROR",
97
+ READY: "READY",
98
+ RUNNING: "RUNNING",
99
+ STARTING: "STARTING",
100
+ STOPPED: "STOPPED",
101
+ STOPPING: "STOPPING",
102
+ UPDATING: "UPDATING",
103
+ };
104
+ exports.CanaryStateReasonCode = {
105
+ CREATE_FAILED: "CREATE_FAILED",
106
+ CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
107
+ CREATE_PENDING: "CREATE_PENDING",
108
+ DELETE_FAILED: "DELETE_FAILED",
109
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
110
+ INVALID_PERMISSIONS: "INVALID_PERMISSIONS",
111
+ ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE",
112
+ ROLLBACK_FAILED: "ROLLBACK_FAILED",
113
+ SYNC_DELETE_IN_PROGRESS: "SYNC_DELETE_IN_PROGRESS",
114
+ UPDATE_COMPLETE: "UPDATE_COMPLETE",
115
+ UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
116
+ UPDATE_PENDING: "UPDATE_PENDING",
117
+ };
118
+ exports.CanaryRunState = {
119
+ FAILED: "FAILED",
120
+ PASSED: "PASSED",
121
+ RUNNING: "RUNNING",
122
+ };
123
+ exports.CanaryRunStateReasonCode = {
124
+ CANARY_FAILURE: "CANARY_FAILURE",
125
+ EXECUTION_FAILURE: "EXECUTION_FAILURE",
126
+ };
132
127
  class RequestEntityTooLargeException extends SyntheticsServiceException_1.SyntheticsServiceException {
133
128
  constructor(opts) {
134
129
  super({
@@ -1,9 +1,8 @@
1
1
  import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException";
2
- export var EncryptionMode;
3
- (function (EncryptionMode) {
4
- EncryptionMode["SSE_KMS"] = "SSE_KMS";
5
- EncryptionMode["SSE_S3"] = "SSE_S3";
6
- })(EncryptionMode || (EncryptionMode = {}));
2
+ export const EncryptionMode = {
3
+ SSE_KMS: "SSE_KMS",
4
+ SSE_S3: "SSE_S3",
5
+ };
7
6
  export class ConflictException extends __BaseException {
8
7
  constructor(opts) {
9
8
  super({
@@ -82,44 +81,40 @@ export class BadRequestException extends __BaseException {
82
81
  this.Message = opts.Message;
83
82
  }
84
83
  }
85
- export var CanaryState;
86
- (function (CanaryState) {
87
- CanaryState["CREATING"] = "CREATING";
88
- CanaryState["DELETING"] = "DELETING";
89
- CanaryState["ERROR"] = "ERROR";
90
- CanaryState["READY"] = "READY";
91
- CanaryState["RUNNING"] = "RUNNING";
92
- CanaryState["STARTING"] = "STARTING";
93
- CanaryState["STOPPED"] = "STOPPED";
94
- CanaryState["STOPPING"] = "STOPPING";
95
- CanaryState["UPDATING"] = "UPDATING";
96
- })(CanaryState || (CanaryState = {}));
97
- export var CanaryStateReasonCode;
98
- (function (CanaryStateReasonCode) {
99
- CanaryStateReasonCode["CREATE_FAILED"] = "CREATE_FAILED";
100
- CanaryStateReasonCode["CREATE_IN_PROGRESS"] = "CREATE_IN_PROGRESS";
101
- CanaryStateReasonCode["CREATE_PENDING"] = "CREATE_PENDING";
102
- CanaryStateReasonCode["DELETE_FAILED"] = "DELETE_FAILED";
103
- CanaryStateReasonCode["DELETE_IN_PROGRESS"] = "DELETE_IN_PROGRESS";
104
- CanaryStateReasonCode["INVALID_PERMISSIONS"] = "INVALID_PERMISSIONS";
105
- CanaryStateReasonCode["ROLLBACK_COMPLETE"] = "ROLLBACK_COMPLETE";
106
- CanaryStateReasonCode["ROLLBACK_FAILED"] = "ROLLBACK_FAILED";
107
- CanaryStateReasonCode["SYNC_DELETE_IN_PROGRESS"] = "SYNC_DELETE_IN_PROGRESS";
108
- CanaryStateReasonCode["UPDATE_COMPLETE"] = "UPDATE_COMPLETE";
109
- CanaryStateReasonCode["UPDATE_IN_PROGRESS"] = "UPDATE_IN_PROGRESS";
110
- CanaryStateReasonCode["UPDATE_PENDING"] = "UPDATE_PENDING";
111
- })(CanaryStateReasonCode || (CanaryStateReasonCode = {}));
112
- export var CanaryRunState;
113
- (function (CanaryRunState) {
114
- CanaryRunState["FAILED"] = "FAILED";
115
- CanaryRunState["PASSED"] = "PASSED";
116
- CanaryRunState["RUNNING"] = "RUNNING";
117
- })(CanaryRunState || (CanaryRunState = {}));
118
- export var CanaryRunStateReasonCode;
119
- (function (CanaryRunStateReasonCode) {
120
- CanaryRunStateReasonCode["CANARY_FAILURE"] = "CANARY_FAILURE";
121
- CanaryRunStateReasonCode["EXECUTION_FAILURE"] = "EXECUTION_FAILURE";
122
- })(CanaryRunStateReasonCode || (CanaryRunStateReasonCode = {}));
84
+ export const CanaryState = {
85
+ CREATING: "CREATING",
86
+ DELETING: "DELETING",
87
+ ERROR: "ERROR",
88
+ READY: "READY",
89
+ RUNNING: "RUNNING",
90
+ STARTING: "STARTING",
91
+ STOPPED: "STOPPED",
92
+ STOPPING: "STOPPING",
93
+ UPDATING: "UPDATING",
94
+ };
95
+ export const CanaryStateReasonCode = {
96
+ CREATE_FAILED: "CREATE_FAILED",
97
+ CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS",
98
+ CREATE_PENDING: "CREATE_PENDING",
99
+ DELETE_FAILED: "DELETE_FAILED",
100
+ DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS",
101
+ INVALID_PERMISSIONS: "INVALID_PERMISSIONS",
102
+ ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE",
103
+ ROLLBACK_FAILED: "ROLLBACK_FAILED",
104
+ SYNC_DELETE_IN_PROGRESS: "SYNC_DELETE_IN_PROGRESS",
105
+ UPDATE_COMPLETE: "UPDATE_COMPLETE",
106
+ UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS",
107
+ UPDATE_PENDING: "UPDATE_PENDING",
108
+ };
109
+ export const CanaryRunState = {
110
+ FAILED: "FAILED",
111
+ PASSED: "PASSED",
112
+ RUNNING: "RUNNING",
113
+ };
114
+ export const CanaryRunStateReasonCode = {
115
+ CANARY_FAILURE: "CANARY_FAILURE",
116
+ EXECUTION_FAILURE: "EXECUTION_FAILURE",
117
+ };
123
118
  export class RequestEntityTooLargeException extends __BaseException {
124
119
  constructor(opts) {
125
120
  super({
@@ -29,7 +29,7 @@ export interface AssociateResourceCommandOutput extends AssociateResourceRespons
29
29
  * import { SyntheticsClient, AssociateResourceCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
30
30
  * // const { SyntheticsClient, AssociateResourceCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
31
31
  * const client = new SyntheticsClient(config);
32
- * const input = {
32
+ * const input = { // AssociateResourceRequest
33
33
  * GroupIdentifier: "STRING_VALUE", // required
34
34
  * ResourceArn: "STRING_VALUE", // required
35
35
  * };
@@ -39,9 +39,9 @@ export interface CreateCanaryCommandOutput extends CreateCanaryResponse, __Metad
39
39
  * import { SyntheticsClient, CreateCanaryCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
40
40
  * // const { SyntheticsClient, CreateCanaryCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
41
41
  * const client = new SyntheticsClient(config);
42
- * const input = {
42
+ * const input = { // CreateCanaryRequest
43
43
  * Name: "STRING_VALUE", // required
44
- * Code: {
44
+ * Code: { // CanaryCodeInput
45
45
  * S3Bucket: "STRING_VALUE",
46
46
  * S3Key: "STRING_VALUE",
47
47
  * S3Version: "STRING_VALUE",
@@ -50,34 +50,34 @@ export interface CreateCanaryCommandOutput extends CreateCanaryResponse, __Metad
50
50
  * },
51
51
  * ArtifactS3Location: "STRING_VALUE", // required
52
52
  * ExecutionRoleArn: "STRING_VALUE", // required
53
- * Schedule: {
53
+ * Schedule: { // CanaryScheduleInput
54
54
  * Expression: "STRING_VALUE", // required
55
55
  * DurationInSeconds: Number("long"),
56
56
  * },
57
- * RunConfig: {
57
+ * RunConfig: { // CanaryRunConfigInput
58
58
  * TimeoutInSeconds: Number("int"),
59
59
  * MemoryInMB: Number("int"),
60
60
  * ActiveTracing: true || false,
61
- * EnvironmentVariables: {
61
+ * EnvironmentVariables: { // EnvironmentVariablesMap
62
62
  * "<keys>": "STRING_VALUE",
63
63
  * },
64
64
  * },
65
65
  * SuccessRetentionPeriodInDays: Number("int"),
66
66
  * FailureRetentionPeriodInDays: Number("int"),
67
67
  * RuntimeVersion: "STRING_VALUE", // required
68
- * VpcConfig: {
69
- * SubnetIds: [
68
+ * VpcConfig: { // VpcConfigInput
69
+ * SubnetIds: [ // SubnetIds
70
70
  * "STRING_VALUE",
71
71
  * ],
72
- * SecurityGroupIds: [
72
+ * SecurityGroupIds: [ // SecurityGroupIds
73
73
  * "STRING_VALUE",
74
74
  * ],
75
75
  * },
76
- * Tags: {
76
+ * Tags: { // TagMap
77
77
  * "<keys>": "STRING_VALUE",
78
78
  * },
79
- * ArtifactConfig: {
80
- * S3Encryption: {
79
+ * ArtifactConfig: { // ArtifactConfigInput
80
+ * S3Encryption: { // S3EncryptionConfig
81
81
  * EncryptionMode: "STRING_VALUE",
82
82
  * KmsKeyArn: "STRING_VALUE",
83
83
  * },
@@ -38,9 +38,9 @@ export interface CreateGroupCommandOutput extends CreateGroupResponse, __Metadat
38
38
  * import { SyntheticsClient, CreateGroupCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
39
39
  * // const { SyntheticsClient, CreateGroupCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
40
40
  * const client = new SyntheticsClient(config);
41
- * const input = {
41
+ * const input = { // CreateGroupRequest
42
42
  * Name: "STRING_VALUE", // required
43
- * Tags: {
43
+ * Tags: { // TagMap
44
44
  * "<keys>": "STRING_VALUE",
45
45
  * },
46
46
  * };
@@ -58,7 +58,7 @@ export interface DeleteCanaryCommandOutput extends DeleteCanaryResponse, __Metad
58
58
  * import { SyntheticsClient, DeleteCanaryCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
59
59
  * // const { SyntheticsClient, DeleteCanaryCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
60
60
  * const client = new SyntheticsClient(config);
61
- * const input = {
61
+ * const input = { // DeleteCanaryRequest
62
62
  * Name: "STRING_VALUE", // required
63
63
  * DeleteLambda: true || false,
64
64
  * };
@@ -30,7 +30,7 @@ export interface DeleteGroupCommandOutput extends DeleteGroupResponse, __Metadat
30
30
  * import { SyntheticsClient, DeleteGroupCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
31
31
  * // const { SyntheticsClient, DeleteGroupCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
32
32
  * const client = new SyntheticsClient(config);
33
- * const input = {
33
+ * const input = { // DeleteGroupRequest
34
34
  * GroupIdentifier: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new DeleteGroupCommand(input);
@@ -35,10 +35,10 @@ export interface DescribeCanariesCommandOutput extends DescribeCanariesResponse,
35
35
  * import { SyntheticsClient, DescribeCanariesCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
36
36
  * // const { SyntheticsClient, DescribeCanariesCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
37
37
  * const client = new SyntheticsClient(config);
38
- * const input = {
38
+ * const input = { // DescribeCanariesRequest
39
39
  * NextToken: "STRING_VALUE",
40
40
  * MaxResults: Number("int"),
41
- * Names: [
41
+ * Names: [ // DescribeCanariesNameFilter
42
42
  * "STRING_VALUE",
43
43
  * ],
44
44
  * };
@@ -35,10 +35,10 @@ export interface DescribeCanariesLastRunCommandOutput extends DescribeCanariesLa
35
35
  * import { SyntheticsClient, DescribeCanariesLastRunCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
36
36
  * // const { SyntheticsClient, DescribeCanariesLastRunCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
37
37
  * const client = new SyntheticsClient(config);
38
- * const input = {
38
+ * const input = { // DescribeCanariesLastRunRequest
39
39
  * NextToken: "STRING_VALUE",
40
40
  * MaxResults: Number("int"),
41
- * Names: [
41
+ * Names: [ // DescribeCanariesLastRunNameFilter
42
42
  * "STRING_VALUE",
43
43
  * ],
44
44
  * };
@@ -28,7 +28,7 @@ export interface DescribeRuntimeVersionsCommandOutput extends DescribeRuntimeVer
28
28
  * import { SyntheticsClient, DescribeRuntimeVersionsCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
29
29
  * // const { SyntheticsClient, DescribeRuntimeVersionsCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
30
30
  * const client = new SyntheticsClient(config);
31
- * const input = {
31
+ * const input = { // DescribeRuntimeVersionsRequest
32
32
  * NextToken: "STRING_VALUE",
33
33
  * MaxResults: Number("int"),
34
34
  * };
@@ -26,7 +26,7 @@ export interface DisassociateResourceCommandOutput extends DisassociateResourceR
26
26
  * import { SyntheticsClient, DisassociateResourceCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
27
27
  * // const { SyntheticsClient, DisassociateResourceCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
28
28
  * const client = new SyntheticsClient(config);
29
- * const input = {
29
+ * const input = { // DisassociateResourceRequest
30
30
  * GroupIdentifier: "STRING_VALUE", // required
31
31
  * ResourceArn: "STRING_VALUE", // required
32
32
  * };
@@ -28,7 +28,7 @@ export interface GetCanaryCommandOutput extends GetCanaryResponse, __MetadataBea
28
28
  * import { SyntheticsClient, GetCanaryCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
29
29
  * // const { SyntheticsClient, GetCanaryCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
30
30
  * const client = new SyntheticsClient(config);
31
- * const input = {
31
+ * const input = { // GetCanaryRequest
32
32
  * Name: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new GetCanaryCommand(input);
@@ -26,7 +26,7 @@ export interface GetCanaryRunsCommandOutput extends GetCanaryRunsResponse, __Met
26
26
  * import { SyntheticsClient, GetCanaryRunsCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
27
27
  * // const { SyntheticsClient, GetCanaryRunsCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
28
28
  * const client = new SyntheticsClient(config);
29
- * const input = {
29
+ * const input = { // GetCanaryRunsRequest
30
30
  * Name: "STRING_VALUE", // required
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
@@ -27,7 +27,7 @@ export interface GetGroupCommandOutput extends GetGroupResponse, __MetadataBeare
27
27
  * import { SyntheticsClient, GetGroupCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
28
28
  * // const { SyntheticsClient, GetGroupCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
29
29
  * const client = new SyntheticsClient(config);
30
- * const input = {
30
+ * const input = { // GetGroupRequest
31
31
  * GroupIdentifier: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new GetGroupCommand(input);
@@ -27,7 +27,7 @@ export interface ListAssociatedGroupsCommandOutput extends ListAssociatedGroupsR
27
27
  * import { SyntheticsClient, ListAssociatedGroupsCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
28
28
  * // const { SyntheticsClient, ListAssociatedGroupsCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
29
29
  * const client = new SyntheticsClient(config);
30
- * const input = {
30
+ * const input = { // ListAssociatedGroupsRequest
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
33
33
  * ResourceArn: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListGroupResourcesCommandOutput extends ListGroupResourcesRespo
26
26
  * import { SyntheticsClient, ListGroupResourcesCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
27
27
  * // const { SyntheticsClient, ListGroupResourcesCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
28
28
  * const client = new SyntheticsClient(config);
29
- * const input = {
29
+ * const input = { // ListGroupResourcesRequest
30
30
  * NextToken: "STRING_VALUE",
31
31
  * MaxResults: Number("int"),
32
32
  * GroupIdentifier: "STRING_VALUE", // required
@@ -27,7 +27,7 @@ export interface ListGroupsCommandOutput extends ListGroupsResponse, __MetadataB
27
27
  * import { SyntheticsClient, ListGroupsCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
28
28
  * // const { SyntheticsClient, ListGroupsCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
29
29
  * const client = new SyntheticsClient(config);
30
- * const input = {
30
+ * const input = { // ListGroupsRequest
31
31
  * NextToken: "STRING_VALUE",
32
32
  * MaxResults: Number("int"),
33
33
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { SyntheticsClient, ListTagsForResourceCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
27
27
  * // const { SyntheticsClient, ListTagsForResourceCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
28
28
  * const client = new SyntheticsClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -28,7 +28,7 @@ export interface StartCanaryCommandOutput extends StartCanaryResponse, __Metadat
28
28
  * import { SyntheticsClient, StartCanaryCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
29
29
  * // const { SyntheticsClient, StartCanaryCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
30
30
  * const client = new SyntheticsClient(config);
31
- * const input = {
31
+ * const input = { // StartCanaryRequest
32
32
  * Name: "STRING_VALUE", // required
33
33
  * };
34
34
  * const command = new StartCanaryCommand(input);
@@ -30,7 +30,7 @@ export interface StopCanaryCommandOutput extends StopCanaryResponse, __MetadataB
30
30
  * import { SyntheticsClient, StopCanaryCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
31
31
  * // const { SyntheticsClient, StopCanaryCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
32
32
  * const client = new SyntheticsClient(config);
33
- * const input = {
33
+ * const input = { // StopCanaryRequest
34
34
  * Name: "STRING_VALUE", // required
35
35
  * };
36
36
  * const command = new StopCanaryCommand(input);
@@ -37,9 +37,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
37
37
  * import { SyntheticsClient, TagResourceCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
38
38
  * // const { SyntheticsClient, TagResourceCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
39
39
  * const client = new SyntheticsClient(config);
40
- * const input = {
40
+ * const input = { // TagResourceRequest
41
41
  * ResourceArn: "STRING_VALUE", // required
42
- * Tags: { // required
42
+ * Tags: { // TagMap // required
43
43
  * "<keys>": "STRING_VALUE",
44
44
  * },
45
45
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { SyntheticsClient, UntagResourceCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
27
27
  * // const { SyntheticsClient, UntagResourceCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
28
28
  * const client = new SyntheticsClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * ResourceArn: "STRING_VALUE", // required
31
- * TagKeys: [ // required
31
+ * TagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -30,9 +30,9 @@ export interface UpdateCanaryCommandOutput extends UpdateCanaryResponse, __Metad
30
30
  * import { SyntheticsClient, UpdateCanaryCommand } from "@aws-sdk/client-synthetics"; // ES Modules import
31
31
  * // const { SyntheticsClient, UpdateCanaryCommand } = require("@aws-sdk/client-synthetics"); // CommonJS import
32
32
  * const client = new SyntheticsClient(config);
33
- * const input = {
33
+ * const input = { // UpdateCanaryRequest
34
34
  * Name: "STRING_VALUE", // required
35
- * Code: {
35
+ * Code: { // CanaryCodeInput
36
36
  * S3Bucket: "STRING_VALUE",
37
37
  * S3Key: "STRING_VALUE",
38
38
  * S3Version: "STRING_VALUE",
@@ -41,33 +41,33 @@ export interface UpdateCanaryCommandOutput extends UpdateCanaryResponse, __Metad
41
41
  * },
42
42
  * ExecutionRoleArn: "STRING_VALUE",
43
43
  * RuntimeVersion: "STRING_VALUE",
44
- * Schedule: {
44
+ * Schedule: { // CanaryScheduleInput
45
45
  * Expression: "STRING_VALUE", // required
46
46
  * DurationInSeconds: Number("long"),
47
47
  * },
48
- * RunConfig: {
48
+ * RunConfig: { // CanaryRunConfigInput
49
49
  * TimeoutInSeconds: Number("int"),
50
50
  * MemoryInMB: Number("int"),
51
51
  * ActiveTracing: true || false,
52
- * EnvironmentVariables: {
52
+ * EnvironmentVariables: { // EnvironmentVariablesMap
53
53
  * "<keys>": "STRING_VALUE",
54
54
  * },
55
55
  * },
56
56
  * SuccessRetentionPeriodInDays: Number("int"),
57
57
  * FailureRetentionPeriodInDays: Number("int"),
58
- * VpcConfig: {
59
- * SubnetIds: [
58
+ * VpcConfig: { // VpcConfigInput
59
+ * SubnetIds: [ // SubnetIds
60
60
  * "STRING_VALUE",
61
61
  * ],
62
- * SecurityGroupIds: [
62
+ * SecurityGroupIds: [ // SecurityGroupIds
63
63
  * "STRING_VALUE",
64
64
  * ],
65
65
  * },
66
- * VisualReference: {
67
- * BaseScreenshots: [
68
- * {
66
+ * VisualReference: { // VisualReferenceInput
67
+ * BaseScreenshots: [ // BaseScreenshots
68
+ * { // BaseScreenshot
69
69
  * ScreenshotName: "STRING_VALUE", // required
70
- * IgnoreCoordinates: [
70
+ * IgnoreCoordinates: [ // BaseScreenshotIgnoreCoordinates
71
71
  * "STRING_VALUE",
72
72
  * ],
73
73
  * },
@@ -75,8 +75,8 @@ export interface UpdateCanaryCommandOutput extends UpdateCanaryResponse, __Metad
75
75
  * BaseCanaryRunId: "STRING_VALUE", // required
76
76
  * },
77
77
  * ArtifactS3Location: "STRING_VALUE",
78
- * ArtifactConfig: {
79
- * S3Encryption: {
78
+ * ArtifactConfig: { // ArtifactConfigInput
79
+ * S3Encryption: { // S3EncryptionConfig
80
80
  * EncryptionMode: "STRING_VALUE",
81
81
  * KmsKeyArn: "STRING_VALUE",
82
82
  * },
@@ -2,11 +2,16 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException";
3
3
  /**
4
4
  * @public
5
+ * @enum
5
6
  */
6
- export declare enum EncryptionMode {
7
- SSE_KMS = "SSE_KMS",
8
- SSE_S3 = "SSE_S3"
9
- }
7
+ export declare const EncryptionMode: {
8
+ readonly SSE_KMS: "SSE_KMS";
9
+ readonly SSE_S3: "SSE_S3";
10
+ };
11
+ /**
12
+ * @public
13
+ */
14
+ export type EncryptionMode = (typeof EncryptionMode)[keyof typeof EncryptionMode];
10
15
  /**
11
16
  * @public
12
17
  * <p>A structure that contains the configuration of encryption-at-rest settings for canary artifacts that the canary
@@ -242,35 +247,45 @@ export interface CanaryScheduleOutput {
242
247
  }
243
248
  /**
244
249
  * @public
250
+ * @enum
245
251
  */
246
- export declare enum CanaryState {
247
- CREATING = "CREATING",
248
- DELETING = "DELETING",
249
- ERROR = "ERROR",
250
- READY = "READY",
251
- RUNNING = "RUNNING",
252
- STARTING = "STARTING",
253
- STOPPED = "STOPPED",
254
- STOPPING = "STOPPING",
255
- UPDATING = "UPDATING"
256
- }
252
+ export declare const CanaryState: {
253
+ readonly CREATING: "CREATING";
254
+ readonly DELETING: "DELETING";
255
+ readonly ERROR: "ERROR";
256
+ readonly READY: "READY";
257
+ readonly RUNNING: "RUNNING";
258
+ readonly STARTING: "STARTING";
259
+ readonly STOPPED: "STOPPED";
260
+ readonly STOPPING: "STOPPING";
261
+ readonly UPDATING: "UPDATING";
262
+ };
257
263
  /**
258
264
  * @public
259
265
  */
260
- export declare enum CanaryStateReasonCode {
261
- CREATE_FAILED = "CREATE_FAILED",
262
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
263
- CREATE_PENDING = "CREATE_PENDING",
264
- DELETE_FAILED = "DELETE_FAILED",
265
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
266
- INVALID_PERMISSIONS = "INVALID_PERMISSIONS",
267
- ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
268
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
269
- SYNC_DELETE_IN_PROGRESS = "SYNC_DELETE_IN_PROGRESS",
270
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
271
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
272
- UPDATE_PENDING = "UPDATE_PENDING"
273
- }
266
+ export type CanaryState = (typeof CanaryState)[keyof typeof CanaryState];
267
+ /**
268
+ * @public
269
+ * @enum
270
+ */
271
+ export declare const CanaryStateReasonCode: {
272
+ readonly CREATE_FAILED: "CREATE_FAILED";
273
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
274
+ readonly CREATE_PENDING: "CREATE_PENDING";
275
+ readonly DELETE_FAILED: "DELETE_FAILED";
276
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
277
+ readonly INVALID_PERMISSIONS: "INVALID_PERMISSIONS";
278
+ readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
279
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
280
+ readonly SYNC_DELETE_IN_PROGRESS: "SYNC_DELETE_IN_PROGRESS";
281
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
282
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
283
+ readonly UPDATE_PENDING: "UPDATE_PENDING";
284
+ };
285
+ /**
286
+ * @public
287
+ */
288
+ export type CanaryStateReasonCode = (typeof CanaryStateReasonCode)[keyof typeof CanaryStateReasonCode];
274
289
  /**
275
290
  * @public
276
291
  * <p>A structure that contains the current state of the canary.</p>
@@ -438,19 +453,29 @@ export interface Canary {
438
453
  }
439
454
  /**
440
455
  * @public
456
+ * @enum
441
457
  */
442
- export declare enum CanaryRunState {
443
- FAILED = "FAILED",
444
- PASSED = "PASSED",
445
- RUNNING = "RUNNING"
446
- }
458
+ export declare const CanaryRunState: {
459
+ readonly FAILED: "FAILED";
460
+ readonly PASSED: "PASSED";
461
+ readonly RUNNING: "RUNNING";
462
+ };
447
463
  /**
448
464
  * @public
449
465
  */
450
- export declare enum CanaryRunStateReasonCode {
451
- CANARY_FAILURE = "CANARY_FAILURE",
452
- EXECUTION_FAILURE = "EXECUTION_FAILURE"
453
- }
466
+ export type CanaryRunState = (typeof CanaryRunState)[keyof typeof CanaryRunState];
467
+ /**
468
+ * @public
469
+ * @enum
470
+ */
471
+ export declare const CanaryRunStateReasonCode: {
472
+ readonly CANARY_FAILURE: "CANARY_FAILURE";
473
+ readonly EXECUTION_FAILURE: "EXECUTION_FAILURE";
474
+ };
475
+ /**
476
+ * @public
477
+ */
478
+ export type CanaryRunStateReasonCode = (typeof CanaryRunStateReasonCode)[keyof typeof CanaryRunStateReasonCode];
454
479
  /**
455
480
  * @public
456
481
  * <p>This structure contains the status information about a canary run.</p>
@@ -1,9 +1,11 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { SyntheticsServiceException as __BaseException } from "./SyntheticsServiceException";
3
- export declare enum EncryptionMode {
4
- SSE_KMS = "SSE_KMS",
5
- SSE_S3 = "SSE_S3",
6
- }
3
+ export declare const EncryptionMode: {
4
+ readonly SSE_KMS: "SSE_KMS";
5
+ readonly SSE_S3: "SSE_S3";
6
+ };
7
+ export type EncryptionMode =
8
+ (typeof EncryptionMode)[keyof typeof EncryptionMode];
7
9
  export interface S3EncryptionConfig {
8
10
  EncryptionMode?: EncryptionMode | string;
9
11
  KmsKeyArn?: string;
@@ -82,31 +84,34 @@ export interface CanaryScheduleOutput {
82
84
  Expression?: string;
83
85
  DurationInSeconds?: number;
84
86
  }
85
- export declare enum CanaryState {
86
- CREATING = "CREATING",
87
- DELETING = "DELETING",
88
- ERROR = "ERROR",
89
- READY = "READY",
90
- RUNNING = "RUNNING",
91
- STARTING = "STARTING",
92
- STOPPED = "STOPPED",
93
- STOPPING = "STOPPING",
94
- UPDATING = "UPDATING",
95
- }
96
- export declare enum CanaryStateReasonCode {
97
- CREATE_FAILED = "CREATE_FAILED",
98
- CREATE_IN_PROGRESS = "CREATE_IN_PROGRESS",
99
- CREATE_PENDING = "CREATE_PENDING",
100
- DELETE_FAILED = "DELETE_FAILED",
101
- DELETE_IN_PROGRESS = "DELETE_IN_PROGRESS",
102
- INVALID_PERMISSIONS = "INVALID_PERMISSIONS",
103
- ROLLBACK_COMPLETE = "ROLLBACK_COMPLETE",
104
- ROLLBACK_FAILED = "ROLLBACK_FAILED",
105
- SYNC_DELETE_IN_PROGRESS = "SYNC_DELETE_IN_PROGRESS",
106
- UPDATE_COMPLETE = "UPDATE_COMPLETE",
107
- UPDATE_IN_PROGRESS = "UPDATE_IN_PROGRESS",
108
- UPDATE_PENDING = "UPDATE_PENDING",
109
- }
87
+ export declare const CanaryState: {
88
+ readonly CREATING: "CREATING";
89
+ readonly DELETING: "DELETING";
90
+ readonly ERROR: "ERROR";
91
+ readonly READY: "READY";
92
+ readonly RUNNING: "RUNNING";
93
+ readonly STARTING: "STARTING";
94
+ readonly STOPPED: "STOPPED";
95
+ readonly STOPPING: "STOPPING";
96
+ readonly UPDATING: "UPDATING";
97
+ };
98
+ export type CanaryState = (typeof CanaryState)[keyof typeof CanaryState];
99
+ export declare const CanaryStateReasonCode: {
100
+ readonly CREATE_FAILED: "CREATE_FAILED";
101
+ readonly CREATE_IN_PROGRESS: "CREATE_IN_PROGRESS";
102
+ readonly CREATE_PENDING: "CREATE_PENDING";
103
+ readonly DELETE_FAILED: "DELETE_FAILED";
104
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
105
+ readonly INVALID_PERMISSIONS: "INVALID_PERMISSIONS";
106
+ readonly ROLLBACK_COMPLETE: "ROLLBACK_COMPLETE";
107
+ readonly ROLLBACK_FAILED: "ROLLBACK_FAILED";
108
+ readonly SYNC_DELETE_IN_PROGRESS: "SYNC_DELETE_IN_PROGRESS";
109
+ readonly UPDATE_COMPLETE: "UPDATE_COMPLETE";
110
+ readonly UPDATE_IN_PROGRESS: "UPDATE_IN_PROGRESS";
111
+ readonly UPDATE_PENDING: "UPDATE_PENDING";
112
+ };
113
+ export type CanaryStateReasonCode =
114
+ (typeof CanaryStateReasonCode)[keyof typeof CanaryStateReasonCode];
110
115
  export interface CanaryStatus {
111
116
  State?: CanaryState | string;
112
117
  StateReason?: string;
@@ -146,15 +151,19 @@ export interface Canary {
146
151
  Tags?: Record<string, string>;
147
152
  ArtifactConfig?: ArtifactConfigOutput;
148
153
  }
149
- export declare enum CanaryRunState {
150
- FAILED = "FAILED",
151
- PASSED = "PASSED",
152
- RUNNING = "RUNNING",
153
- }
154
- export declare enum CanaryRunStateReasonCode {
155
- CANARY_FAILURE = "CANARY_FAILURE",
156
- EXECUTION_FAILURE = "EXECUTION_FAILURE",
157
- }
154
+ export declare const CanaryRunState: {
155
+ readonly FAILED: "FAILED";
156
+ readonly PASSED: "PASSED";
157
+ readonly RUNNING: "RUNNING";
158
+ };
159
+ export type CanaryRunState =
160
+ (typeof CanaryRunState)[keyof typeof CanaryRunState];
161
+ export declare const CanaryRunStateReasonCode: {
162
+ readonly CANARY_FAILURE: "CANARY_FAILURE";
163
+ readonly EXECUTION_FAILURE: "EXECUTION_FAILURE";
164
+ };
165
+ export type CanaryRunStateReasonCode =
166
+ (typeof CanaryRunStateReasonCode)[keyof typeof CanaryRunStateReasonCode];
158
167
  export interface CanaryRunStatus {
159
168
  State?: CanaryRunState | string;
160
169
  StateReason?: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-synthetics",
3
3
  "description": "AWS SDK for JavaScript Synthetics Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.303.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,42 +21,42 @@
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.300.0",
25
- "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
27
- "@aws-sdk/fetch-http-handler": "3.296.0",
28
- "@aws-sdk/hash-node": "3.296.0",
29
- "@aws-sdk/invalid-dependency": "3.296.0",
30
- "@aws-sdk/middleware-content-length": "3.296.0",
31
- "@aws-sdk/middleware-endpoint": "3.299.0",
32
- "@aws-sdk/middleware-host-header": "3.296.0",
33
- "@aws-sdk/middleware-logger": "3.296.0",
34
- "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.300.0",
36
- "@aws-sdk/middleware-serde": "3.296.0",
37
- "@aws-sdk/middleware-signing": "3.299.0",
38
- "@aws-sdk/middleware-stack": "3.296.0",
39
- "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.300.0",
41
- "@aws-sdk/node-http-handler": "3.296.0",
42
- "@aws-sdk/protocol-http": "3.296.0",
43
- "@aws-sdk/smithy-client": "3.296.0",
44
- "@aws-sdk/types": "3.296.0",
45
- "@aws-sdk/url-parser": "3.296.0",
46
- "@aws-sdk/util-base64": "3.295.0",
47
- "@aws-sdk/util-body-length-browser": "3.295.0",
48
- "@aws-sdk/util-body-length-node": "3.295.0",
49
- "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
- "@aws-sdk/util-endpoints": "3.296.0",
52
- "@aws-sdk/util-retry": "3.296.0",
53
- "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.300.0",
55
- "@aws-sdk/util-utf8": "3.295.0",
24
+ "@aws-sdk/client-sts": "3.303.0",
25
+ "@aws-sdk/config-resolver": "3.303.0",
26
+ "@aws-sdk/credential-provider-node": "3.303.0",
27
+ "@aws-sdk/fetch-http-handler": "3.303.0",
28
+ "@aws-sdk/hash-node": "3.303.0",
29
+ "@aws-sdk/invalid-dependency": "3.303.0",
30
+ "@aws-sdk/middleware-content-length": "3.303.0",
31
+ "@aws-sdk/middleware-endpoint": "3.303.0",
32
+ "@aws-sdk/middleware-host-header": "3.303.0",
33
+ "@aws-sdk/middleware-logger": "3.303.0",
34
+ "@aws-sdk/middleware-recursion-detection": "3.303.0",
35
+ "@aws-sdk/middleware-retry": "3.303.0",
36
+ "@aws-sdk/middleware-serde": "3.303.0",
37
+ "@aws-sdk/middleware-signing": "3.303.0",
38
+ "@aws-sdk/middleware-stack": "3.303.0",
39
+ "@aws-sdk/middleware-user-agent": "3.303.0",
40
+ "@aws-sdk/node-config-provider": "3.303.0",
41
+ "@aws-sdk/node-http-handler": "3.303.0",
42
+ "@aws-sdk/protocol-http": "3.303.0",
43
+ "@aws-sdk/smithy-client": "3.303.0",
44
+ "@aws-sdk/types": "3.303.0",
45
+ "@aws-sdk/url-parser": "3.303.0",
46
+ "@aws-sdk/util-base64": "3.303.0",
47
+ "@aws-sdk/util-body-length-browser": "3.303.0",
48
+ "@aws-sdk/util-body-length-node": "3.303.0",
49
+ "@aws-sdk/util-defaults-mode-browser": "3.303.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.303.0",
51
+ "@aws-sdk/util-endpoints": "3.303.0",
52
+ "@aws-sdk/util-retry": "3.303.0",
53
+ "@aws-sdk/util-user-agent-browser": "3.303.0",
54
+ "@aws-sdk/util-user-agent-node": "3.303.0",
55
+ "@aws-sdk/util-utf8": "3.303.0",
56
56
  "tslib": "^2.5.0"
57
57
  },
58
58
  "devDependencies": {
59
- "@aws-sdk/service-client-documentation-generator": "3.295.0",
59
+ "@aws-sdk/service-client-documentation-generator": "3.303.0",
60
60
  "@tsconfig/node14": "1.0.3",
61
61
  "@types/node": "^14.14.31",
62
62
  "concurrently": "7.0.0",