@aws-sdk/client-synthetics 3.300.0 → 3.301.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/AssociateResourceCommand.d.ts +1 -1
- package/dist-types/commands/CreateCanaryCommand.d.ts +11 -11
- package/dist-types/commands/CreateGroupCommand.d.ts +2 -2
- package/dist-types/commands/DeleteCanaryCommand.d.ts +1 -1
- package/dist-types/commands/DeleteGroupCommand.d.ts +1 -1
- package/dist-types/commands/DescribeCanariesCommand.d.ts +2 -2
- package/dist-types/commands/DescribeCanariesLastRunCommand.d.ts +2 -2
- package/dist-types/commands/DescribeRuntimeVersionsCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateResourceCommand.d.ts +1 -1
- package/dist-types/commands/GetCanaryCommand.d.ts +1 -1
- package/dist-types/commands/GetCanaryRunsCommand.d.ts +1 -1
- package/dist-types/commands/GetGroupCommand.d.ts +1 -1
- package/dist-types/commands/ListAssociatedGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListGroupResourcesCommand.d.ts +1 -1
- package/dist-types/commands/ListGroupsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/StartCanaryCommand.d.ts +1 -1
- package/dist-types/commands/StopCanaryCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateCanaryCommand.d.ts +14 -14
- package/package.json +3 -3
|
@@ -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
|
* },
|
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.
|
|
4
|
+
"version": "3.301.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -21,9 +21,9 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.301.0",
|
|
27
27
|
"@aws-sdk/fetch-http-handler": "3.296.0",
|
|
28
28
|
"@aws-sdk/hash-node": "3.296.0",
|
|
29
29
|
"@aws-sdk/invalid-dependency": "3.296.0",
|