@aws-sdk/client-groundstation 3.299.0 → 3.300.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/commands/CancelContactCommand.d.ts +3 -0
- package/dist-types/commands/CreateConfigCommand.d.ts +70 -0
- package/dist-types/commands/CreateDataflowEndpointGroupCommand.d.ts +51 -0
- package/dist-types/commands/CreateEphemerisCommand.d.ts +38 -0
- package/dist-types/commands/CreateMissionProfileCommand.d.ts +20 -0
- package/dist-types/commands/DeleteConfigCommand.d.ts +4 -0
- package/dist-types/commands/DeleteDataflowEndpointGroupCommand.d.ts +3 -0
- package/dist-types/commands/DeleteEphemerisCommand.d.ts +3 -0
- package/dist-types/commands/DeleteMissionProfileCommand.d.ts +3 -0
- package/dist-types/commands/DescribeContactCommand.d.ts +3 -0
- package/dist-types/commands/DescribeEphemerisCommand.d.ts +3 -0
- package/dist-types/commands/GetAgentConfigurationCommand.d.ts +3 -0
- package/dist-types/commands/GetConfigCommand.d.ts +4 -0
- package/dist-types/commands/GetDataflowEndpointGroupCommand.d.ts +3 -0
- package/dist-types/commands/GetMinuteUsageCommand.d.ts +4 -0
- package/dist-types/commands/GetMissionProfileCommand.d.ts +3 -0
- package/dist-types/commands/GetSatelliteCommand.d.ts +3 -0
- package/dist-types/commands/ListConfigsCommand.d.ts +4 -0
- package/dist-types/commands/ListContactsCommand.d.ts +12 -0
- package/dist-types/commands/ListDataflowEndpointGroupsCommand.d.ts +4 -0
- package/dist-types/commands/ListEphemeridesCommand.d.ts +10 -0
- package/dist-types/commands/ListGroundStationsCommand.d.ts +5 -0
- package/dist-types/commands/ListMissionProfilesCommand.d.ts +4 -0
- package/dist-types/commands/ListSatellitesCommand.d.ts +4 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/RegisterAgentCommand.d.ts +29 -0
- package/dist-types/commands/ReserveContactCommand.d.ts +10 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UpdateAgentStatusCommand.d.ts +21 -0
- package/dist-types/commands/UpdateConfigCommand.d.ts +69 -0
- package/dist-types/commands/UpdateEphemerisCommand.d.ts +6 -0
- package/dist-types/commands/UpdateMissionProfileCommand.d.ts +18 -0
- package/package.json +8 -8
|
@@ -26,6 +26,9 @@ export interface CancelContactCommandOutput extends ContactIdResponse, __Metadat
|
|
|
26
26
|
* import { GroundStationClient, CancelContactCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, CancelContactCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* contactId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new CancelContactCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,76 @@ export interface CreateConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
27
27
|
* import { GroundStationClient, CreateConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
28
28
|
* // const { GroundStationClient, CreateConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
29
29
|
* const client = new GroundStationClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* name: "STRING_VALUE", // required
|
|
32
|
+
* configData: { // Union: only one key present
|
|
33
|
+
* antennaDownlinkConfig: {
|
|
34
|
+
* spectrumConfig: {
|
|
35
|
+
* centerFrequency: {
|
|
36
|
+
* value: Number("double"), // required
|
|
37
|
+
* units: "STRING_VALUE", // required
|
|
38
|
+
* },
|
|
39
|
+
* bandwidth: {
|
|
40
|
+
* value: Number("double"), // required
|
|
41
|
+
* units: "STRING_VALUE", // required
|
|
42
|
+
* },
|
|
43
|
+
* polarization: "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* },
|
|
46
|
+
* trackingConfig: {
|
|
47
|
+
* autotrack: "STRING_VALUE", // required
|
|
48
|
+
* },
|
|
49
|
+
* dataflowEndpointConfig: {
|
|
50
|
+
* dataflowEndpointName: "STRING_VALUE", // required
|
|
51
|
+
* dataflowEndpointRegion: "STRING_VALUE",
|
|
52
|
+
* },
|
|
53
|
+
* antennaDownlinkDemodDecodeConfig: {
|
|
54
|
+
* spectrumConfig: {
|
|
55
|
+
* centerFrequency: {
|
|
56
|
+
* value: Number("double"), // required
|
|
57
|
+
* units: "STRING_VALUE", // required
|
|
58
|
+
* },
|
|
59
|
+
* bandwidth: {
|
|
60
|
+
* value: Number("double"), // required
|
|
61
|
+
* units: "STRING_VALUE", // required
|
|
62
|
+
* },
|
|
63
|
+
* polarization: "STRING_VALUE",
|
|
64
|
+
* },
|
|
65
|
+
* demodulationConfig: {
|
|
66
|
+
* unvalidatedJSON: "STRING_VALUE", // required
|
|
67
|
+
* },
|
|
68
|
+
* decodeConfig: {
|
|
69
|
+
* unvalidatedJSON: "STRING_VALUE", // required
|
|
70
|
+
* },
|
|
71
|
+
* },
|
|
72
|
+
* antennaUplinkConfig: {
|
|
73
|
+
* transmitDisabled: true || false,
|
|
74
|
+
* spectrumConfig: {
|
|
75
|
+
* centerFrequency: {
|
|
76
|
+
* value: Number("double"), // required
|
|
77
|
+
* units: "STRING_VALUE", // required
|
|
78
|
+
* },
|
|
79
|
+
* polarization: "STRING_VALUE",
|
|
80
|
+
* },
|
|
81
|
+
* targetEirp: {
|
|
82
|
+
* value: Number("double"), // required
|
|
83
|
+
* units: "STRING_VALUE", // required
|
|
84
|
+
* },
|
|
85
|
+
* },
|
|
86
|
+
* uplinkEchoConfig: {
|
|
87
|
+
* enabled: true || false, // required
|
|
88
|
+
* antennaUplinkConfigArn: "STRING_VALUE", // required
|
|
89
|
+
* },
|
|
90
|
+
* s3RecordingConfig: {
|
|
91
|
+
* bucketArn: "STRING_VALUE", // required
|
|
92
|
+
* roleArn: "STRING_VALUE", // required
|
|
93
|
+
* prefix: "STRING_VALUE",
|
|
94
|
+
* },
|
|
95
|
+
* },
|
|
96
|
+
* tags: {
|
|
97
|
+
* "<keys>": "STRING_VALUE",
|
|
98
|
+
* },
|
|
99
|
+
* };
|
|
30
100
|
* const command = new CreateConfigCommand(input);
|
|
31
101
|
* const response = await client.send(command);
|
|
32
102
|
* ```
|
|
@@ -30,6 +30,57 @@ export interface CreateDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
30
30
|
* import { GroundStationClient, CreateDataflowEndpointGroupCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
31
31
|
* // const { GroundStationClient, CreateDataflowEndpointGroupCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
32
32
|
* const client = new GroundStationClient(config);
|
|
33
|
+
* const input = {
|
|
34
|
+
* endpointDetails: [ // required
|
|
35
|
+
* {
|
|
36
|
+
* securityDetails: {
|
|
37
|
+
* subnetIds: [ // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* securityGroupIds: [ // required
|
|
41
|
+
* "STRING_VALUE",
|
|
42
|
+
* ],
|
|
43
|
+
* roleArn: "STRING_VALUE", // required
|
|
44
|
+
* },
|
|
45
|
+
* endpoint: {
|
|
46
|
+
* name: "STRING_VALUE",
|
|
47
|
+
* address: {
|
|
48
|
+
* name: "STRING_VALUE", // required
|
|
49
|
+
* port: Number("int"), // required
|
|
50
|
+
* },
|
|
51
|
+
* status: "STRING_VALUE",
|
|
52
|
+
* mtu: Number("int"),
|
|
53
|
+
* },
|
|
54
|
+
* awsGroundStationAgentEndpoint: {
|
|
55
|
+
* name: "STRING_VALUE", // required
|
|
56
|
+
* egressAddress: {
|
|
57
|
+
* socketAddress: {
|
|
58
|
+
* name: "STRING_VALUE", // required
|
|
59
|
+
* port: Number("int"), // required
|
|
60
|
+
* },
|
|
61
|
+
* mtu: Number("int"),
|
|
62
|
+
* },
|
|
63
|
+
* ingressAddress: {
|
|
64
|
+
* socketAddress: {
|
|
65
|
+
* name: "STRING_VALUE", // required
|
|
66
|
+
* portRange: {
|
|
67
|
+
* minimum: Number("int"), // required
|
|
68
|
+
* maximum: Number("int"), // required
|
|
69
|
+
* },
|
|
70
|
+
* },
|
|
71
|
+
* mtu: Number("int"),
|
|
72
|
+
* },
|
|
73
|
+
* agentStatus: "STRING_VALUE",
|
|
74
|
+
* auditResults: "STRING_VALUE",
|
|
75
|
+
* },
|
|
76
|
+
* },
|
|
77
|
+
* ],
|
|
78
|
+
* tags: {
|
|
79
|
+
* "<keys>": "STRING_VALUE",
|
|
80
|
+
* },
|
|
81
|
+
* contactPrePassDurationSeconds: Number("int"),
|
|
82
|
+
* contactPostPassDurationSeconds: Number("int"),
|
|
83
|
+
* };
|
|
33
84
|
* const command = new CreateDataflowEndpointGroupCommand(input);
|
|
34
85
|
* const response = await client.send(command);
|
|
35
86
|
* ```
|
|
@@ -26,6 +26,44 @@ export interface CreateEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
26
26
|
* import { GroundStationClient, CreateEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, CreateEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* satelliteId: "STRING_VALUE", // required
|
|
31
|
+
* enabled: true || false,
|
|
32
|
+
* priority: Number("int"),
|
|
33
|
+
* expirationTime: new Date("TIMESTAMP"),
|
|
34
|
+
* name: "STRING_VALUE", // required
|
|
35
|
+
* kmsKeyArn: "STRING_VALUE",
|
|
36
|
+
* ephemeris: { // Union: only one key present
|
|
37
|
+
* tle: {
|
|
38
|
+
* s3Object: {
|
|
39
|
+
* bucket: "STRING_VALUE",
|
|
40
|
+
* key: "STRING_VALUE",
|
|
41
|
+
* version: "STRING_VALUE",
|
|
42
|
+
* },
|
|
43
|
+
* tleData: [
|
|
44
|
+
* {
|
|
45
|
+
* tleLine1: "STRING_VALUE", // required
|
|
46
|
+
* tleLine2: "STRING_VALUE", // required
|
|
47
|
+
* validTimeRange: {
|
|
48
|
+
* startTime: new Date("TIMESTAMP"), // required
|
|
49
|
+
* endTime: new Date("TIMESTAMP"), // required
|
|
50
|
+
* },
|
|
51
|
+
* },
|
|
52
|
+
* ],
|
|
53
|
+
* },
|
|
54
|
+
* oem: {
|
|
55
|
+
* s3Object: {
|
|
56
|
+
* bucket: "STRING_VALUE",
|
|
57
|
+
* key: "STRING_VALUE",
|
|
58
|
+
* version: "STRING_VALUE",
|
|
59
|
+
* },
|
|
60
|
+
* oemData: "STRING_VALUE",
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* tags: {
|
|
64
|
+
* "<keys>": "STRING_VALUE",
|
|
65
|
+
* },
|
|
66
|
+
* };
|
|
29
67
|
* const command = new CreateEphemerisCommand(input);
|
|
30
68
|
* const response = await client.send(command);
|
|
31
69
|
* ```
|
|
@@ -29,6 +29,26 @@ export interface CreateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
29
29
|
* import { GroundStationClient, CreateMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
30
30
|
* // const { GroundStationClient, CreateMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
31
31
|
* const client = new GroundStationClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* name: "STRING_VALUE", // required
|
|
34
|
+
* contactPrePassDurationSeconds: Number("int"),
|
|
35
|
+
* contactPostPassDurationSeconds: Number("int"),
|
|
36
|
+
* minimumViableContactDurationSeconds: Number("int"), // required
|
|
37
|
+
* dataflowEdges: [ // required
|
|
38
|
+
* [
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* ],
|
|
42
|
+
* trackingConfigArn: "STRING_VALUE", // required
|
|
43
|
+
* tags: {
|
|
44
|
+
* "<keys>": "STRING_VALUE",
|
|
45
|
+
* },
|
|
46
|
+
* streamsKmsKey: { // Union: only one key present
|
|
47
|
+
* kmsKeyArn: "STRING_VALUE",
|
|
48
|
+
* kmsAliasArn: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* streamsKmsRole: "STRING_VALUE",
|
|
51
|
+
* };
|
|
32
52
|
* const command = new CreateMissionProfileCommand(input);
|
|
33
53
|
* const response = await client.send(command);
|
|
34
54
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface DeleteConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
26
26
|
* import { GroundStationClient, DeleteConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, DeleteConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* configId: "STRING_VALUE", // required
|
|
31
|
+
* configType: "STRING_VALUE", // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new DeleteConfigCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteDataflowEndpointGroupCommandOutput extends DataflowEndpoi
|
|
|
26
26
|
* import { GroundStationClient, DeleteDataflowEndpointGroupCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, DeleteDataflowEndpointGroupCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* dataflowEndpointGroupId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteDataflowEndpointGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
26
26
|
* import { GroundStationClient, DeleteEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, DeleteEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteEphemerisCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DeleteMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
26
26
|
* import { GroundStationClient, DeleteMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, DeleteMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* missionProfileId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DeleteMissionProfileCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeContactCommandOutput extends DescribeContactResponse, _
|
|
|
26
26
|
* import { GroundStationClient, DescribeContactCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, DescribeContactCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* contactId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeContactCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface DescribeEphemerisCommandOutput extends DescribeEphemerisRespons
|
|
|
26
26
|
* import { GroundStationClient, DescribeEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, DescribeEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new DescribeEphemerisCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetAgentConfigurationCommandOutput extends GetAgentConfiguratio
|
|
|
26
26
|
* import { GroundStationClient, GetAgentConfigurationCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, GetAgentConfigurationCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* agentId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetAgentConfigurationCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface GetConfigCommandOutput extends GetConfigResponse, __MetadataBea
|
|
|
27
27
|
* import { GroundStationClient, GetConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
28
28
|
* // const { GroundStationClient, GetConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
29
29
|
* const client = new GroundStationClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* configId: "STRING_VALUE", // required
|
|
32
|
+
* configType: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new GetConfigCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetDataflowEndpointGroupCommandOutput extends GetDataflowEndpoi
|
|
|
26
26
|
* import { GroundStationClient, GetDataflowEndpointGroupCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, GetDataflowEndpointGroupCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* dataflowEndpointGroupId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetDataflowEndpointGroupCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface GetMinuteUsageCommandOutput extends GetMinuteUsageResponse, __M
|
|
|
26
26
|
* import { GroundStationClient, GetMinuteUsageCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, GetMinuteUsageCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* month: Number("int"), // required
|
|
31
|
+
* year: Number("int"), // required
|
|
32
|
+
* };
|
|
29
33
|
* const command = new GetMinuteUsageCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetMissionProfileCommandOutput extends GetMissionProfileRespons
|
|
|
26
26
|
* import { GroundStationClient, GetMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, GetMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* missionProfileId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetMissionProfileCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface GetSatelliteCommandOutput extends GetSatelliteResponse, __Metad
|
|
|
26
26
|
* import { GroundStationClient, GetSatelliteCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, GetSatelliteCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* satelliteId: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new GetSatelliteCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListConfigsCommandOutput extends ListConfigsResponse, __Metadat
|
|
|
26
26
|
* import { GroundStationClient, ListConfigsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ListConfigsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListConfigsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -29,6 +29,18 @@ export interface ListContactsCommandOutput extends ListContactsResponse, __Metad
|
|
|
29
29
|
* import { GroundStationClient, ListContactsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
30
30
|
* // const { GroundStationClient, ListContactsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
31
31
|
* const client = new GroundStationClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* maxResults: Number("int"),
|
|
34
|
+
* nextToken: "STRING_VALUE",
|
|
35
|
+
* statusList: [ // required
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* startTime: new Date("TIMESTAMP"), // required
|
|
39
|
+
* endTime: new Date("TIMESTAMP"), // required
|
|
40
|
+
* groundStation: "STRING_VALUE",
|
|
41
|
+
* satelliteArn: "STRING_VALUE",
|
|
42
|
+
* missionProfileArn: "STRING_VALUE",
|
|
43
|
+
* };
|
|
32
44
|
* const command = new ListContactsCommand(input);
|
|
33
45
|
* const response = await client.send(command);
|
|
34
46
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListDataflowEndpointGroupsCommandOutput extends ListDataflowEnd
|
|
|
26
26
|
* import { GroundStationClient, ListDataflowEndpointGroupsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ListDataflowEndpointGroupsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListDataflowEndpointGroupsCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ListEphemeridesCommandOutput extends ListEphemeridesResponse, _
|
|
|
26
26
|
* import { GroundStationClient, ListEphemeridesCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ListEphemeridesCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* satelliteId: "STRING_VALUE", // required
|
|
31
|
+
* startTime: new Date("TIMESTAMP"), // required
|
|
32
|
+
* endTime: new Date("TIMESTAMP"), // required
|
|
33
|
+
* statusList: [
|
|
34
|
+
* "STRING_VALUE",
|
|
35
|
+
* ],
|
|
36
|
+
* maxResults: Number("int"),
|
|
37
|
+
* nextToken: "STRING_VALUE",
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ListEphemeridesCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,11 @@ export interface ListGroundStationsCommandOutput extends ListGroundStationsRespo
|
|
|
26
26
|
* import { GroundStationClient, ListGroundStationsCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ListGroundStationsCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* satelliteId: "STRING_VALUE",
|
|
31
|
+
* maxResults: Number("int"),
|
|
32
|
+
* nextToken: "STRING_VALUE",
|
|
33
|
+
* };
|
|
29
34
|
* const command = new ListGroundStationsCommand(input);
|
|
30
35
|
* const response = await client.send(command);
|
|
31
36
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListMissionProfilesCommandOutput extends ListMissionProfilesRes
|
|
|
26
26
|
* import { GroundStationClient, ListMissionProfilesCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ListMissionProfilesCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListMissionProfilesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,10 @@ export interface ListSatellitesCommandOutput extends ListSatellitesResponse, __M
|
|
|
26
26
|
* import { GroundStationClient, ListSatellitesCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ListSatellitesCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* maxResults: Number("int"),
|
|
31
|
+
* nextToken: "STRING_VALUE",
|
|
32
|
+
* };
|
|
29
33
|
* const command = new ListSatellitesCommand(input);
|
|
30
34
|
* const response = await client.send(command);
|
|
31
35
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { GroundStationClient, ListTagsForResourceCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ListTagsForResourceCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -26,6 +26,35 @@ export interface RegisterAgentCommandOutput extends RegisterAgentResponse, __Met
|
|
|
26
26
|
* import { GroundStationClient, RegisterAgentCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, RegisterAgentCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* discoveryData: {
|
|
31
|
+
* publicIpAddresses: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* privateIpAddresses: [ // required
|
|
35
|
+
* "STRING_VALUE",
|
|
36
|
+
* ],
|
|
37
|
+
* capabilityArns: [ // required
|
|
38
|
+
* "STRING_VALUE",
|
|
39
|
+
* ],
|
|
40
|
+
* },
|
|
41
|
+
* agentDetails: {
|
|
42
|
+
* agentVersion: "STRING_VALUE", // required
|
|
43
|
+
* instanceId: "STRING_VALUE", // required
|
|
44
|
+
* instanceType: "STRING_VALUE", // required
|
|
45
|
+
* reservedCpuCores: [ // required
|
|
46
|
+
* Number("int"),
|
|
47
|
+
* ],
|
|
48
|
+
* componentVersions: [ // required
|
|
49
|
+
* {
|
|
50
|
+
* componentType: "STRING_VALUE", // required
|
|
51
|
+
* versions: [ // required
|
|
52
|
+
* "STRING_VALUE",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* };
|
|
29
58
|
* const command = new RegisterAgentCommand(input);
|
|
30
59
|
* const response = await client.send(command);
|
|
31
60
|
* ```
|
|
@@ -26,6 +26,16 @@ export interface ReserveContactCommandOutput extends ContactIdResponse, __Metada
|
|
|
26
26
|
* import { GroundStationClient, ReserveContactCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, ReserveContactCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* missionProfileArn: "STRING_VALUE", // required
|
|
31
|
+
* satelliteArn: "STRING_VALUE", // required
|
|
32
|
+
* startTime: new Date("TIMESTAMP"), // required
|
|
33
|
+
* endTime: new Date("TIMESTAMP"), // required
|
|
34
|
+
* groundStation: "STRING_VALUE", // required
|
|
35
|
+
* tags: {
|
|
36
|
+
* "<keys>": "STRING_VALUE",
|
|
37
|
+
* },
|
|
38
|
+
* };
|
|
29
39
|
* const command = new ReserveContactCommand(input);
|
|
30
40
|
* const response = await client.send(command);
|
|
31
41
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
26
26
|
* import { GroundStationClient, TagResourceCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, TagResourceCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tags: { // required
|
|
32
|
+
* "<keys>": "STRING_VALUE",
|
|
33
|
+
* },
|
|
34
|
+
* };
|
|
29
35
|
* const command = new TagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { GroundStationClient, UntagResourceCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, UntagResourceCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -26,6 +26,27 @@ export interface UpdateAgentStatusCommandOutput extends UpdateAgentStatusRespons
|
|
|
26
26
|
* import { GroundStationClient, UpdateAgentStatusCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, UpdateAgentStatusCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* agentId: "STRING_VALUE", // required
|
|
31
|
+
* taskId: "STRING_VALUE", // required
|
|
32
|
+
* aggregateStatus: {
|
|
33
|
+
* status: "STRING_VALUE", // required
|
|
34
|
+
* signatureMap: {
|
|
35
|
+
* "<keys>": true || false,
|
|
36
|
+
* },
|
|
37
|
+
* },
|
|
38
|
+
* componentStatuses: [ // required
|
|
39
|
+
* {
|
|
40
|
+
* componentType: "STRING_VALUE", // required
|
|
41
|
+
* capabilityArn: "STRING_VALUE", // required
|
|
42
|
+
* status: "STRING_VALUE", // required
|
|
43
|
+
* bytesSent: Number("long"),
|
|
44
|
+
* bytesReceived: Number("long"),
|
|
45
|
+
* packetsDropped: Number("long"),
|
|
46
|
+
* dataflowId: "STRING_VALUE", // required
|
|
47
|
+
* },
|
|
48
|
+
* ],
|
|
49
|
+
* };
|
|
29
50
|
* const command = new UpdateAgentStatusCommand(input);
|
|
30
51
|
* const response = await client.send(command);
|
|
31
52
|
* ```
|
|
@@ -28,6 +28,75 @@ export interface UpdateConfigCommandOutput extends ConfigIdResponse, __MetadataB
|
|
|
28
28
|
* import { GroundStationClient, UpdateConfigCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
29
29
|
* // const { GroundStationClient, UpdateConfigCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
30
30
|
* const client = new GroundStationClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* configId: "STRING_VALUE", // required
|
|
33
|
+
* name: "STRING_VALUE", // required
|
|
34
|
+
* configType: "STRING_VALUE", // required
|
|
35
|
+
* configData: { // Union: only one key present
|
|
36
|
+
* antennaDownlinkConfig: {
|
|
37
|
+
* spectrumConfig: {
|
|
38
|
+
* centerFrequency: {
|
|
39
|
+
* value: Number("double"), // required
|
|
40
|
+
* units: "STRING_VALUE", // required
|
|
41
|
+
* },
|
|
42
|
+
* bandwidth: {
|
|
43
|
+
* value: Number("double"), // required
|
|
44
|
+
* units: "STRING_VALUE", // required
|
|
45
|
+
* },
|
|
46
|
+
* polarization: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* },
|
|
49
|
+
* trackingConfig: {
|
|
50
|
+
* autotrack: "STRING_VALUE", // required
|
|
51
|
+
* },
|
|
52
|
+
* dataflowEndpointConfig: {
|
|
53
|
+
* dataflowEndpointName: "STRING_VALUE", // required
|
|
54
|
+
* dataflowEndpointRegion: "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* antennaDownlinkDemodDecodeConfig: {
|
|
57
|
+
* spectrumConfig: {
|
|
58
|
+
* centerFrequency: {
|
|
59
|
+
* value: Number("double"), // required
|
|
60
|
+
* units: "STRING_VALUE", // required
|
|
61
|
+
* },
|
|
62
|
+
* bandwidth: {
|
|
63
|
+
* value: Number("double"), // required
|
|
64
|
+
* units: "STRING_VALUE", // required
|
|
65
|
+
* },
|
|
66
|
+
* polarization: "STRING_VALUE",
|
|
67
|
+
* },
|
|
68
|
+
* demodulationConfig: {
|
|
69
|
+
* unvalidatedJSON: "STRING_VALUE", // required
|
|
70
|
+
* },
|
|
71
|
+
* decodeConfig: {
|
|
72
|
+
* unvalidatedJSON: "STRING_VALUE", // required
|
|
73
|
+
* },
|
|
74
|
+
* },
|
|
75
|
+
* antennaUplinkConfig: {
|
|
76
|
+
* transmitDisabled: true || false,
|
|
77
|
+
* spectrumConfig: {
|
|
78
|
+
* centerFrequency: {
|
|
79
|
+
* value: Number("double"), // required
|
|
80
|
+
* units: "STRING_VALUE", // required
|
|
81
|
+
* },
|
|
82
|
+
* polarization: "STRING_VALUE",
|
|
83
|
+
* },
|
|
84
|
+
* targetEirp: {
|
|
85
|
+
* value: Number("double"), // required
|
|
86
|
+
* units: "STRING_VALUE", // required
|
|
87
|
+
* },
|
|
88
|
+
* },
|
|
89
|
+
* uplinkEchoConfig: {
|
|
90
|
+
* enabled: true || false, // required
|
|
91
|
+
* antennaUplinkConfigArn: "STRING_VALUE", // required
|
|
92
|
+
* },
|
|
93
|
+
* s3RecordingConfig: {
|
|
94
|
+
* bucketArn: "STRING_VALUE", // required
|
|
95
|
+
* roleArn: "STRING_VALUE", // required
|
|
96
|
+
* prefix: "STRING_VALUE",
|
|
97
|
+
* },
|
|
98
|
+
* },
|
|
99
|
+
* };
|
|
31
100
|
* const command = new UpdateConfigCommand(input);
|
|
32
101
|
* const response = await client.send(command);
|
|
33
102
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UpdateEphemerisCommandOutput extends EphemerisIdResponse, __Met
|
|
|
26
26
|
* import { GroundStationClient, UpdateEphemerisCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
27
27
|
* // const { GroundStationClient, UpdateEphemerisCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
28
28
|
* const client = new GroundStationClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* ephemerisId: "STRING_VALUE", // required
|
|
31
|
+
* enabled: true || false, // required
|
|
32
|
+
* name: "STRING_VALUE",
|
|
33
|
+
* priority: Number("int"),
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UpdateEphemerisCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
|
@@ -28,6 +28,24 @@ export interface UpdateMissionProfileCommandOutput extends MissionProfileIdRespo
|
|
|
28
28
|
* import { GroundStationClient, UpdateMissionProfileCommand } from "@aws-sdk/client-groundstation"; // ES Modules import
|
|
29
29
|
* // const { GroundStationClient, UpdateMissionProfileCommand } = require("@aws-sdk/client-groundstation"); // CommonJS import
|
|
30
30
|
* const client = new GroundStationClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* missionProfileId: "STRING_VALUE", // required
|
|
33
|
+
* name: "STRING_VALUE",
|
|
34
|
+
* contactPrePassDurationSeconds: Number("int"),
|
|
35
|
+
* contactPostPassDurationSeconds: Number("int"),
|
|
36
|
+
* minimumViableContactDurationSeconds: Number("int"),
|
|
37
|
+
* dataflowEdges: [
|
|
38
|
+
* [
|
|
39
|
+
* "STRING_VALUE",
|
|
40
|
+
* ],
|
|
41
|
+
* ],
|
|
42
|
+
* trackingConfigArn: "STRING_VALUE",
|
|
43
|
+
* streamsKmsKey: { // Union: only one key present
|
|
44
|
+
* kmsKeyArn: "STRING_VALUE",
|
|
45
|
+
* kmsAliasArn: "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* streamsKmsRole: "STRING_VALUE",
|
|
48
|
+
* };
|
|
31
49
|
* const command = new UpdateMissionProfileCommand(input);
|
|
32
50
|
* const response = await client.send(command);
|
|
33
51
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-groundstation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Groundstation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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
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",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"@aws-sdk/util-waiter": "3.296.0",
|
|
57
57
|
"tslib": "^2.5.0"
|