@aws-sdk/client-iot-wireless 3.687.0 → 3.692.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-cjs/index.js +24 -7
- package/dist-es/commands/ListPartnerAccountsCommand.js +1 -1
- package/dist-es/models/models_0.js +8 -6
- package/dist-es/models/models_1.js +7 -0
- package/dist-es/protocols/Aws_restJson1.js +5 -0
- package/dist-types/commands/CreateFuotaTaskCommand.d.ts +1 -0
- package/dist-types/commands/CreateMulticastGroupCommand.d.ts +6 -0
- package/dist-types/commands/GetFuotaTaskCommand.d.ts +1 -0
- package/dist-types/commands/GetLogLevelsByResourceTypesCommand.d.ts +12 -0
- package/dist-types/commands/GetMulticastGroupCommand.d.ts +7 -1
- package/dist-types/commands/GetResourceEventConfigurationCommand.d.ts +1 -1
- package/dist-types/commands/GetResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/commands/ListEventConfigurationsCommand.d.ts +2 -2
- package/dist-types/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
- package/dist-types/commands/ListPartnerAccountsCommand.d.ts +1 -1
- package/dist-types/commands/ResetAllResourceLogLevelsCommand.d.ts +2 -2
- package/dist-types/commands/ResetResourceLogLevelCommand.d.ts +1 -1
- package/dist-types/commands/UpdateFuotaTaskCommand.d.ts +1 -0
- package/dist-types/commands/UpdateLogLevelsByResourceTypesCommand.d.ts +12 -0
- package/dist-types/commands/UpdateMulticastGroupCommand.d.ts +6 -0
- package/dist-types/commands/UpdateResourceEventConfigurationCommand.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +665 -631
- package/dist-types/models/models_1.d.ts +279 -184
- package/dist-types/ts3.4/commands/ListNetworkAnalyzerConfigurationsCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ListPartnerAccountsCommand.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +582 -568
- package/dist-types/ts3.4/models/models_1.d.ts +214 -179
- package/package.json +36 -36
|
@@ -9,12 +9,12 @@ export interface SessionKeysAbpV1_0_x {
|
|
|
9
9
|
* <p>The NwkSKey value.</p>
|
|
10
10
|
* @public
|
|
11
11
|
*/
|
|
12
|
-
NwkSKey?: string;
|
|
12
|
+
NwkSKey?: string | undefined;
|
|
13
13
|
/**
|
|
14
14
|
* <p>The AppSKey value.</p>
|
|
15
15
|
* @public
|
|
16
16
|
*/
|
|
17
|
-
AppSKey?: string;
|
|
17
|
+
AppSKey?: string | undefined;
|
|
18
18
|
}
|
|
19
19
|
/**
|
|
20
20
|
* <p>ABP device object for LoRaWAN specification v1.0.x</p>
|
|
@@ -25,17 +25,17 @@ export interface AbpV1_0_x {
|
|
|
25
25
|
* <p>The DevAddr value.</p>
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
|
-
DevAddr?: string;
|
|
28
|
+
DevAddr?: string | undefined;
|
|
29
29
|
/**
|
|
30
30
|
* <p>Session keys for ABP v1.0.x</p>
|
|
31
31
|
* @public
|
|
32
32
|
*/
|
|
33
|
-
SessionKeys?: SessionKeysAbpV1_0_x;
|
|
33
|
+
SessionKeys?: SessionKeysAbpV1_0_x | undefined;
|
|
34
34
|
/**
|
|
35
35
|
* <p>The FCnt init value.</p>
|
|
36
36
|
* @public
|
|
37
37
|
*/
|
|
38
|
-
FCntStart?: number;
|
|
38
|
+
FCntStart?: number | undefined;
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
41
|
* <p>Session keys for ABP v1.1</p>
|
|
@@ -46,22 +46,22 @@ export interface SessionKeysAbpV1_1 {
|
|
|
46
46
|
* <p>The FNwkSIntKey value.</p>
|
|
47
47
|
* @public
|
|
48
48
|
*/
|
|
49
|
-
FNwkSIntKey?: string;
|
|
49
|
+
FNwkSIntKey?: string | undefined;
|
|
50
50
|
/**
|
|
51
51
|
* <p>The SNwkSIntKey value.</p>
|
|
52
52
|
* @public
|
|
53
53
|
*/
|
|
54
|
-
SNwkSIntKey?: string;
|
|
54
|
+
SNwkSIntKey?: string | undefined;
|
|
55
55
|
/**
|
|
56
56
|
* <p>The NwkSEncKey value.</p>
|
|
57
57
|
* @public
|
|
58
58
|
*/
|
|
59
|
-
NwkSEncKey?: string;
|
|
59
|
+
NwkSEncKey?: string | undefined;
|
|
60
60
|
/**
|
|
61
61
|
* <p>The AppSKey value.</p>
|
|
62
62
|
* @public
|
|
63
63
|
*/
|
|
64
|
-
AppSKey?: string;
|
|
64
|
+
AppSKey?: string | undefined;
|
|
65
65
|
}
|
|
66
66
|
/**
|
|
67
67
|
* <p>ABP device object for LoRaWAN specification v1.1</p>
|
|
@@ -72,17 +72,17 @@ export interface AbpV1_1 {
|
|
|
72
72
|
* <p>The DevAddr value.</p>
|
|
73
73
|
* @public
|
|
74
74
|
*/
|
|
75
|
-
DevAddr?: string;
|
|
75
|
+
DevAddr?: string | undefined;
|
|
76
76
|
/**
|
|
77
77
|
* <p>Session keys for ABP v1.1</p>
|
|
78
78
|
* @public
|
|
79
79
|
*/
|
|
80
|
-
SessionKeys?: SessionKeysAbpV1_1;
|
|
80
|
+
SessionKeys?: SessionKeysAbpV1_1 | undefined;
|
|
81
81
|
/**
|
|
82
82
|
* <p>The FCnt init value.</p>
|
|
83
83
|
* @public
|
|
84
84
|
*/
|
|
85
|
-
FCntStart?: number;
|
|
85
|
+
FCntStart?: number | undefined;
|
|
86
86
|
}
|
|
87
87
|
/**
|
|
88
88
|
* <p>User does not have permission to perform this action.</p>
|
|
@@ -91,7 +91,7 @@ export interface AbpV1_1 {
|
|
|
91
91
|
export declare class AccessDeniedException extends __BaseException {
|
|
92
92
|
readonly name: "AccessDeniedException";
|
|
93
93
|
readonly $fault: "client";
|
|
94
|
-
Message?: string;
|
|
94
|
+
Message?: string | undefined;
|
|
95
95
|
/**
|
|
96
96
|
* @internal
|
|
97
97
|
*/
|
|
@@ -110,13 +110,13 @@ export interface Accuracy {
|
|
|
110
110
|
* estimated location and the actual device location.</p>
|
|
111
111
|
* @public
|
|
112
112
|
*/
|
|
113
|
-
HorizontalAccuracy?: number;
|
|
113
|
+
HorizontalAccuracy?: number | undefined;
|
|
114
114
|
/**
|
|
115
115
|
* <p>The vertical accuracy of the estimated position, which is the difference between the
|
|
116
116
|
* estimated altitude and actual device latitude in meters.</p>
|
|
117
117
|
* @public
|
|
118
118
|
*/
|
|
119
|
-
VerticalAccuracy?: number;
|
|
119
|
+
VerticalAccuracy?: number | undefined;
|
|
120
120
|
}
|
|
121
121
|
/**
|
|
122
122
|
* @public
|
|
@@ -151,19 +151,19 @@ export interface ApplicationConfig {
|
|
|
151
151
|
* <p>The Fport value.</p>
|
|
152
152
|
* @public
|
|
153
153
|
*/
|
|
154
|
-
FPort?: number;
|
|
154
|
+
FPort?: number | undefined;
|
|
155
155
|
/**
|
|
156
156
|
* <p>Application type, which can be specified to obtain real-time position information of
|
|
157
157
|
* your LoRaWAN device.</p>
|
|
158
158
|
* @public
|
|
159
159
|
*/
|
|
160
|
-
Type?: ApplicationConfigType;
|
|
160
|
+
Type?: ApplicationConfigType | undefined;
|
|
161
161
|
/**
|
|
162
162
|
* <p>The name of the position data destination that describes the AWS IoT rule that
|
|
163
163
|
* processes the device's position data for use by AWS IoT Core for LoRaWAN.</p>
|
|
164
164
|
* @public
|
|
165
165
|
*/
|
|
166
|
-
DestinationName?: string;
|
|
166
|
+
DestinationName?: string | undefined;
|
|
167
167
|
}
|
|
168
168
|
/**
|
|
169
169
|
* <p>Information about a Sidewalk account.</p>
|
|
@@ -174,12 +174,12 @@ export interface SidewalkAccountInfo {
|
|
|
174
174
|
* <p>The Sidewalk Amazon ID.</p>
|
|
175
175
|
* @public
|
|
176
176
|
*/
|
|
177
|
-
AmazonId?: string;
|
|
177
|
+
AmazonId?: string | undefined;
|
|
178
178
|
/**
|
|
179
179
|
* <p>The Sidewalk application server private key.</p>
|
|
180
180
|
* @public
|
|
181
181
|
*/
|
|
182
|
-
AppServerPrivateKey?: string;
|
|
182
|
+
AppServerPrivateKey?: string | undefined;
|
|
183
183
|
}
|
|
184
184
|
/**
|
|
185
185
|
* <p>A simple label consisting of a customer-defined key-value pair</p>
|
|
@@ -215,13 +215,13 @@ export interface AssociateAwsAccountWithPartnerAccountRequest {
|
|
|
215
215
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
216
216
|
* @public
|
|
217
217
|
*/
|
|
218
|
-
ClientRequestToken?: string;
|
|
218
|
+
ClientRequestToken?: string | undefined;
|
|
219
219
|
/**
|
|
220
220
|
* <p>The tags to attach to the specified resource. Tags are metadata that you can use to
|
|
221
221
|
* manage a resource.</p>
|
|
222
222
|
* @public
|
|
223
223
|
*/
|
|
224
|
-
Tags?: Tag[];
|
|
224
|
+
Tags?: Tag[] | undefined;
|
|
225
225
|
}
|
|
226
226
|
/**
|
|
227
227
|
* @public
|
|
@@ -231,12 +231,12 @@ export interface AssociateAwsAccountWithPartnerAccountResponse {
|
|
|
231
231
|
* <p>The Sidewalk account credentials.</p>
|
|
232
232
|
* @public
|
|
233
233
|
*/
|
|
234
|
-
Sidewalk?: SidewalkAccountInfo;
|
|
234
|
+
Sidewalk?: SidewalkAccountInfo | undefined;
|
|
235
235
|
/**
|
|
236
236
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
237
237
|
* @public
|
|
238
238
|
*/
|
|
239
|
-
Arn?: string;
|
|
239
|
+
Arn?: string | undefined;
|
|
240
240
|
}
|
|
241
241
|
/**
|
|
242
242
|
* <p>Adding, updating, or deleting the resource can cause an inconsistent state.</p>
|
|
@@ -245,17 +245,17 @@ export interface AssociateAwsAccountWithPartnerAccountResponse {
|
|
|
245
245
|
export declare class ConflictException extends __BaseException {
|
|
246
246
|
readonly name: "ConflictException";
|
|
247
247
|
readonly $fault: "client";
|
|
248
|
-
Message?: string;
|
|
248
|
+
Message?: string | undefined;
|
|
249
249
|
/**
|
|
250
250
|
* <p>Id of the resource in the conflicting operation.</p>
|
|
251
251
|
* @public
|
|
252
252
|
*/
|
|
253
|
-
ResourceId?: string;
|
|
253
|
+
ResourceId?: string | undefined;
|
|
254
254
|
/**
|
|
255
255
|
* <p>Type of the resource in the conflicting operation.</p>
|
|
256
256
|
* @public
|
|
257
257
|
*/
|
|
258
|
-
ResourceType?: string;
|
|
258
|
+
ResourceType?: string | undefined;
|
|
259
259
|
/**
|
|
260
260
|
* @internal
|
|
261
261
|
*/
|
|
@@ -268,7 +268,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
268
268
|
export declare class InternalServerException extends __BaseException {
|
|
269
269
|
readonly name: "InternalServerException";
|
|
270
270
|
readonly $fault: "server";
|
|
271
|
-
Message?: string;
|
|
271
|
+
Message?: string | undefined;
|
|
272
272
|
/**
|
|
273
273
|
* @internal
|
|
274
274
|
*/
|
|
@@ -281,17 +281,17 @@ export declare class InternalServerException extends __BaseException {
|
|
|
281
281
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
282
282
|
readonly name: "ResourceNotFoundException";
|
|
283
283
|
readonly $fault: "client";
|
|
284
|
-
Message?: string;
|
|
284
|
+
Message?: string | undefined;
|
|
285
285
|
/**
|
|
286
286
|
* <p>Id of the not found resource.</p>
|
|
287
287
|
* @public
|
|
288
288
|
*/
|
|
289
|
-
ResourceId?: string;
|
|
289
|
+
ResourceId?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* <p>Type of the font found resource.</p>
|
|
292
292
|
* @public
|
|
293
293
|
*/
|
|
294
|
-
ResourceType?: string;
|
|
294
|
+
ResourceType?: string | undefined;
|
|
295
295
|
/**
|
|
296
296
|
* @internal
|
|
297
297
|
*/
|
|
@@ -304,7 +304,7 @@ export declare class ResourceNotFoundException extends __BaseException {
|
|
|
304
304
|
export declare class ThrottlingException extends __BaseException {
|
|
305
305
|
readonly name: "ThrottlingException";
|
|
306
306
|
readonly $fault: "client";
|
|
307
|
-
Message?: string;
|
|
307
|
+
Message?: string | undefined;
|
|
308
308
|
/**
|
|
309
309
|
* @internal
|
|
310
310
|
*/
|
|
@@ -317,7 +317,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
317
317
|
export declare class ValidationException extends __BaseException {
|
|
318
318
|
readonly name: "ValidationException";
|
|
319
319
|
readonly $fault: "client";
|
|
320
|
-
Message?: string;
|
|
320
|
+
Message?: string | undefined;
|
|
321
321
|
/**
|
|
322
322
|
* @internal
|
|
323
323
|
*/
|
|
@@ -426,7 +426,7 @@ export interface AssociateWirelessGatewayWithCertificateResponse {
|
|
|
426
426
|
* <p>The ID of the certificate associated with the wireless gateway.</p>
|
|
427
427
|
* @public
|
|
428
428
|
*/
|
|
429
|
-
IotCertificateId?: string;
|
|
429
|
+
IotCertificateId?: string | undefined;
|
|
430
430
|
}
|
|
431
431
|
/**
|
|
432
432
|
* @public
|
|
@@ -470,12 +470,12 @@ export interface Beaconing {
|
|
|
470
470
|
* <p>The data rate for gateways that are sending the beacons.</p>
|
|
471
471
|
* @public
|
|
472
472
|
*/
|
|
473
|
-
DataRate?: number;
|
|
473
|
+
DataRate?: number | undefined;
|
|
474
474
|
/**
|
|
475
475
|
* <p>The frequency list for the gateways to send the beacons.</p>
|
|
476
476
|
* @public
|
|
477
477
|
*/
|
|
478
|
-
Frequencies?: number[];
|
|
478
|
+
Frequencies?: number[] | undefined;
|
|
479
479
|
}
|
|
480
480
|
/**
|
|
481
481
|
* @public
|
|
@@ -530,12 +530,12 @@ export interface CdmaNmrObj {
|
|
|
530
530
|
* <p>Transmit power level of the pilot signal, measured in dBm (decibel-milliwatts).</p>
|
|
531
531
|
* @public
|
|
532
532
|
*/
|
|
533
|
-
PilotPower?: number;
|
|
533
|
+
PilotPower?: number | undefined;
|
|
534
534
|
/**
|
|
535
535
|
* <p>CDMA base station ID (BSID).</p>
|
|
536
536
|
* @public
|
|
537
537
|
*/
|
|
538
|
-
BaseStationId?: number;
|
|
538
|
+
BaseStationId?: number | undefined;
|
|
539
539
|
}
|
|
540
540
|
/**
|
|
541
541
|
* <p>CDMA (Code-division multiple access) object.</p>
|
|
@@ -561,32 +561,32 @@ export interface CdmaObj {
|
|
|
561
561
|
* <p>CDMA registration zone (RZ).</p>
|
|
562
562
|
* @public
|
|
563
563
|
*/
|
|
564
|
-
RegistrationZone?: number;
|
|
564
|
+
RegistrationZone?: number | undefined;
|
|
565
565
|
/**
|
|
566
566
|
* <p>CDMA local identification (local ID) parameters.</p>
|
|
567
567
|
* @public
|
|
568
568
|
*/
|
|
569
|
-
CdmaLocalId?: CdmaLocalId;
|
|
569
|
+
CdmaLocalId?: CdmaLocalId | undefined;
|
|
570
570
|
/**
|
|
571
571
|
* <p>Transmit power level of the pilot signal, measured in dBm (decibel-milliwatts).</p>
|
|
572
572
|
* @public
|
|
573
573
|
*/
|
|
574
|
-
PilotPower?: number;
|
|
574
|
+
PilotPower?: number | undefined;
|
|
575
575
|
/**
|
|
576
576
|
* <p>CDMA base station latitude in degrees.</p>
|
|
577
577
|
* @public
|
|
578
578
|
*/
|
|
579
|
-
BaseLat?: number;
|
|
579
|
+
BaseLat?: number | undefined;
|
|
580
580
|
/**
|
|
581
581
|
* <p>CDMA base station longitude in degrees.</p>
|
|
582
582
|
* @public
|
|
583
583
|
*/
|
|
584
|
-
BaseLng?: number;
|
|
584
|
+
BaseLng?: number | undefined;
|
|
585
585
|
/**
|
|
586
586
|
* <p>CDMA network measurement reports.</p>
|
|
587
587
|
* @public
|
|
588
588
|
*/
|
|
589
|
-
CdmaNmr?: CdmaNmrObj[];
|
|
589
|
+
CdmaNmr?: CdmaNmrObj[] | undefined;
|
|
590
590
|
}
|
|
591
591
|
/**
|
|
592
592
|
* <p>GSM local ID information, which corresponds to the local identification parameters of
|
|
@@ -641,12 +641,12 @@ export interface GsmNmrObj {
|
|
|
641
641
|
* (decibel-milliwatts).</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
RxLevel?: number;
|
|
644
|
+
RxLevel?: number | undefined;
|
|
645
645
|
/**
|
|
646
646
|
* <p>Global identity information of the GSM object.</p>
|
|
647
647
|
* @public
|
|
648
648
|
*/
|
|
649
|
-
GlobalIdentity?: GlobalIdentity;
|
|
649
|
+
GlobalIdentity?: GlobalIdentity | undefined;
|
|
650
650
|
}
|
|
651
651
|
/**
|
|
652
652
|
* <p>GSM object.</p>
|
|
@@ -677,24 +677,24 @@ export interface GsmObj {
|
|
|
677
677
|
* <p>GSM local identification (local ID) information.</p>
|
|
678
678
|
* @public
|
|
679
679
|
*/
|
|
680
|
-
GsmLocalId?: GsmLocalId;
|
|
680
|
+
GsmLocalId?: GsmLocalId | undefined;
|
|
681
681
|
/**
|
|
682
682
|
* <p>Timing advance value, which corresponds to the length of time a signal takes to reach
|
|
683
683
|
* the base station from a mobile phone.</p>
|
|
684
684
|
* @public
|
|
685
685
|
*/
|
|
686
|
-
GsmTimingAdvance?: number;
|
|
686
|
+
GsmTimingAdvance?: number | undefined;
|
|
687
687
|
/**
|
|
688
688
|
* <p>Rx level, which is the received signal power, measured in dBm
|
|
689
689
|
* (decibel-milliwatts).</p>
|
|
690
690
|
* @public
|
|
691
691
|
*/
|
|
692
|
-
RxLevel?: number;
|
|
692
|
+
RxLevel?: number | undefined;
|
|
693
693
|
/**
|
|
694
694
|
* <p>GSM object for network measurement reports.</p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
GsmNmr?: GsmNmrObj[];
|
|
697
|
+
GsmNmr?: GsmNmrObj[] | undefined;
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* <p>LTE local identification (local ID) information.</p>
|
|
@@ -740,12 +740,12 @@ export interface LteNmrObj {
|
|
|
740
740
|
* (decibel-milliwatts).</p>
|
|
741
741
|
* @public
|
|
742
742
|
*/
|
|
743
|
-
Rsrp?: number;
|
|
743
|
+
Rsrp?: number | undefined;
|
|
744
744
|
/**
|
|
745
745
|
* <p>Signal quality of the reference Signal received, measured in decibels (dB).</p>
|
|
746
746
|
* @public
|
|
747
747
|
*/
|
|
748
|
-
Rsrq?: number;
|
|
748
|
+
Rsrq?: number | undefined;
|
|
749
749
|
}
|
|
750
750
|
/**
|
|
751
751
|
* <p>LTE object.</p>
|
|
@@ -772,39 +772,39 @@ export interface LteObj {
|
|
|
772
772
|
* <p>LTE tracking area code.</p>
|
|
773
773
|
* @public
|
|
774
774
|
*/
|
|
775
|
-
Tac?: number;
|
|
775
|
+
Tac?: number | undefined;
|
|
776
776
|
/**
|
|
777
777
|
* <p>LTE local identification (local ID) information.</p>
|
|
778
778
|
* @public
|
|
779
779
|
*/
|
|
780
|
-
LteLocalId?: LteLocalId;
|
|
780
|
+
LteLocalId?: LteLocalId | undefined;
|
|
781
781
|
/**
|
|
782
782
|
* <p>LTE timing advance.</p>
|
|
783
783
|
* @public
|
|
784
784
|
*/
|
|
785
|
-
LteTimingAdvance?: number;
|
|
785
|
+
LteTimingAdvance?: number | undefined;
|
|
786
786
|
/**
|
|
787
787
|
* <p>Signal power of the reference signal received, measured in dBm
|
|
788
788
|
* (decibel-milliwatts).</p>
|
|
789
789
|
* @public
|
|
790
790
|
*/
|
|
791
|
-
Rsrp?: number;
|
|
791
|
+
Rsrp?: number | undefined;
|
|
792
792
|
/**
|
|
793
793
|
* <p>Signal quality of the reference Signal received, measured in decibels (dB).</p>
|
|
794
794
|
* @public
|
|
795
795
|
*/
|
|
796
|
-
Rsrq?: number;
|
|
796
|
+
Rsrq?: number | undefined;
|
|
797
797
|
/**
|
|
798
798
|
* <p>Parameter that determines whether the LTE object is capable of supporting NR (new
|
|
799
799
|
* radio).</p>
|
|
800
800
|
* @public
|
|
801
801
|
*/
|
|
802
|
-
NrCapable?: boolean;
|
|
802
|
+
NrCapable?: boolean | undefined;
|
|
803
803
|
/**
|
|
804
804
|
* <p>LTE object for network measurement reports.</p>
|
|
805
805
|
* @public
|
|
806
806
|
*/
|
|
807
|
-
LteNmr?: LteNmrObj[];
|
|
807
|
+
LteNmr?: LteNmrObj[] | undefined;
|
|
808
808
|
}
|
|
809
809
|
/**
|
|
810
810
|
* <p>TD-SCDMA local identification (local Id) information.</p>
|
|
@@ -843,18 +843,18 @@ export interface TdscdmaNmrObj {
|
|
|
843
843
|
* <p>UTRAN (UMTS Terrestrial Radio Access Network) cell global identifier.</p>
|
|
844
844
|
* @public
|
|
845
845
|
*/
|
|
846
|
-
UtranCid?: number;
|
|
846
|
+
UtranCid?: number | undefined;
|
|
847
847
|
/**
|
|
848
848
|
* <p>Code power of the received signal, measured in decibel-milliwatts (dBm).</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
Rscp?: number;
|
|
851
|
+
Rscp?: number | undefined;
|
|
852
852
|
/**
|
|
853
853
|
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
854
854
|
* electromagnetic wave as it propagates through space.</p>
|
|
855
855
|
* @public
|
|
856
856
|
*/
|
|
857
|
-
PathLoss?: number;
|
|
857
|
+
PathLoss?: number | undefined;
|
|
858
858
|
}
|
|
859
859
|
/**
|
|
860
860
|
* <p>TD-SCDMA object.</p>
|
|
@@ -875,7 +875,7 @@ export interface TdscdmaObj {
|
|
|
875
875
|
* <p>Location Area Code.</p>
|
|
876
876
|
* @public
|
|
877
877
|
*/
|
|
878
|
-
Lac?: number;
|
|
878
|
+
Lac?: number | undefined;
|
|
879
879
|
/**
|
|
880
880
|
* <p>UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.</p>
|
|
881
881
|
* @public
|
|
@@ -885,29 +885,29 @@ export interface TdscdmaObj {
|
|
|
885
885
|
* <p>TD-SCDMA local identification (local ID) information.</p>
|
|
886
886
|
* @public
|
|
887
887
|
*/
|
|
888
|
-
TdscdmaLocalId?: TdscdmaLocalId;
|
|
888
|
+
TdscdmaLocalId?: TdscdmaLocalId | undefined;
|
|
889
889
|
/**
|
|
890
890
|
* <p>TD-SCDMA Timing advance.</p>
|
|
891
891
|
* @public
|
|
892
892
|
*/
|
|
893
|
-
TdscdmaTimingAdvance?: number;
|
|
893
|
+
TdscdmaTimingAdvance?: number | undefined;
|
|
894
894
|
/**
|
|
895
895
|
* <p>Signal power of the received signal (Received Signal Code Power), measured in
|
|
896
896
|
* decibel-milliwatts (dBm).</p>
|
|
897
897
|
* @public
|
|
898
898
|
*/
|
|
899
|
-
Rscp?: number;
|
|
899
|
+
Rscp?: number | undefined;
|
|
900
900
|
/**
|
|
901
901
|
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
902
902
|
* electromagnetic wave as it propagates through space.</p>
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
PathLoss?: number;
|
|
905
|
+
PathLoss?: number | undefined;
|
|
906
906
|
/**
|
|
907
907
|
* <p>TD-SCDMA object for network measurement reports.</p>
|
|
908
908
|
* @public
|
|
909
909
|
*/
|
|
910
|
-
TdscdmaNmr?: TdscdmaNmrObj[];
|
|
910
|
+
TdscdmaNmr?: TdscdmaNmrObj[] | undefined;
|
|
911
911
|
}
|
|
912
912
|
/**
|
|
913
913
|
* <p>WCDMA local identification (local ID) information.</p>
|
|
@@ -949,13 +949,13 @@ export interface WcdmaNmrObj {
|
|
|
949
949
|
* <p>Received Signal Code Power (signal power) (dBm)</p>
|
|
950
950
|
* @public
|
|
951
951
|
*/
|
|
952
|
-
Rscp?: number;
|
|
952
|
+
Rscp?: number | undefined;
|
|
953
953
|
/**
|
|
954
954
|
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
955
955
|
* electromagnetic wave as it propagates through space.</p>
|
|
956
956
|
* @public
|
|
957
957
|
*/
|
|
958
|
-
PathLoss?: number;
|
|
958
|
+
PathLoss?: number | undefined;
|
|
959
959
|
}
|
|
960
960
|
/**
|
|
961
961
|
* <p>WCDMA.</p>
|
|
@@ -976,7 +976,7 @@ export interface WcdmaObj {
|
|
|
976
976
|
* <p>Location Area Code.</p>
|
|
977
977
|
* @public
|
|
978
978
|
*/
|
|
979
|
-
Lac?: number;
|
|
979
|
+
Lac?: number | undefined;
|
|
980
980
|
/**
|
|
981
981
|
* <p>UTRAN (UMTS Terrestrial Radio Access Network) Cell Global Identifier.</p>
|
|
982
982
|
* @public
|
|
@@ -986,23 +986,23 @@ export interface WcdmaObj {
|
|
|
986
986
|
* <p>WCDMA local ID information.</p>
|
|
987
987
|
* @public
|
|
988
988
|
*/
|
|
989
|
-
WcdmaLocalId?: WcdmaLocalId;
|
|
989
|
+
WcdmaLocalId?: WcdmaLocalId | undefined;
|
|
990
990
|
/**
|
|
991
991
|
* <p>Received Signal Code Power (signal power) (dBm).</p>
|
|
992
992
|
* @public
|
|
993
993
|
*/
|
|
994
|
-
Rscp?: number;
|
|
994
|
+
Rscp?: number | undefined;
|
|
995
995
|
/**
|
|
996
996
|
* <p>Path loss, or path attenuation, is the reduction in power density of an
|
|
997
997
|
* electromagnetic wave as it propagates through space.</p>
|
|
998
998
|
* @public
|
|
999
999
|
*/
|
|
1000
|
-
PathLoss?: number;
|
|
1000
|
+
PathLoss?: number | undefined;
|
|
1001
1001
|
/**
|
|
1002
1002
|
* <p>WCDMA object for network measurement reports.</p>
|
|
1003
1003
|
* @public
|
|
1004
1004
|
*/
|
|
1005
|
-
WcdmaNmr?: WcdmaNmrObj[];
|
|
1005
|
+
WcdmaNmr?: WcdmaNmrObj[] | undefined;
|
|
1006
1006
|
}
|
|
1007
1007
|
/**
|
|
1008
1008
|
* <p>The cell towers that were used to perform the measurements.</p>
|
|
@@ -1013,27 +1013,27 @@ export interface CellTowers {
|
|
|
1013
1013
|
* <p>GSM object information.</p>
|
|
1014
1014
|
* @public
|
|
1015
1015
|
*/
|
|
1016
|
-
Gsm?: GsmObj[];
|
|
1016
|
+
Gsm?: GsmObj[] | undefined;
|
|
1017
1017
|
/**
|
|
1018
1018
|
* <p>WCDMA object information.</p>
|
|
1019
1019
|
* @public
|
|
1020
1020
|
*/
|
|
1021
|
-
Wcdma?: WcdmaObj[];
|
|
1021
|
+
Wcdma?: WcdmaObj[] | undefined;
|
|
1022
1022
|
/**
|
|
1023
1023
|
* <p>TD-SCDMA object information.</p>
|
|
1024
1024
|
* @public
|
|
1025
1025
|
*/
|
|
1026
|
-
Tdscdma?: TdscdmaObj[];
|
|
1026
|
+
Tdscdma?: TdscdmaObj[] | undefined;
|
|
1027
1027
|
/**
|
|
1028
1028
|
* <p>LTE object information.</p>
|
|
1029
1029
|
* @public
|
|
1030
1030
|
*/
|
|
1031
|
-
Lte?: LteObj[];
|
|
1031
|
+
Lte?: LteObj[] | undefined;
|
|
1032
1032
|
/**
|
|
1033
1033
|
* <p>CDMA object information.</p>
|
|
1034
1034
|
* @public
|
|
1035
1035
|
*/
|
|
1036
|
-
Cdma?: CdmaObj[];
|
|
1036
|
+
Cdma?: CdmaObj[] | undefined;
|
|
1037
1037
|
}
|
|
1038
1038
|
/**
|
|
1039
1039
|
* @public
|
|
@@ -1097,7 +1097,7 @@ export interface LoRaWANConnectionStatusEventNotificationConfigurations {
|
|
|
1097
1097
|
* disabled.</p>
|
|
1098
1098
|
* @public
|
|
1099
1099
|
*/
|
|
1100
|
-
GatewayEuiEventTopic?: EventNotificationTopicStatus;
|
|
1100
|
+
GatewayEuiEventTopic?: EventNotificationTopicStatus | undefined;
|
|
1101
1101
|
}
|
|
1102
1102
|
/**
|
|
1103
1103
|
* <p>Connection status event configuration object for enabling or disabling topic.</p>
|
|
@@ -1109,13 +1109,13 @@ export interface ConnectionStatusEventConfiguration {
|
|
|
1109
1109
|
* event topics.</p>
|
|
1110
1110
|
* @public
|
|
1111
1111
|
*/
|
|
1112
|
-
LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations;
|
|
1112
|
+
LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* <p>Denotes whether the wireless gateway ID connection status event topic is enabled or
|
|
1115
1115
|
* disabled.</p>
|
|
1116
1116
|
* @public
|
|
1117
1117
|
*/
|
|
1118
|
-
WirelessGatewayIdEventTopic?: EventNotificationTopicStatus;
|
|
1118
|
+
WirelessGatewayIdEventTopic?: EventNotificationTopicStatus | undefined;
|
|
1119
1119
|
}
|
|
1120
1120
|
/**
|
|
1121
1121
|
* <p>Object for LoRaWAN connection status resource type event configuration.</p>
|
|
@@ -1127,7 +1127,7 @@ export interface LoRaWANConnectionStatusResourceTypeEventConfiguration {
|
|
|
1127
1127
|
* disabled.</p>
|
|
1128
1128
|
* @public
|
|
1129
1129
|
*/
|
|
1130
|
-
WirelessGatewayEventTopic?: EventNotificationTopicStatus;
|
|
1130
|
+
WirelessGatewayEventTopic?: EventNotificationTopicStatus | undefined;
|
|
1131
1131
|
}
|
|
1132
1132
|
/**
|
|
1133
1133
|
* <p>Connection status resource type event configuration object for enabling or disabling
|
|
@@ -1140,7 +1140,7 @@ export interface ConnectionStatusResourceTypeEventConfiguration {
|
|
|
1140
1140
|
* LoRaWAN related event topics.</p>
|
|
1141
1141
|
* @public
|
|
1142
1142
|
*/
|
|
1143
|
-
LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration;
|
|
1143
|
+
LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration | undefined;
|
|
1144
1144
|
}
|
|
1145
1145
|
/**
|
|
1146
1146
|
* @public
|
|
@@ -1177,7 +1177,7 @@ export interface CreateDestinationRequest {
|
|
|
1177
1177
|
* <p>The description of the new resource.</p>
|
|
1178
1178
|
* @public
|
|
1179
1179
|
*/
|
|
1180
|
-
Description?: string;
|
|
1180
|
+
Description?: string | undefined;
|
|
1181
1181
|
/**
|
|
1182
1182
|
* <p>The ARN of the IAM Role that authorizes the destination.</p>
|
|
1183
1183
|
* @public
|
|
@@ -1188,7 +1188,7 @@ export interface CreateDestinationRequest {
|
|
|
1188
1188
|
* manage a resource.</p>
|
|
1189
1189
|
* @public
|
|
1190
1190
|
*/
|
|
1191
|
-
Tags?: Tag[];
|
|
1191
|
+
Tags?: Tag[] | undefined;
|
|
1192
1192
|
/**
|
|
1193
1193
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
1194
1194
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -1198,7 +1198,7 @@ export interface CreateDestinationRequest {
|
|
|
1198
1198
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1199
1199
|
* @public
|
|
1200
1200
|
*/
|
|
1201
|
-
ClientRequestToken?: string;
|
|
1201
|
+
ClientRequestToken?: string | undefined;
|
|
1202
1202
|
}
|
|
1203
1203
|
/**
|
|
1204
1204
|
* @public
|
|
@@ -1208,12 +1208,12 @@ export interface CreateDestinationResponse {
|
|
|
1208
1208
|
* <p>The Amazon Resource Name of the new resource.</p>
|
|
1209
1209
|
* @public
|
|
1210
1210
|
*/
|
|
1211
|
-
Arn?: string;
|
|
1211
|
+
Arn?: string | undefined;
|
|
1212
1212
|
/**
|
|
1213
1213
|
* <p>The name of the new resource.</p>
|
|
1214
1214
|
* @public
|
|
1215
1215
|
*/
|
|
1216
|
-
Name?: string;
|
|
1216
|
+
Name?: string | undefined;
|
|
1217
1217
|
}
|
|
1218
1218
|
/**
|
|
1219
1219
|
* <p>LoRaWANDeviceProfile object.</p>
|
|
@@ -1224,98 +1224,98 @@ export interface LoRaWANDeviceProfile {
|
|
|
1224
1224
|
* <p>The SupportsClassB value.</p>
|
|
1225
1225
|
* @public
|
|
1226
1226
|
*/
|
|
1227
|
-
SupportsClassB?: boolean;
|
|
1227
|
+
SupportsClassB?: boolean | undefined;
|
|
1228
1228
|
/**
|
|
1229
1229
|
* <p>The ClassBTimeout value.</p>
|
|
1230
1230
|
* @public
|
|
1231
1231
|
*/
|
|
1232
|
-
ClassBTimeout?: number;
|
|
1232
|
+
ClassBTimeout?: number | undefined;
|
|
1233
1233
|
/**
|
|
1234
1234
|
* <p>The PingSlotPeriod value.</p>
|
|
1235
1235
|
* @public
|
|
1236
1236
|
*/
|
|
1237
|
-
PingSlotPeriod?: number;
|
|
1237
|
+
PingSlotPeriod?: number | undefined;
|
|
1238
1238
|
/**
|
|
1239
1239
|
* <p>The PingSlotDR value.</p>
|
|
1240
1240
|
* @public
|
|
1241
1241
|
*/
|
|
1242
|
-
PingSlotDr?: number;
|
|
1242
|
+
PingSlotDr?: number | undefined;
|
|
1243
1243
|
/**
|
|
1244
1244
|
* <p>The PingSlotFreq value.</p>
|
|
1245
1245
|
* @public
|
|
1246
1246
|
*/
|
|
1247
|
-
PingSlotFreq?: number;
|
|
1247
|
+
PingSlotFreq?: number | undefined;
|
|
1248
1248
|
/**
|
|
1249
1249
|
* <p>The SupportsClassC value.</p>
|
|
1250
1250
|
* @public
|
|
1251
1251
|
*/
|
|
1252
|
-
SupportsClassC?: boolean;
|
|
1252
|
+
SupportsClassC?: boolean | undefined;
|
|
1253
1253
|
/**
|
|
1254
1254
|
* <p>The ClassCTimeout value.</p>
|
|
1255
1255
|
* @public
|
|
1256
1256
|
*/
|
|
1257
|
-
ClassCTimeout?: number;
|
|
1257
|
+
ClassCTimeout?: number | undefined;
|
|
1258
1258
|
/**
|
|
1259
1259
|
* <p>The MAC version (such as OTAA 1.1 or OTAA 1.0.3) to use with this device
|
|
1260
1260
|
* profile.</p>
|
|
1261
1261
|
* @public
|
|
1262
1262
|
*/
|
|
1263
|
-
MacVersion?: string;
|
|
1263
|
+
MacVersion?: string | undefined;
|
|
1264
1264
|
/**
|
|
1265
1265
|
* <p>The version of regional parameters.</p>
|
|
1266
1266
|
* @public
|
|
1267
1267
|
*/
|
|
1268
|
-
RegParamsRevision?: string;
|
|
1268
|
+
RegParamsRevision?: string | undefined;
|
|
1269
1269
|
/**
|
|
1270
1270
|
* <p>The RXDelay1 value.</p>
|
|
1271
1271
|
* @public
|
|
1272
1272
|
*/
|
|
1273
|
-
RxDelay1?: number;
|
|
1273
|
+
RxDelay1?: number | undefined;
|
|
1274
1274
|
/**
|
|
1275
1275
|
* <p>The RXDROffset1 value.</p>
|
|
1276
1276
|
* @public
|
|
1277
1277
|
*/
|
|
1278
|
-
RxDrOffset1?: number;
|
|
1278
|
+
RxDrOffset1?: number | undefined;
|
|
1279
1279
|
/**
|
|
1280
1280
|
* <p>The RXDataRate2 value.</p>
|
|
1281
1281
|
* @public
|
|
1282
1282
|
*/
|
|
1283
|
-
RxDataRate2?: number;
|
|
1283
|
+
RxDataRate2?: number | undefined;
|
|
1284
1284
|
/**
|
|
1285
1285
|
* <p>The RXFreq2 value.</p>
|
|
1286
1286
|
* @public
|
|
1287
1287
|
*/
|
|
1288
|
-
RxFreq2?: number;
|
|
1288
|
+
RxFreq2?: number | undefined;
|
|
1289
1289
|
/**
|
|
1290
1290
|
* <p>The list of values that make up the FactoryPresetFreqs value.</p>
|
|
1291
1291
|
* @public
|
|
1292
1292
|
*/
|
|
1293
|
-
FactoryPresetFreqsList?: number[];
|
|
1293
|
+
FactoryPresetFreqsList?: number[] | undefined;
|
|
1294
1294
|
/**
|
|
1295
1295
|
* <p>The MaxEIRP value.</p>
|
|
1296
1296
|
* @public
|
|
1297
1297
|
*/
|
|
1298
|
-
MaxEirp?: number;
|
|
1298
|
+
MaxEirp?: number | undefined;
|
|
1299
1299
|
/**
|
|
1300
1300
|
* <p>The MaxDutyCycle value. It ranges from 0 to 15.</p>
|
|
1301
1301
|
* @public
|
|
1302
1302
|
*/
|
|
1303
|
-
MaxDutyCycle?: number;
|
|
1303
|
+
MaxDutyCycle?: number | undefined;
|
|
1304
1304
|
/**
|
|
1305
1305
|
* <p>The frequency band (RFRegion) value.</p>
|
|
1306
1306
|
* @public
|
|
1307
1307
|
*/
|
|
1308
|
-
RfRegion?: string;
|
|
1308
|
+
RfRegion?: string | undefined;
|
|
1309
1309
|
/**
|
|
1310
1310
|
* <p>The SupportsJoin value.</p>
|
|
1311
1311
|
* @public
|
|
1312
1312
|
*/
|
|
1313
|
-
SupportsJoin?: boolean;
|
|
1313
|
+
SupportsJoin?: boolean | undefined;
|
|
1314
1314
|
/**
|
|
1315
1315
|
* <p>The Supports32BitFCnt value.</p>
|
|
1316
1316
|
* @public
|
|
1317
1317
|
*/
|
|
1318
|
-
Supports32BitFCnt?: boolean;
|
|
1318
|
+
Supports32BitFCnt?: boolean | undefined;
|
|
1319
1319
|
}
|
|
1320
1320
|
/**
|
|
1321
1321
|
* <p>Sidewalk object for creating a device profile.</p>
|
|
@@ -1331,18 +1331,18 @@ export interface CreateDeviceProfileRequest {
|
|
|
1331
1331
|
* <p>The name of the new resource.</p>
|
|
1332
1332
|
* @public
|
|
1333
1333
|
*/
|
|
1334
|
-
Name?: string;
|
|
1334
|
+
Name?: string | undefined;
|
|
1335
1335
|
/**
|
|
1336
1336
|
* <p>The device profile information to use to create the device profile.</p>
|
|
1337
1337
|
* @public
|
|
1338
1338
|
*/
|
|
1339
|
-
LoRaWAN?: LoRaWANDeviceProfile;
|
|
1339
|
+
LoRaWAN?: LoRaWANDeviceProfile | undefined;
|
|
1340
1340
|
/**
|
|
1341
1341
|
* <p>The tags to attach to the new device profile. Tags are metadata that you can use to
|
|
1342
1342
|
* manage a resource.</p>
|
|
1343
1343
|
* @public
|
|
1344
1344
|
*/
|
|
1345
|
-
Tags?: Tag[];
|
|
1345
|
+
Tags?: Tag[] | undefined;
|
|
1346
1346
|
/**
|
|
1347
1347
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
1348
1348
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -1352,12 +1352,12 @@ export interface CreateDeviceProfileRequest {
|
|
|
1352
1352
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1353
1353
|
* @public
|
|
1354
1354
|
*/
|
|
1355
|
-
ClientRequestToken?: string;
|
|
1355
|
+
ClientRequestToken?: string | undefined;
|
|
1356
1356
|
/**
|
|
1357
1357
|
* <p>The Sidewalk-related information for creating the Sidewalk device profile.</p>
|
|
1358
1358
|
* @public
|
|
1359
1359
|
*/
|
|
1360
|
-
Sidewalk?: SidewalkCreateDeviceProfile;
|
|
1360
|
+
Sidewalk?: SidewalkCreateDeviceProfile | undefined;
|
|
1361
1361
|
}
|
|
1362
1362
|
/**
|
|
1363
1363
|
* @public
|
|
@@ -1367,12 +1367,12 @@ export interface CreateDeviceProfileResponse {
|
|
|
1367
1367
|
* <p>The Amazon Resource Name of the new resource.</p>
|
|
1368
1368
|
* @public
|
|
1369
1369
|
*/
|
|
1370
|
-
Arn?: string;
|
|
1370
|
+
Arn?: string | undefined;
|
|
1371
1371
|
/**
|
|
1372
1372
|
* <p>The ID of the new device profile.</p>
|
|
1373
1373
|
* @public
|
|
1374
1374
|
*/
|
|
1375
|
-
Id?: string;
|
|
1375
|
+
Id?: string | undefined;
|
|
1376
1376
|
}
|
|
1377
1377
|
/**
|
|
1378
1378
|
* @public
|
|
@@ -1406,7 +1406,7 @@ export interface LoRaWANFuotaTask {
|
|
|
1406
1406
|
* <p>Supported RfRegions</p>
|
|
1407
1407
|
* @public
|
|
1408
1408
|
*/
|
|
1409
|
-
RfRegion?: SupportedRfRegion;
|
|
1409
|
+
RfRegion?: SupportedRfRegion | undefined;
|
|
1410
1410
|
}
|
|
1411
1411
|
/**
|
|
1412
1412
|
* @public
|
|
@@ -1416,12 +1416,12 @@ export interface CreateFuotaTaskRequest {
|
|
|
1416
1416
|
* <p>The name of a FUOTA task.</p>
|
|
1417
1417
|
* @public
|
|
1418
1418
|
*/
|
|
1419
|
-
Name?: string;
|
|
1419
|
+
Name?: string | undefined;
|
|
1420
1420
|
/**
|
|
1421
1421
|
* <p>The description of the new resource.</p>
|
|
1422
1422
|
* @public
|
|
1423
1423
|
*/
|
|
1424
|
-
Description?: string;
|
|
1424
|
+
Description?: string | undefined;
|
|
1425
1425
|
/**
|
|
1426
1426
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
1427
1427
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -1431,12 +1431,12 @@ export interface CreateFuotaTaskRequest {
|
|
|
1431
1431
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1432
1432
|
* @public
|
|
1433
1433
|
*/
|
|
1434
|
-
ClientRequestToken?: string;
|
|
1434
|
+
ClientRequestToken?: string | undefined;
|
|
1435
1435
|
/**
|
|
1436
1436
|
* <p>The LoRaWAN information used with a FUOTA task.</p>
|
|
1437
1437
|
* @public
|
|
1438
1438
|
*/
|
|
1439
|
-
LoRaWAN?: LoRaWANFuotaTask;
|
|
1439
|
+
LoRaWAN?: LoRaWANFuotaTask | undefined;
|
|
1440
1440
|
/**
|
|
1441
1441
|
* <p>The S3 URI points to a firmware update image that is to be used with a FUOTA
|
|
1442
1442
|
* task.</p>
|
|
@@ -1453,7 +1453,7 @@ export interface CreateFuotaTaskRequest {
|
|
|
1453
1453
|
* manage a resource.</p>
|
|
1454
1454
|
* @public
|
|
1455
1455
|
*/
|
|
1456
|
-
Tags?: Tag[];
|
|
1456
|
+
Tags?: Tag[] | undefined;
|
|
1457
1457
|
/**
|
|
1458
1458
|
* <p>The percentage of the added fragments that are redundant. For example, if the size of
|
|
1459
1459
|
* the firmware image file is 100 bytes and the fragment size is 10 bytes, with
|
|
@@ -1461,13 +1461,13 @@ export interface CreateFuotaTaskRequest {
|
|
|
1461
1461
|
* is (100 / 10) + (100 / 10 * 50%) = 15.</p>
|
|
1462
1462
|
* @public
|
|
1463
1463
|
*/
|
|
1464
|
-
RedundancyPercent?: number;
|
|
1464
|
+
RedundancyPercent?: number | undefined;
|
|
1465
1465
|
/**
|
|
1466
1466
|
* <p>The size of each fragment in bytes. This parameter is supported only for FUOTA tasks
|
|
1467
1467
|
* with multicast groups.</p>
|
|
1468
1468
|
* @public
|
|
1469
1469
|
*/
|
|
1470
|
-
FragmentSizeBytes?: number;
|
|
1470
|
+
FragmentSizeBytes?: number | undefined;
|
|
1471
1471
|
/**
|
|
1472
1472
|
* <p>The interval for sending fragments in milliseconds, rounded to the nearest
|
|
1473
1473
|
* second.</p>
|
|
@@ -1479,7 +1479,13 @@ export interface CreateFuotaTaskRequest {
|
|
|
1479
1479
|
* </note>
|
|
1480
1480
|
* @public
|
|
1481
1481
|
*/
|
|
1482
|
-
FragmentIntervalMS?: number;
|
|
1482
|
+
FragmentIntervalMS?: number | undefined;
|
|
1483
|
+
/**
|
|
1484
|
+
* <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
|
|
1485
|
+
* It is sent transparently to the device. It is a binary field encoded in base64</p>
|
|
1486
|
+
* @public
|
|
1487
|
+
*/
|
|
1488
|
+
Descriptor?: string | undefined;
|
|
1483
1489
|
}
|
|
1484
1490
|
/**
|
|
1485
1491
|
* @public
|
|
@@ -1489,12 +1495,12 @@ export interface CreateFuotaTaskResponse {
|
|
|
1489
1495
|
* <p>The arn of a FUOTA task.</p>
|
|
1490
1496
|
* @public
|
|
1491
1497
|
*/
|
|
1492
|
-
Arn?: string;
|
|
1498
|
+
Arn?: string | undefined;
|
|
1493
1499
|
/**
|
|
1494
1500
|
* <p>The ID of a FUOTA task.</p>
|
|
1495
1501
|
* @public
|
|
1496
1502
|
*/
|
|
1497
|
-
Id?: string;
|
|
1503
|
+
Id?: string | undefined;
|
|
1498
1504
|
}
|
|
1499
1505
|
/**
|
|
1500
1506
|
* @public
|
|
@@ -1508,6 +1514,27 @@ export declare const DlClass: {
|
|
|
1508
1514
|
* @public
|
|
1509
1515
|
*/
|
|
1510
1516
|
export type DlClass = (typeof DlClass)[keyof typeof DlClass];
|
|
1517
|
+
/**
|
|
1518
|
+
* <p>Specify the list of gateways to which you want to send the multicast downlink messages.
|
|
1519
|
+
* The multicast message will be sent to each gateway in the sequence provided in the list.</p>
|
|
1520
|
+
* @public
|
|
1521
|
+
*/
|
|
1522
|
+
export interface ParticipatingGatewaysMulticast {
|
|
1523
|
+
/**
|
|
1524
|
+
* <p>The list of gateways that you want to use for sending the multicast downlink. Each downlink will be
|
|
1525
|
+
* sent to all the gateways in the list with transmission interval between them. If list is empty the gateway
|
|
1526
|
+
* list will be dynamically selected similar to the case of no ParticipatingGateways
|
|
1527
|
+
* </p>
|
|
1528
|
+
* @public
|
|
1529
|
+
*/
|
|
1530
|
+
GatewayList?: string[] | undefined;
|
|
1531
|
+
/**
|
|
1532
|
+
* <p>The duration of time for which AWS IoT Core for LoRaWAN will wait before transmitting
|
|
1533
|
+
* the multicast payload to the next gateway in the list.</p>
|
|
1534
|
+
* @public
|
|
1535
|
+
*/
|
|
1536
|
+
TransmissionInterval?: number | undefined;
|
|
1537
|
+
}
|
|
1511
1538
|
/**
|
|
1512
1539
|
* <p>The LoRaWAN information that is to be used with the multicast group.</p>
|
|
1513
1540
|
* @public
|
|
@@ -1517,12 +1544,18 @@ export interface LoRaWANMulticast {
|
|
|
1517
1544
|
* <p>Supported RfRegions</p>
|
|
1518
1545
|
* @public
|
|
1519
1546
|
*/
|
|
1520
|
-
RfRegion?: SupportedRfRegion;
|
|
1547
|
+
RfRegion?: SupportedRfRegion | undefined;
|
|
1521
1548
|
/**
|
|
1522
1549
|
* <p>DlClass for LoRaWAM, valid values are ClassB and ClassC.</p>
|
|
1523
1550
|
* @public
|
|
1524
1551
|
*/
|
|
1525
|
-
DlClass?: DlClass;
|
|
1552
|
+
DlClass?: DlClass | undefined;
|
|
1553
|
+
/**
|
|
1554
|
+
* <p>Specify the list of gateways to which you want to send the multicast downlink messages.
|
|
1555
|
+
* The multicast message will be sent to each gateway in the sequence provided in the list.</p>
|
|
1556
|
+
* @public
|
|
1557
|
+
*/
|
|
1558
|
+
ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
|
|
1526
1559
|
}
|
|
1527
1560
|
/**
|
|
1528
1561
|
* @public
|
|
@@ -1532,12 +1565,12 @@ export interface CreateMulticastGroupRequest {
|
|
|
1532
1565
|
* <p>The name of the multicast group.</p>
|
|
1533
1566
|
* @public
|
|
1534
1567
|
*/
|
|
1535
|
-
Name?: string;
|
|
1568
|
+
Name?: string | undefined;
|
|
1536
1569
|
/**
|
|
1537
1570
|
* <p>The description of the multicast group.</p>
|
|
1538
1571
|
* @public
|
|
1539
1572
|
*/
|
|
1540
|
-
Description?: string;
|
|
1573
|
+
Description?: string | undefined;
|
|
1541
1574
|
/**
|
|
1542
1575
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
1543
1576
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -1547,7 +1580,7 @@ export interface CreateMulticastGroupRequest {
|
|
|
1547
1580
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1548
1581
|
* @public
|
|
1549
1582
|
*/
|
|
1550
|
-
ClientRequestToken?: string;
|
|
1583
|
+
ClientRequestToken?: string | undefined;
|
|
1551
1584
|
/**
|
|
1552
1585
|
* <p>The LoRaWAN information that is to be used with the multicast group.</p>
|
|
1553
1586
|
* @public
|
|
@@ -1558,7 +1591,7 @@ export interface CreateMulticastGroupRequest {
|
|
|
1558
1591
|
* manage a resource.</p>
|
|
1559
1592
|
* @public
|
|
1560
1593
|
*/
|
|
1561
|
-
Tags?: Tag[];
|
|
1594
|
+
Tags?: Tag[] | undefined;
|
|
1562
1595
|
}
|
|
1563
1596
|
/**
|
|
1564
1597
|
* @public
|
|
@@ -1568,12 +1601,12 @@ export interface CreateMulticastGroupResponse {
|
|
|
1568
1601
|
* <p>The arn of the multicast group.</p>
|
|
1569
1602
|
* @public
|
|
1570
1603
|
*/
|
|
1571
|
-
Arn?: string;
|
|
1604
|
+
Arn?: string | undefined;
|
|
1572
1605
|
/**
|
|
1573
1606
|
* <p>The ID of the multicast group.</p>
|
|
1574
1607
|
* @public
|
|
1575
1608
|
*/
|
|
1576
|
-
Id?: string;
|
|
1609
|
+
Id?: string | undefined;
|
|
1577
1610
|
}
|
|
1578
1611
|
/**
|
|
1579
1612
|
* @public
|
|
@@ -1624,14 +1657,14 @@ export interface TraceContent {
|
|
|
1624
1657
|
* server.</p>
|
|
1625
1658
|
* @public
|
|
1626
1659
|
*/
|
|
1627
|
-
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo;
|
|
1660
|
+
WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | undefined;
|
|
1628
1661
|
/**
|
|
1629
1662
|
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
1630
1663
|
* <code>ERROR</code> to display less verbose logs containing only error information,
|
|
1631
1664
|
* or to <code>INFO</code> for more detailed logs.</p>
|
|
1632
1665
|
* @public
|
|
1633
1666
|
*/
|
|
1634
|
-
LogLevel?: LogLevel;
|
|
1667
|
+
LogLevel?: LogLevel | undefined;
|
|
1635
1668
|
/**
|
|
1636
1669
|
* <p>
|
|
1637
1670
|
* <code>FrameInfo</code> of your multicast group resources for the trace content. Use
|
|
@@ -1639,7 +1672,7 @@ export interface TraceContent {
|
|
|
1639
1672
|
* network server.</p>
|
|
1640
1673
|
* @public
|
|
1641
1674
|
*/
|
|
1642
|
-
MulticastFrameInfo?: MulticastFrameInfo;
|
|
1675
|
+
MulticastFrameInfo?: MulticastFrameInfo | undefined;
|
|
1643
1676
|
}
|
|
1644
1677
|
/**
|
|
1645
1678
|
* @public
|
|
@@ -1654,30 +1687,30 @@ export interface CreateNetworkAnalyzerConfigurationRequest {
|
|
|
1654
1687
|
* <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
|
|
1655
1688
|
* @public
|
|
1656
1689
|
*/
|
|
1657
|
-
TraceContent?: TraceContent;
|
|
1690
|
+
TraceContent?: TraceContent | undefined;
|
|
1658
1691
|
/**
|
|
1659
1692
|
* <p>Wireless device resources to add to the network analyzer configuration. Provide the
|
|
1660
1693
|
* <code>WirelessDeviceId</code> of the resource to add in the input array.</p>
|
|
1661
1694
|
* @public
|
|
1662
1695
|
*/
|
|
1663
|
-
WirelessDevices?: string[];
|
|
1696
|
+
WirelessDevices?: string[] | undefined;
|
|
1664
1697
|
/**
|
|
1665
1698
|
* <p>Wireless gateway resources to add to the network analyzer configuration. Provide the
|
|
1666
1699
|
* <code>WirelessGatewayId</code> of the resource to add in the input array.</p>
|
|
1667
1700
|
* @public
|
|
1668
1701
|
*/
|
|
1669
|
-
WirelessGateways?: string[];
|
|
1702
|
+
WirelessGateways?: string[] | undefined;
|
|
1670
1703
|
/**
|
|
1671
1704
|
* <p>The description of the new resource.</p>
|
|
1672
1705
|
* @public
|
|
1673
1706
|
*/
|
|
1674
|
-
Description?: string;
|
|
1707
|
+
Description?: string | undefined;
|
|
1675
1708
|
/**
|
|
1676
1709
|
* <p>The tag to attach to the specified resource. Tags are metadata that you can use to
|
|
1677
1710
|
* manage a resource.</p>
|
|
1678
1711
|
* @public
|
|
1679
1712
|
*/
|
|
1680
|
-
Tags?: Tag[];
|
|
1713
|
+
Tags?: Tag[] | undefined;
|
|
1681
1714
|
/**
|
|
1682
1715
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
1683
1716
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -1687,13 +1720,13 @@ export interface CreateNetworkAnalyzerConfigurationRequest {
|
|
|
1687
1720
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1688
1721
|
* @public
|
|
1689
1722
|
*/
|
|
1690
|
-
ClientRequestToken?: string;
|
|
1723
|
+
ClientRequestToken?: string | undefined;
|
|
1691
1724
|
/**
|
|
1692
1725
|
* <p>Multicast Group resources to add to the network analyzer configruation. Provide the
|
|
1693
1726
|
* <code>MulticastGroupId</code> of the resource to add in the input array.</p>
|
|
1694
1727
|
* @public
|
|
1695
1728
|
*/
|
|
1696
|
-
MulticastGroups?: string[];
|
|
1729
|
+
MulticastGroups?: string[] | undefined;
|
|
1697
1730
|
}
|
|
1698
1731
|
/**
|
|
1699
1732
|
* @public
|
|
@@ -1703,12 +1736,12 @@ export interface CreateNetworkAnalyzerConfigurationResponse {
|
|
|
1703
1736
|
* <p>The Amazon Resource Name of the new resource.</p>
|
|
1704
1737
|
* @public
|
|
1705
1738
|
*/
|
|
1706
|
-
Arn?: string;
|
|
1739
|
+
Arn?: string | undefined;
|
|
1707
1740
|
/**
|
|
1708
1741
|
* <p>Name of the network analyzer configuration.</p>
|
|
1709
1742
|
* @public
|
|
1710
1743
|
*/
|
|
1711
|
-
Name?: string;
|
|
1744
|
+
Name?: string | undefined;
|
|
1712
1745
|
}
|
|
1713
1746
|
/**
|
|
1714
1747
|
* <p>LoRaWANServiceProfile object.</p>
|
|
@@ -1719,27 +1752,27 @@ export interface LoRaWANServiceProfile {
|
|
|
1719
1752
|
* <p>The AddGWMetaData value.</p>
|
|
1720
1753
|
* @public
|
|
1721
1754
|
*/
|
|
1722
|
-
AddGwMetadata?: boolean;
|
|
1755
|
+
AddGwMetadata?: boolean | undefined;
|
|
1723
1756
|
/**
|
|
1724
1757
|
* <p>The DrMin value.</p>
|
|
1725
1758
|
* @public
|
|
1726
1759
|
*/
|
|
1727
|
-
DrMin?: number;
|
|
1760
|
+
DrMin?: number | undefined;
|
|
1728
1761
|
/**
|
|
1729
1762
|
* <p>The DrMax value.</p>
|
|
1730
1763
|
* @public
|
|
1731
1764
|
*/
|
|
1732
|
-
DrMax?: number;
|
|
1765
|
+
DrMax?: number | undefined;
|
|
1733
1766
|
/**
|
|
1734
1767
|
* <p>The PRAllowed value that describes whether passive roaming is allowed.</p>
|
|
1735
1768
|
* @public
|
|
1736
1769
|
*/
|
|
1737
|
-
PrAllowed?: boolean;
|
|
1770
|
+
PrAllowed?: boolean | undefined;
|
|
1738
1771
|
/**
|
|
1739
1772
|
* <p>The RAAllowed value that describes whether roaming activation is allowed.</p>
|
|
1740
1773
|
* @public
|
|
1741
1774
|
*/
|
|
1742
|
-
RaAllowed?: boolean;
|
|
1775
|
+
RaAllowed?: boolean | undefined;
|
|
1743
1776
|
}
|
|
1744
1777
|
/**
|
|
1745
1778
|
* @public
|
|
@@ -1749,18 +1782,18 @@ export interface CreateServiceProfileRequest {
|
|
|
1749
1782
|
* <p>The name of the new resource.</p>
|
|
1750
1783
|
* @public
|
|
1751
1784
|
*/
|
|
1752
|
-
Name?: string;
|
|
1785
|
+
Name?: string | undefined;
|
|
1753
1786
|
/**
|
|
1754
1787
|
* <p>The service profile information to use to create the service profile.</p>
|
|
1755
1788
|
* @public
|
|
1756
1789
|
*/
|
|
1757
|
-
LoRaWAN?: LoRaWANServiceProfile;
|
|
1790
|
+
LoRaWAN?: LoRaWANServiceProfile | undefined;
|
|
1758
1791
|
/**
|
|
1759
1792
|
* <p>The tags to attach to the new service profile. Tags are metadata that you can use to
|
|
1760
1793
|
* manage a resource.</p>
|
|
1761
1794
|
* @public
|
|
1762
1795
|
*/
|
|
1763
|
-
Tags?: Tag[];
|
|
1796
|
+
Tags?: Tag[] | undefined;
|
|
1764
1797
|
/**
|
|
1765
1798
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
1766
1799
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -1770,7 +1803,7 @@ export interface CreateServiceProfileRequest {
|
|
|
1770
1803
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
1771
1804
|
* @public
|
|
1772
1805
|
*/
|
|
1773
|
-
ClientRequestToken?: string;
|
|
1806
|
+
ClientRequestToken?: string | undefined;
|
|
1774
1807
|
}
|
|
1775
1808
|
/**
|
|
1776
1809
|
* @public
|
|
@@ -1780,12 +1813,12 @@ export interface CreateServiceProfileResponse {
|
|
|
1780
1813
|
* <p>The Amazon Resource Name of the new resource.</p>
|
|
1781
1814
|
* @public
|
|
1782
1815
|
*/
|
|
1783
|
-
Arn?: string;
|
|
1816
|
+
Arn?: string | undefined;
|
|
1784
1817
|
/**
|
|
1785
1818
|
* <p>The ID of the new service profile.</p>
|
|
1786
1819
|
* @public
|
|
1787
1820
|
*/
|
|
1788
|
-
Id?: string;
|
|
1821
|
+
Id?: string | undefined;
|
|
1789
1822
|
}
|
|
1790
1823
|
/**
|
|
1791
1824
|
* <p>The FPorts for the position information.</p>
|
|
@@ -1796,17 +1829,17 @@ export interface Positioning {
|
|
|
1796
1829
|
* <p>The Fport value.</p>
|
|
1797
1830
|
* @public
|
|
1798
1831
|
*/
|
|
1799
|
-
ClockSync?: number;
|
|
1832
|
+
ClockSync?: number | undefined;
|
|
1800
1833
|
/**
|
|
1801
1834
|
* <p>The Fport value.</p>
|
|
1802
1835
|
* @public
|
|
1803
1836
|
*/
|
|
1804
|
-
Stream?: number;
|
|
1837
|
+
Stream?: number | undefined;
|
|
1805
1838
|
/**
|
|
1806
1839
|
* <p>The Fport value.</p>
|
|
1807
1840
|
* @public
|
|
1808
1841
|
*/
|
|
1809
|
-
Gnss?: number;
|
|
1842
|
+
Gnss?: number | undefined;
|
|
1810
1843
|
}
|
|
1811
1844
|
/**
|
|
1812
1845
|
* <p>List of FPort assigned for different LoRaWAN application packages to use</p>
|
|
@@ -1817,28 +1850,28 @@ export interface FPorts {
|
|
|
1817
1850
|
* <p>The Fport value.</p>
|
|
1818
1851
|
* @public
|
|
1819
1852
|
*/
|
|
1820
|
-
Fuota?: number;
|
|
1853
|
+
Fuota?: number | undefined;
|
|
1821
1854
|
/**
|
|
1822
1855
|
* <p>The Fport value.</p>
|
|
1823
1856
|
* @public
|
|
1824
1857
|
*/
|
|
1825
|
-
Multicast?: number;
|
|
1858
|
+
Multicast?: number | undefined;
|
|
1826
1859
|
/**
|
|
1827
1860
|
* <p>The Fport value.</p>
|
|
1828
1861
|
* @public
|
|
1829
1862
|
*/
|
|
1830
|
-
ClockSync?: number;
|
|
1863
|
+
ClockSync?: number | undefined;
|
|
1831
1864
|
/**
|
|
1832
1865
|
* <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning
|
|
1833
1866
|
* information.</p>
|
|
1834
1867
|
* @public
|
|
1835
1868
|
*/
|
|
1836
|
-
Positioning?: Positioning;
|
|
1869
|
+
Positioning?: Positioning | undefined;
|
|
1837
1870
|
/**
|
|
1838
1871
|
* <p>Optional LoRaWAN application information, which can be used for geolocation.</p>
|
|
1839
1872
|
* @public
|
|
1840
1873
|
*/
|
|
1841
|
-
Applications?: ApplicationConfig[];
|
|
1874
|
+
Applications?: ApplicationConfig[] | undefined;
|
|
1842
1875
|
}
|
|
1843
1876
|
/**
|
|
1844
1877
|
* <p>OTAA device object for v1.0.x</p>
|
|
@@ -1849,24 +1882,24 @@ export interface OtaaV1_0_x {
|
|
|
1849
1882
|
* <p>The AppKey value.</p>
|
|
1850
1883
|
* @public
|
|
1851
1884
|
*/
|
|
1852
|
-
AppKey?: string;
|
|
1885
|
+
AppKey?: string | undefined;
|
|
1853
1886
|
/**
|
|
1854
1887
|
* <p>The AppEUI value. You specify this value when using LoRaWAN versions v1.0.2 or
|
|
1855
1888
|
* v1.0.3.</p>
|
|
1856
1889
|
* @public
|
|
1857
1890
|
*/
|
|
1858
|
-
AppEui?: string;
|
|
1891
|
+
AppEui?: string | undefined;
|
|
1859
1892
|
/**
|
|
1860
1893
|
* <p>The JoinEUI value. You specify this value instead of the AppEUI when using LoRaWAN
|
|
1861
1894
|
* version v1.0.4.</p>
|
|
1862
1895
|
* @public
|
|
1863
1896
|
*/
|
|
1864
|
-
JoinEui?: string;
|
|
1897
|
+
JoinEui?: string | undefined;
|
|
1865
1898
|
/**
|
|
1866
1899
|
* <p>The GenAppKey value.</p>
|
|
1867
1900
|
* @public
|
|
1868
1901
|
*/
|
|
1869
|
-
GenAppKey?: string;
|
|
1902
|
+
GenAppKey?: string | undefined;
|
|
1870
1903
|
}
|
|
1871
1904
|
/**
|
|
1872
1905
|
* <p>OTAA device object for v1.1</p>
|
|
@@ -1877,17 +1910,17 @@ export interface OtaaV1_1 {
|
|
|
1877
1910
|
* <p>The AppKey value.</p>
|
|
1878
1911
|
* @public
|
|
1879
1912
|
*/
|
|
1880
|
-
AppKey?: string;
|
|
1913
|
+
AppKey?: string | undefined;
|
|
1881
1914
|
/**
|
|
1882
1915
|
* <p>The NwkKey value.</p>
|
|
1883
1916
|
* @public
|
|
1884
1917
|
*/
|
|
1885
|
-
NwkKey?: string;
|
|
1918
|
+
NwkKey?: string | undefined;
|
|
1886
1919
|
/**
|
|
1887
1920
|
* <p>The JoinEUI value.</p>
|
|
1888
1921
|
* @public
|
|
1889
1922
|
*/
|
|
1890
|
-
JoinEui?: string;
|
|
1923
|
+
JoinEui?: string | undefined;
|
|
1891
1924
|
}
|
|
1892
1925
|
/**
|
|
1893
1926
|
* <p>LoRaWAN object for create functions.</p>
|
|
@@ -1898,42 +1931,42 @@ export interface LoRaWANDevice {
|
|
|
1898
1931
|
* <p>The DevEUI value.</p>
|
|
1899
1932
|
* @public
|
|
1900
1933
|
*/
|
|
1901
|
-
DevEui?: string;
|
|
1934
|
+
DevEui?: string | undefined;
|
|
1902
1935
|
/**
|
|
1903
1936
|
* <p>The ID of the device profile for the new wireless device.</p>
|
|
1904
1937
|
* @public
|
|
1905
1938
|
*/
|
|
1906
|
-
DeviceProfileId?: string;
|
|
1939
|
+
DeviceProfileId?: string | undefined;
|
|
1907
1940
|
/**
|
|
1908
1941
|
* <p>The ID of the service profile.</p>
|
|
1909
1942
|
* @public
|
|
1910
1943
|
*/
|
|
1911
|
-
ServiceProfileId?: string;
|
|
1944
|
+
ServiceProfileId?: string | undefined;
|
|
1912
1945
|
/**
|
|
1913
1946
|
* <p>OTAA device object for v1.1 for create APIs</p>
|
|
1914
1947
|
* @public
|
|
1915
1948
|
*/
|
|
1916
|
-
OtaaV1_1?: OtaaV1_1;
|
|
1949
|
+
OtaaV1_1?: OtaaV1_1 | undefined;
|
|
1917
1950
|
/**
|
|
1918
1951
|
* <p>OTAA device object for create APIs for v1.0.x</p>
|
|
1919
1952
|
* @public
|
|
1920
1953
|
*/
|
|
1921
|
-
OtaaV1_0_x?: OtaaV1_0_x;
|
|
1954
|
+
OtaaV1_0_x?: OtaaV1_0_x | undefined;
|
|
1922
1955
|
/**
|
|
1923
1956
|
* <p>ABP device object for create APIs for v1.1</p>
|
|
1924
1957
|
* @public
|
|
1925
1958
|
*/
|
|
1926
|
-
AbpV1_1?: AbpV1_1;
|
|
1959
|
+
AbpV1_1?: AbpV1_1 | undefined;
|
|
1927
1960
|
/**
|
|
1928
1961
|
* <p>LoRaWAN object for create APIs</p>
|
|
1929
1962
|
* @public
|
|
1930
1963
|
*/
|
|
1931
|
-
AbpV1_0_x?: AbpV1_0_x;
|
|
1964
|
+
AbpV1_0_x?: AbpV1_0_x | undefined;
|
|
1932
1965
|
/**
|
|
1933
1966
|
* <p>List of FPort assigned for different LoRaWAN application packages to use</p>
|
|
1934
1967
|
* @public
|
|
1935
1968
|
*/
|
|
1936
|
-
FPorts?: FPorts;
|
|
1969
|
+
FPorts?: FPorts | undefined;
|
|
1937
1970
|
}
|
|
1938
1971
|
/**
|
|
1939
1972
|
* @public
|
|
@@ -1956,7 +1989,7 @@ export interface SidewalkCreateWirelessDevice {
|
|
|
1956
1989
|
* <p>The ID of the Sidewalk device profile.</p>
|
|
1957
1990
|
* @public
|
|
1958
1991
|
*/
|
|
1959
|
-
DeviceProfileId?: string;
|
|
1992
|
+
DeviceProfileId?: string | undefined;
|
|
1960
1993
|
}
|
|
1961
1994
|
/**
|
|
1962
1995
|
* @public
|
|
@@ -1983,12 +2016,12 @@ export interface CreateWirelessDeviceRequest {
|
|
|
1983
2016
|
* <p>The name of the new resource.</p>
|
|
1984
2017
|
* @public
|
|
1985
2018
|
*/
|
|
1986
|
-
Name?: string;
|
|
2019
|
+
Name?: string | undefined;
|
|
1987
2020
|
/**
|
|
1988
2021
|
* <p>The description of the new resource.</p>
|
|
1989
2022
|
* @public
|
|
1990
2023
|
*/
|
|
1991
|
-
Description?: string;
|
|
2024
|
+
Description?: string | undefined;
|
|
1992
2025
|
/**
|
|
1993
2026
|
* <p>The name of the destination to assign to the new wireless device.</p>
|
|
1994
2027
|
* @public
|
|
@@ -2003,29 +2036,29 @@ export interface CreateWirelessDeviceRequest {
|
|
|
2003
2036
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
2004
2037
|
* @public
|
|
2005
2038
|
*/
|
|
2006
|
-
ClientRequestToken?: string;
|
|
2039
|
+
ClientRequestToken?: string | undefined;
|
|
2007
2040
|
/**
|
|
2008
2041
|
* <p>The device configuration information to use to create the wireless device.</p>
|
|
2009
2042
|
* @public
|
|
2010
2043
|
*/
|
|
2011
|
-
LoRaWAN?: LoRaWANDevice;
|
|
2044
|
+
LoRaWAN?: LoRaWANDevice | undefined;
|
|
2012
2045
|
/**
|
|
2013
2046
|
* <p>The tags to attach to the new wireless device. Tags are metadata that you can use to
|
|
2014
2047
|
* manage a resource.</p>
|
|
2015
2048
|
* @public
|
|
2016
2049
|
*/
|
|
2017
|
-
Tags?: Tag[];
|
|
2050
|
+
Tags?: Tag[] | undefined;
|
|
2018
2051
|
/**
|
|
2019
2052
|
* <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning
|
|
2020
2053
|
* information.</p>
|
|
2021
2054
|
* @public
|
|
2022
2055
|
*/
|
|
2023
|
-
Positioning?: PositioningConfigStatus;
|
|
2056
|
+
Positioning?: PositioningConfigStatus | undefined;
|
|
2024
2057
|
/**
|
|
2025
2058
|
* <p>The device configuration information to use to create the Sidewalk device.</p>
|
|
2026
2059
|
* @public
|
|
2027
2060
|
*/
|
|
2028
|
-
Sidewalk?: SidewalkCreateWirelessDevice;
|
|
2061
|
+
Sidewalk?: SidewalkCreateWirelessDevice | undefined;
|
|
2029
2062
|
}
|
|
2030
2063
|
/**
|
|
2031
2064
|
* @public
|
|
@@ -2035,12 +2068,12 @@ export interface CreateWirelessDeviceResponse {
|
|
|
2035
2068
|
* <p>The Amazon Resource Name of the new resource.</p>
|
|
2036
2069
|
* @public
|
|
2037
2070
|
*/
|
|
2038
|
-
Arn?: string;
|
|
2071
|
+
Arn?: string | undefined;
|
|
2039
2072
|
/**
|
|
2040
2073
|
* <p>The ID of the new wireless device.</p>
|
|
2041
2074
|
* @public
|
|
2042
2075
|
*/
|
|
2043
|
-
Id?: string;
|
|
2076
|
+
Id?: string | undefined;
|
|
2044
2077
|
}
|
|
2045
2078
|
/**
|
|
2046
2079
|
* <p>LoRaWANGateway object.</p>
|
|
@@ -2051,39 +2084,39 @@ export interface LoRaWANGateway {
|
|
|
2051
2084
|
* <p>The gateway's EUI value.</p>
|
|
2052
2085
|
* @public
|
|
2053
2086
|
*/
|
|
2054
|
-
GatewayEui?: string;
|
|
2087
|
+
GatewayEui?: string | undefined;
|
|
2055
2088
|
/**
|
|
2056
2089
|
* <p>The frequency band (RFRegion) value.</p>
|
|
2057
2090
|
* @public
|
|
2058
2091
|
*/
|
|
2059
|
-
RfRegion?: string;
|
|
2092
|
+
RfRegion?: string | undefined;
|
|
2060
2093
|
/**
|
|
2061
2094
|
* <p>A list of JoinEuiRange used by LoRa gateways to filter LoRa frames.</p>
|
|
2062
2095
|
* @public
|
|
2063
2096
|
*/
|
|
2064
|
-
JoinEuiFilters?: string[][];
|
|
2097
|
+
JoinEuiFilters?: string[][] | undefined;
|
|
2065
2098
|
/**
|
|
2066
2099
|
* <p>A list of NetId values that are used by LoRa gateways to filter the uplink
|
|
2067
2100
|
* frames.</p>
|
|
2068
2101
|
* @public
|
|
2069
2102
|
*/
|
|
2070
|
-
NetIdFilters?: string[];
|
|
2103
|
+
NetIdFilters?: string[] | undefined;
|
|
2071
2104
|
/**
|
|
2072
2105
|
* <p>A list of integer indicating which sub bands are supported by LoRa gateway.</p>
|
|
2073
2106
|
* @public
|
|
2074
2107
|
*/
|
|
2075
|
-
SubBands?: number[];
|
|
2108
|
+
SubBands?: number[] | undefined;
|
|
2076
2109
|
/**
|
|
2077
2110
|
* <p>Beaconing object information, which consists of the data rate and frequency
|
|
2078
2111
|
* parameters.</p>
|
|
2079
2112
|
* @public
|
|
2080
2113
|
*/
|
|
2081
|
-
Beaconing?: Beaconing;
|
|
2114
|
+
Beaconing?: Beaconing | undefined;
|
|
2082
2115
|
/**
|
|
2083
2116
|
* <p>The MaxEIRP value.</p>
|
|
2084
2117
|
* @public
|
|
2085
2118
|
*/
|
|
2086
|
-
MaxEirp?: number;
|
|
2119
|
+
MaxEirp?: number | undefined;
|
|
2087
2120
|
}
|
|
2088
2121
|
/**
|
|
2089
2122
|
* @public
|
|
@@ -2093,12 +2126,12 @@ export interface CreateWirelessGatewayRequest {
|
|
|
2093
2126
|
* <p>The name of the new resource.</p>
|
|
2094
2127
|
* @public
|
|
2095
2128
|
*/
|
|
2096
|
-
Name?: string;
|
|
2129
|
+
Name?: string | undefined;
|
|
2097
2130
|
/**
|
|
2098
2131
|
* <p>The description of the new resource.</p>
|
|
2099
2132
|
* @public
|
|
2100
2133
|
*/
|
|
2101
|
-
Description?: string;
|
|
2134
|
+
Description?: string | undefined;
|
|
2102
2135
|
/**
|
|
2103
2136
|
* <p>The gateway configuration information to use to create the wireless gateway.</p>
|
|
2104
2137
|
* @public
|
|
@@ -2109,7 +2142,7 @@ export interface CreateWirelessGatewayRequest {
|
|
|
2109
2142
|
* manage a resource.</p>
|
|
2110
2143
|
* @public
|
|
2111
2144
|
*/
|
|
2112
|
-
Tags?: Tag[];
|
|
2145
|
+
Tags?: Tag[] | undefined;
|
|
2113
2146
|
/**
|
|
2114
2147
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
2115
2148
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -2119,7 +2152,7 @@ export interface CreateWirelessGatewayRequest {
|
|
|
2119
2152
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
2120
2153
|
* @public
|
|
2121
2154
|
*/
|
|
2122
|
-
ClientRequestToken?: string;
|
|
2155
|
+
ClientRequestToken?: string | undefined;
|
|
2123
2156
|
}
|
|
2124
2157
|
/**
|
|
2125
2158
|
* @public
|
|
@@ -2129,12 +2162,12 @@ export interface CreateWirelessGatewayResponse {
|
|
|
2129
2162
|
* <p>The Amazon Resource Name of the new resource.</p>
|
|
2130
2163
|
* @public
|
|
2131
2164
|
*/
|
|
2132
|
-
Arn?: string;
|
|
2165
|
+
Arn?: string | undefined;
|
|
2133
2166
|
/**
|
|
2134
2167
|
* <p>The ID of the new wireless gateway.</p>
|
|
2135
2168
|
* @public
|
|
2136
2169
|
*/
|
|
2137
|
-
Id?: string;
|
|
2170
|
+
Id?: string | undefined;
|
|
2138
2171
|
}
|
|
2139
2172
|
/**
|
|
2140
2173
|
* @public
|
|
@@ -2175,12 +2208,12 @@ export interface CreateWirelessGatewayTaskResponse {
|
|
|
2175
2208
|
* <p>The ID of the WirelessGatewayTaskDefinition.</p>
|
|
2176
2209
|
* @public
|
|
2177
2210
|
*/
|
|
2178
|
-
WirelessGatewayTaskDefinitionId?: string;
|
|
2211
|
+
WirelessGatewayTaskDefinitionId?: string | undefined;
|
|
2179
2212
|
/**
|
|
2180
2213
|
* <p>The status of the request.</p>
|
|
2181
2214
|
* @public
|
|
2182
2215
|
*/
|
|
2183
|
-
Status?: WirelessGatewayTaskStatus;
|
|
2216
|
+
Status?: WirelessGatewayTaskStatus | undefined;
|
|
2184
2217
|
}
|
|
2185
2218
|
/**
|
|
2186
2219
|
* <p>LoRaWANGatewayVersion object.</p>
|
|
@@ -2191,17 +2224,17 @@ export interface LoRaWANGatewayVersion {
|
|
|
2191
2224
|
* <p>The version of the wireless gateway firmware.</p>
|
|
2192
2225
|
* @public
|
|
2193
2226
|
*/
|
|
2194
|
-
PackageVersion?: string;
|
|
2227
|
+
PackageVersion?: string | undefined;
|
|
2195
2228
|
/**
|
|
2196
2229
|
* <p>The model number of the wireless gateway.</p>
|
|
2197
2230
|
* @public
|
|
2198
2231
|
*/
|
|
2199
|
-
Model?: string;
|
|
2232
|
+
Model?: string | undefined;
|
|
2200
2233
|
/**
|
|
2201
2234
|
* <p>The basic station version of the wireless gateway.</p>
|
|
2202
2235
|
* @public
|
|
2203
2236
|
*/
|
|
2204
|
-
Station?: string;
|
|
2237
|
+
Station?: string | undefined;
|
|
2205
2238
|
}
|
|
2206
2239
|
/**
|
|
2207
2240
|
* <p>LoRaWANUpdateGatewayTaskCreate object.</p>
|
|
@@ -2212,22 +2245,22 @@ export interface LoRaWANUpdateGatewayTaskCreate {
|
|
|
2212
2245
|
* <p>The signature used to verify the update firmware.</p>
|
|
2213
2246
|
* @public
|
|
2214
2247
|
*/
|
|
2215
|
-
UpdateSignature?: string;
|
|
2248
|
+
UpdateSignature?: string | undefined;
|
|
2216
2249
|
/**
|
|
2217
2250
|
* <p>The CRC of the signature private key to check.</p>
|
|
2218
2251
|
* @public
|
|
2219
2252
|
*/
|
|
2220
|
-
SigKeyCrc?: number;
|
|
2253
|
+
SigKeyCrc?: number | undefined;
|
|
2221
2254
|
/**
|
|
2222
2255
|
* <p>The version of the gateways that should receive the update.</p>
|
|
2223
2256
|
* @public
|
|
2224
2257
|
*/
|
|
2225
|
-
CurrentVersion?: LoRaWANGatewayVersion;
|
|
2258
|
+
CurrentVersion?: LoRaWANGatewayVersion | undefined;
|
|
2226
2259
|
/**
|
|
2227
2260
|
* <p>The firmware version to update the gateway to.</p>
|
|
2228
2261
|
* @public
|
|
2229
2262
|
*/
|
|
2230
|
-
UpdateVersion?: LoRaWANGatewayVersion;
|
|
2263
|
+
UpdateVersion?: LoRaWANGatewayVersion | undefined;
|
|
2231
2264
|
}
|
|
2232
2265
|
/**
|
|
2233
2266
|
* <p>UpdateWirelessGatewayTaskCreate object.</p>
|
|
@@ -2238,17 +2271,17 @@ export interface UpdateWirelessGatewayTaskCreate {
|
|
|
2238
2271
|
* <p>The link to the S3 bucket.</p>
|
|
2239
2272
|
* @public
|
|
2240
2273
|
*/
|
|
2241
|
-
UpdateDataSource?: string;
|
|
2274
|
+
UpdateDataSource?: string | undefined;
|
|
2242
2275
|
/**
|
|
2243
2276
|
* <p>The IAM role used to read data from the S3 bucket.</p>
|
|
2244
2277
|
* @public
|
|
2245
2278
|
*/
|
|
2246
|
-
UpdateDataRole?: string;
|
|
2279
|
+
UpdateDataRole?: string | undefined;
|
|
2247
2280
|
/**
|
|
2248
2281
|
* <p>The properties that relate to the LoRaWAN wireless gateway.</p>
|
|
2249
2282
|
* @public
|
|
2250
2283
|
*/
|
|
2251
|
-
LoRaWAN?: LoRaWANUpdateGatewayTaskCreate;
|
|
2284
|
+
LoRaWAN?: LoRaWANUpdateGatewayTaskCreate | undefined;
|
|
2252
2285
|
}
|
|
2253
2286
|
/**
|
|
2254
2287
|
* @public
|
|
@@ -2265,12 +2298,12 @@ export interface CreateWirelessGatewayTaskDefinitionRequest {
|
|
|
2265
2298
|
* <p>The name of the new resource.</p>
|
|
2266
2299
|
* @public
|
|
2267
2300
|
*/
|
|
2268
|
-
Name?: string;
|
|
2301
|
+
Name?: string | undefined;
|
|
2269
2302
|
/**
|
|
2270
2303
|
* <p>Information about the gateways to update.</p>
|
|
2271
2304
|
* @public
|
|
2272
2305
|
*/
|
|
2273
|
-
Update?: UpdateWirelessGatewayTaskCreate;
|
|
2306
|
+
Update?: UpdateWirelessGatewayTaskCreate | undefined;
|
|
2274
2307
|
/**
|
|
2275
2308
|
* <p>Each resource must have a unique client request token. The client token is used to implement
|
|
2276
2309
|
* idempotency. It ensures that the request completes no more than one time. If you retry a request
|
|
@@ -2280,13 +2313,13 @@ export interface CreateWirelessGatewayTaskDefinitionRequest {
|
|
|
2280
2313
|
* For more information about idempotency, see <a href="https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html">Ensuring idempotency in Amazon EC2 API requests</a>.</p>
|
|
2281
2314
|
* @public
|
|
2282
2315
|
*/
|
|
2283
|
-
ClientRequestToken?: string;
|
|
2316
|
+
ClientRequestToken?: string | undefined;
|
|
2284
2317
|
/**
|
|
2285
2318
|
* <p>The tags to attach to the specified resource. Tags are metadata that you can use to
|
|
2286
2319
|
* manage a resource.</p>
|
|
2287
2320
|
* @public
|
|
2288
2321
|
*/
|
|
2289
|
-
Tags?: Tag[];
|
|
2322
|
+
Tags?: Tag[] | undefined;
|
|
2290
2323
|
}
|
|
2291
2324
|
/**
|
|
2292
2325
|
* @public
|
|
@@ -2296,12 +2329,12 @@ export interface CreateWirelessGatewayTaskDefinitionResponse {
|
|
|
2296
2329
|
* <p>The ID of the new wireless gateway task definition.</p>
|
|
2297
2330
|
* @public
|
|
2298
2331
|
*/
|
|
2299
|
-
Id?: string;
|
|
2332
|
+
Id?: string | undefined;
|
|
2300
2333
|
/**
|
|
2301
2334
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
2302
2335
|
* @public
|
|
2303
2336
|
*/
|
|
2304
|
-
Arn?: string;
|
|
2337
|
+
Arn?: string | undefined;
|
|
2305
2338
|
}
|
|
2306
2339
|
/**
|
|
2307
2340
|
* <p>The device attestation key (DAK) information.</p>
|
|
@@ -2318,23 +2351,23 @@ export interface DakCertificateMetadata {
|
|
|
2318
2351
|
* indicates that there's no device limit.</p>
|
|
2319
2352
|
* @public
|
|
2320
2353
|
*/
|
|
2321
|
-
MaxAllowedSignature?: number;
|
|
2354
|
+
MaxAllowedSignature?: number | undefined;
|
|
2322
2355
|
/**
|
|
2323
2356
|
* <p>Whether factory support has been enabled.</p>
|
|
2324
2357
|
* @public
|
|
2325
2358
|
*/
|
|
2326
|
-
FactorySupport?: boolean;
|
|
2359
|
+
FactorySupport?: boolean | undefined;
|
|
2327
2360
|
/**
|
|
2328
2361
|
* <p>The advertised product ID (APID) that's used for pre-production and production
|
|
2329
2362
|
* applications.</p>
|
|
2330
2363
|
* @public
|
|
2331
2364
|
*/
|
|
2332
|
-
ApId?: string;
|
|
2365
|
+
ApId?: string | undefined;
|
|
2333
2366
|
/**
|
|
2334
2367
|
* <p>The device type ID that's used for prototyping applications.</p>
|
|
2335
2368
|
* @public
|
|
2336
2369
|
*/
|
|
2337
|
-
DeviceTypeId?: string;
|
|
2370
|
+
DeviceTypeId?: string | undefined;
|
|
2338
2371
|
}
|
|
2339
2372
|
/**
|
|
2340
2373
|
* @public
|
|
@@ -2431,7 +2464,7 @@ export interface DeleteQueuedMessagesRequest {
|
|
|
2431
2464
|
* <p>The wireless device type, which can be either Sidewalk or LoRaWAN.</p>
|
|
2432
2465
|
* @public
|
|
2433
2466
|
*/
|
|
2434
|
-
WirelessDeviceType?: WirelessDeviceType;
|
|
2467
|
+
WirelessDeviceType?: WirelessDeviceType | undefined;
|
|
2435
2468
|
}
|
|
2436
2469
|
/**
|
|
2437
2470
|
* @public
|
|
@@ -2542,7 +2575,7 @@ export interface DeregisterWirelessDeviceRequest {
|
|
|
2542
2575
|
* <code>LoRaWAN</code> or <code>Sidewalk</code>.</p>
|
|
2543
2576
|
* @public
|
|
2544
2577
|
*/
|
|
2545
|
-
WirelessDeviceType?: WirelessDeviceType;
|
|
2578
|
+
WirelessDeviceType?: WirelessDeviceType | undefined;
|
|
2546
2579
|
}
|
|
2547
2580
|
/**
|
|
2548
2581
|
* @public
|
|
@@ -2558,32 +2591,32 @@ export interface Destinations {
|
|
|
2558
2591
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
2559
2592
|
* @public
|
|
2560
2593
|
*/
|
|
2561
|
-
Arn?: string;
|
|
2594
|
+
Arn?: string | undefined;
|
|
2562
2595
|
/**
|
|
2563
2596
|
* <p>The name of the resource.</p>
|
|
2564
2597
|
* @public
|
|
2565
2598
|
*/
|
|
2566
|
-
Name?: string;
|
|
2599
|
+
Name?: string | undefined;
|
|
2567
2600
|
/**
|
|
2568
2601
|
* <p>The type of value in <code>Expression</code>.</p>
|
|
2569
2602
|
* @public
|
|
2570
2603
|
*/
|
|
2571
|
-
ExpressionType?: ExpressionType;
|
|
2604
|
+
ExpressionType?: ExpressionType | undefined;
|
|
2572
2605
|
/**
|
|
2573
2606
|
* <p>The rule name or topic rule to send messages to.</p>
|
|
2574
2607
|
* @public
|
|
2575
2608
|
*/
|
|
2576
|
-
Expression?: string;
|
|
2609
|
+
Expression?: string | undefined;
|
|
2577
2610
|
/**
|
|
2578
2611
|
* <p>The description of the resource.</p>
|
|
2579
2612
|
* @public
|
|
2580
2613
|
*/
|
|
2581
|
-
Description?: string;
|
|
2614
|
+
Description?: string | undefined;
|
|
2582
2615
|
/**
|
|
2583
2616
|
* <p>The ARN of the IAM Role that authorizes the destination.</p>
|
|
2584
2617
|
* @public
|
|
2585
2618
|
*/
|
|
2586
|
-
RoleArn?: string;
|
|
2619
|
+
RoleArn?: string | undefined;
|
|
2587
2620
|
}
|
|
2588
2621
|
/**
|
|
2589
2622
|
* <p>Describes a device profile.</p>
|
|
@@ -2594,17 +2627,17 @@ export interface DeviceProfile {
|
|
|
2594
2627
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
2595
2628
|
* @public
|
|
2596
2629
|
*/
|
|
2597
|
-
Arn?: string;
|
|
2630
|
+
Arn?: string | undefined;
|
|
2598
2631
|
/**
|
|
2599
2632
|
* <p>The name of the resource.</p>
|
|
2600
2633
|
* @public
|
|
2601
2634
|
*/
|
|
2602
|
-
Name?: string;
|
|
2635
|
+
Name?: string | undefined;
|
|
2603
2636
|
/**
|
|
2604
2637
|
* <p>The ID of the device profile.</p>
|
|
2605
2638
|
* @public
|
|
2606
2639
|
*/
|
|
2607
|
-
Id?: string;
|
|
2640
|
+
Id?: string | undefined;
|
|
2608
2641
|
}
|
|
2609
2642
|
/**
|
|
2610
2643
|
* @public
|
|
@@ -2629,7 +2662,7 @@ export interface SidewalkEventNotificationConfigurations {
|
|
|
2629
2662
|
* <p>Denotes whether the Amazon ID event topic is enabled or disabled.</p>
|
|
2630
2663
|
* @public
|
|
2631
2664
|
*/
|
|
2632
|
-
AmazonIdEventTopic?: EventNotificationTopicStatus;
|
|
2665
|
+
AmazonIdEventTopic?: EventNotificationTopicStatus | undefined;
|
|
2633
2666
|
}
|
|
2634
2667
|
/**
|
|
2635
2668
|
* <p>Device registration state event configuration object for enabling and disabling
|
|
@@ -2642,13 +2675,13 @@ export interface DeviceRegistrationStateEventConfiguration {
|
|
|
2642
2675
|
* Sidewalk related event topics.</p>
|
|
2643
2676
|
* @public
|
|
2644
2677
|
*/
|
|
2645
|
-
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
2678
|
+
Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
|
|
2646
2679
|
/**
|
|
2647
2680
|
* <p>Denotes whether the wireless device ID device registration state event topic is
|
|
2648
2681
|
* enabled or disabled.</p>
|
|
2649
2682
|
* @public
|
|
2650
2683
|
*/
|
|
2651
|
-
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
|
2684
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
|
|
2652
2685
|
}
|
|
2653
2686
|
/**
|
|
2654
2687
|
* <p>Sidewalk resource type event configuration object for enabling or disabling
|
|
@@ -2660,7 +2693,7 @@ export interface SidewalkResourceTypeEventConfiguration {
|
|
|
2660
2693
|
* <p>Denotes whether the wireless device join event topic is enabled or disabled.</p>
|
|
2661
2694
|
* @public
|
|
2662
2695
|
*/
|
|
2663
|
-
WirelessDeviceEventTopic?: EventNotificationTopicStatus;
|
|
2696
|
+
WirelessDeviceEventTopic?: EventNotificationTopicStatus | undefined;
|
|
2664
2697
|
}
|
|
2665
2698
|
/**
|
|
2666
2699
|
* <p>Device registration state resource type event configuration object for enabling or
|
|
@@ -2673,7 +2706,7 @@ export interface DeviceRegistrationStateResourceTypeEventConfiguration {
|
|
|
2673
2706
|
* disabling Sidewalk related event topics.</p>
|
|
2674
2707
|
* @public
|
|
2675
2708
|
*/
|
|
2676
|
-
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
2709
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
|
|
2677
2710
|
}
|
|
2678
2711
|
/**
|
|
2679
2712
|
* @public
|
|
@@ -2710,12 +2743,12 @@ export interface Dimension {
|
|
|
2710
2743
|
* <p>The name of the dimension.</p>
|
|
2711
2744
|
* @public
|
|
2712
2745
|
*/
|
|
2713
|
-
name?: DimensionName;
|
|
2746
|
+
name?: DimensionName | undefined;
|
|
2714
2747
|
/**
|
|
2715
2748
|
* <p>The dimension's value.</p>
|
|
2716
2749
|
* @public
|
|
2717
2750
|
*/
|
|
2718
|
-
value?: string;
|
|
2751
|
+
value?: string | undefined;
|
|
2719
2752
|
}
|
|
2720
2753
|
/**
|
|
2721
2754
|
* @public
|
|
@@ -2919,13 +2952,13 @@ export interface LoRaWANSendDataToDevice {
|
|
|
2919
2952
|
* <p>The Fport value.</p>
|
|
2920
2953
|
* @public
|
|
2921
2954
|
*/
|
|
2922
|
-
FPort?: number;
|
|
2955
|
+
FPort?: number | undefined;
|
|
2923
2956
|
/**
|
|
2924
2957
|
* <p>Choose the gateways that you want to use for the downlink data traffic when the
|
|
2925
2958
|
* wireless device is running in class B or class C mode.</p>
|
|
2926
2959
|
* @public
|
|
2927
2960
|
*/
|
|
2928
|
-
ParticipatingGateways?: ParticipatingGateways;
|
|
2961
|
+
ParticipatingGateways?: ParticipatingGateways | undefined;
|
|
2929
2962
|
}
|
|
2930
2963
|
/**
|
|
2931
2964
|
* <p>The message in the downlink queue.</p>
|
|
@@ -2937,24 +2970,24 @@ export interface DownlinkQueueMessage {
|
|
|
2937
2970
|
* identify the message.</p>
|
|
2938
2971
|
* @public
|
|
2939
2972
|
*/
|
|
2940
|
-
MessageId?: string;
|
|
2973
|
+
MessageId?: string | undefined;
|
|
2941
2974
|
/**
|
|
2942
2975
|
* <p>The transmit mode to use for sending data to the wireless device. This can be
|
|
2943
2976
|
* <code>0</code> for UM (unacknowledge mode) or <code>1</code> for AM (acknowledge
|
|
2944
2977
|
* mode).</p>
|
|
2945
2978
|
* @public
|
|
2946
2979
|
*/
|
|
2947
|
-
TransmitMode?: number;
|
|
2980
|
+
TransmitMode?: number | undefined;
|
|
2948
2981
|
/**
|
|
2949
2982
|
* <p>The time at which Iot Wireless received the downlink message.</p>
|
|
2950
2983
|
* @public
|
|
2951
2984
|
*/
|
|
2952
|
-
ReceivedAt?: string;
|
|
2985
|
+
ReceivedAt?: string | undefined;
|
|
2953
2986
|
/**
|
|
2954
2987
|
* <p>LoRaWAN router info.</p>
|
|
2955
2988
|
* @public
|
|
2956
2989
|
*/
|
|
2957
|
-
LoRaWAN?: LoRaWANSendDataToDevice;
|
|
2990
|
+
LoRaWAN?: LoRaWANSendDataToDevice | undefined;
|
|
2958
2991
|
}
|
|
2959
2992
|
/**
|
|
2960
2993
|
* @public
|
|
@@ -2980,7 +3013,7 @@ export interface LoRaWANJoinEventNotificationConfigurations {
|
|
|
2980
3013
|
* <p>Denotes whether the Dev EUI join event topic is enabled or disabled.</p>
|
|
2981
3014
|
* @public
|
|
2982
3015
|
*/
|
|
2983
|
-
DevEuiEventTopic?: EventNotificationTopicStatus;
|
|
3016
|
+
DevEuiEventTopic?: EventNotificationTopicStatus | undefined;
|
|
2984
3017
|
}
|
|
2985
3018
|
/**
|
|
2986
3019
|
* <p>Join event configuration object for enabling or disabling topic.</p>
|
|
@@ -2992,12 +3025,12 @@ export interface JoinEventConfiguration {
|
|
|
2992
3025
|
* topics.</p>
|
|
2993
3026
|
* @public
|
|
2994
3027
|
*/
|
|
2995
|
-
LoRaWAN?: LoRaWANJoinEventNotificationConfigurations;
|
|
3028
|
+
LoRaWAN?: LoRaWANJoinEventNotificationConfigurations | undefined;
|
|
2996
3029
|
/**
|
|
2997
3030
|
* <p>Denotes whether the wireless device ID join event topic is enabled or disabled.</p>
|
|
2998
3031
|
* @public
|
|
2999
3032
|
*/
|
|
3000
|
-
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
|
3033
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
|
|
3001
3034
|
}
|
|
3002
3035
|
/**
|
|
3003
3036
|
* <p>Message delivery status event configuration object for enabling and disabling relevant
|
|
@@ -3011,13 +3044,13 @@ export interface MessageDeliveryStatusEventConfiguration {
|
|
|
3011
3044
|
* configuration object for Sidewalk-related event topics.</p>
|
|
3012
3045
|
* @public
|
|
3013
3046
|
*/
|
|
3014
|
-
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
3047
|
+
Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
|
|
3015
3048
|
/**
|
|
3016
3049
|
* <p>Denotes whether the wireless device ID message delivery status event topic is enabled
|
|
3017
3050
|
* or disabled.</p>
|
|
3018
3051
|
* @public
|
|
3019
3052
|
*/
|
|
3020
|
-
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
|
3053
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
|
|
3021
3054
|
}
|
|
3022
3055
|
/**
|
|
3023
3056
|
* <p>Proximity event configuration object for enabling and disabling relevant
|
|
@@ -3030,13 +3063,13 @@ export interface ProximityEventConfiguration {
|
|
|
3030
3063
|
* topics.</p>
|
|
3031
3064
|
* @public
|
|
3032
3065
|
*/
|
|
3033
|
-
Sidewalk?: SidewalkEventNotificationConfigurations;
|
|
3066
|
+
Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
|
|
3034
3067
|
/**
|
|
3035
3068
|
* <p>Denotes whether the wireless device ID proximity event topic is enabled or
|
|
3036
3069
|
* disabled.</p>
|
|
3037
3070
|
* @public
|
|
3038
3071
|
*/
|
|
3039
|
-
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
|
|
3072
|
+
WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
|
|
3040
3073
|
}
|
|
3041
3074
|
/**
|
|
3042
3075
|
* <p>Object of all event configurations and the status of the event topics.</p>
|
|
@@ -3047,27 +3080,27 @@ export interface EventNotificationItemConfigurations {
|
|
|
3047
3080
|
* <p>Device registration state event configuration for an event configuration item.</p>
|
|
3048
3081
|
* @public
|
|
3049
3082
|
*/
|
|
3050
|
-
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
|
|
3083
|
+
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration | undefined;
|
|
3051
3084
|
/**
|
|
3052
3085
|
* <p>Proximity event configuration for an event configuration item.</p>
|
|
3053
3086
|
* @public
|
|
3054
3087
|
*/
|
|
3055
|
-
Proximity?: ProximityEventConfiguration;
|
|
3088
|
+
Proximity?: ProximityEventConfiguration | undefined;
|
|
3056
3089
|
/**
|
|
3057
3090
|
* <p>Join event configuration for an event configuration item.</p>
|
|
3058
3091
|
* @public
|
|
3059
3092
|
*/
|
|
3060
|
-
Join?: JoinEventConfiguration;
|
|
3093
|
+
Join?: JoinEventConfiguration | undefined;
|
|
3061
3094
|
/**
|
|
3062
3095
|
* <p>Connection status event configuration for an event configuration item.</p>
|
|
3063
3096
|
* @public
|
|
3064
3097
|
*/
|
|
3065
|
-
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
3098
|
+
ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
|
|
3066
3099
|
/**
|
|
3067
3100
|
* <p>Message delivery status event configuration for an event configuration item.</p>
|
|
3068
3101
|
* @public
|
|
3069
3102
|
*/
|
|
3070
|
-
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
3103
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
|
|
3071
3104
|
}
|
|
3072
3105
|
/**
|
|
3073
3106
|
* @public
|
|
@@ -3075,6 +3108,7 @@ export interface EventNotificationItemConfigurations {
|
|
|
3075
3108
|
*/
|
|
3076
3109
|
export declare const IdentifierType: {
|
|
3077
3110
|
readonly DevEui: "DevEui";
|
|
3111
|
+
readonly FuotaTaskId: "FuotaTaskId";
|
|
3078
3112
|
readonly GatewayEui: "GatewayEui";
|
|
3079
3113
|
readonly PartnerAccountId: "PartnerAccountId";
|
|
3080
3114
|
readonly WirelessDeviceId: "WirelessDeviceId";
|
|
@@ -3104,28 +3138,29 @@ export interface EventConfigurationItem {
|
|
|
3104
3138
|
* <p>Resource identifier opted in for event messaging.</p>
|
|
3105
3139
|
* @public
|
|
3106
3140
|
*/
|
|
3107
|
-
Identifier?: string;
|
|
3141
|
+
Identifier?: string | undefined;
|
|
3108
3142
|
/**
|
|
3109
3143
|
* <p>Identifier type of the particular resource identifier for event configuration.</p>
|
|
3110
3144
|
* @public
|
|
3111
3145
|
*/
|
|
3112
|
-
IdentifierType?: IdentifierType;
|
|
3146
|
+
IdentifierType?: IdentifierType | undefined;
|
|
3113
3147
|
/**
|
|
3114
3148
|
* <p>Partner type of the resource if the identifier type is PartnerAccountId.</p>
|
|
3115
3149
|
* @public
|
|
3116
3150
|
*/
|
|
3117
|
-
PartnerType?: EventNotificationPartnerType;
|
|
3151
|
+
PartnerType?: EventNotificationPartnerType | undefined;
|
|
3118
3152
|
/**
|
|
3119
3153
|
* <p>Object of all event configurations and the status of the event topics.</p>
|
|
3120
3154
|
* @public
|
|
3121
3155
|
*/
|
|
3122
|
-
Events?: EventNotificationItemConfigurations;
|
|
3156
|
+
Events?: EventNotificationItemConfigurations | undefined;
|
|
3123
3157
|
}
|
|
3124
3158
|
/**
|
|
3125
3159
|
* @public
|
|
3126
3160
|
* @enum
|
|
3127
3161
|
*/
|
|
3128
3162
|
export declare const EventNotificationResourceType: {
|
|
3163
|
+
readonly FuotaTask: "FuotaTask";
|
|
3129
3164
|
readonly SidewalkAccount: "SidewalkAccount";
|
|
3130
3165
|
readonly WirelessDevice: "WirelessDevice";
|
|
3131
3166
|
readonly WirelessGateway: "WirelessGateway";
|
|
@@ -3165,17 +3200,83 @@ export interface FuotaTask {
|
|
|
3165
3200
|
* <p>The ID of a FUOTA task.</p>
|
|
3166
3201
|
* @public
|
|
3167
3202
|
*/
|
|
3168
|
-
Id?: string;
|
|
3203
|
+
Id?: string | undefined;
|
|
3169
3204
|
/**
|
|
3170
3205
|
* <p>The arn of a FUOTA task.</p>
|
|
3171
3206
|
* @public
|
|
3172
3207
|
*/
|
|
3173
|
-
Arn?: string;
|
|
3208
|
+
Arn?: string | undefined;
|
|
3174
3209
|
/**
|
|
3175
3210
|
* <p>The name of a FUOTA task.</p>
|
|
3176
3211
|
* @public
|
|
3177
3212
|
*/
|
|
3178
|
-
Name?: string;
|
|
3213
|
+
Name?: string | undefined;
|
|
3214
|
+
}
|
|
3215
|
+
/**
|
|
3216
|
+
* @public
|
|
3217
|
+
* @enum
|
|
3218
|
+
*/
|
|
3219
|
+
export declare const FuotaTaskEvent: {
|
|
3220
|
+
readonly Fuota: "Fuota";
|
|
3221
|
+
};
|
|
3222
|
+
/**
|
|
3223
|
+
* @public
|
|
3224
|
+
*/
|
|
3225
|
+
export type FuotaTaskEvent = (typeof FuotaTaskEvent)[keyof typeof FuotaTaskEvent];
|
|
3226
|
+
/**
|
|
3227
|
+
* <p>The log options for a FUOTA task event and can be used to set log levels for a
|
|
3228
|
+
* specific fuota task event.</p>
|
|
3229
|
+
* <p>For a LoRaWAN FuotaTask type, possible event for a log message is <code>Fuota</code>.</p>
|
|
3230
|
+
* @public
|
|
3231
|
+
*/
|
|
3232
|
+
export interface FuotaTaskEventLogOption {
|
|
3233
|
+
/**
|
|
3234
|
+
* <p>The event for a log message, if the log message is tied to a fuota task.</p>
|
|
3235
|
+
* @public
|
|
3236
|
+
*/
|
|
3237
|
+
Event: FuotaTaskEvent | undefined;
|
|
3238
|
+
/**
|
|
3239
|
+
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
3240
|
+
* <code>ERROR</code> to display less verbose logs containing only error information,
|
|
3241
|
+
* or to <code>INFO</code> for more detailed logs.</p>
|
|
3242
|
+
* @public
|
|
3243
|
+
*/
|
|
3244
|
+
LogLevel: LogLevel | undefined;
|
|
3245
|
+
}
|
|
3246
|
+
/**
|
|
3247
|
+
* @public
|
|
3248
|
+
* @enum
|
|
3249
|
+
*/
|
|
3250
|
+
export declare const FuotaTaskType: {
|
|
3251
|
+
readonly LoRaWAN: "LoRaWAN";
|
|
3252
|
+
};
|
|
3253
|
+
/**
|
|
3254
|
+
* @public
|
|
3255
|
+
*/
|
|
3256
|
+
export type FuotaTaskType = (typeof FuotaTaskType)[keyof typeof FuotaTaskType];
|
|
3257
|
+
/**
|
|
3258
|
+
* <p>The log options for fuota tasks and can be used to set log levels for a specific
|
|
3259
|
+
* type of fuota task.</p>
|
|
3260
|
+
* @public
|
|
3261
|
+
*/
|
|
3262
|
+
export interface FuotaTaskLogOption {
|
|
3263
|
+
/**
|
|
3264
|
+
* <p>The fuota task type.</p>
|
|
3265
|
+
* @public
|
|
3266
|
+
*/
|
|
3267
|
+
Type: FuotaTaskType | undefined;
|
|
3268
|
+
/**
|
|
3269
|
+
* <p>The log level for a log message. The log levels can be disabled, or set to
|
|
3270
|
+
* <code>ERROR</code> to display less verbose logs containing only error information,
|
|
3271
|
+
* or to <code>INFO</code> for more detailed logs.</p>
|
|
3272
|
+
* @public
|
|
3273
|
+
*/
|
|
3274
|
+
LogLevel: LogLevel | undefined;
|
|
3275
|
+
/**
|
|
3276
|
+
* <p>The list of FUOTA task event log options.</p>
|
|
3277
|
+
* @public
|
|
3278
|
+
*/
|
|
3279
|
+
Events?: FuotaTaskEventLogOption[] | undefined;
|
|
3179
3280
|
}
|
|
3180
3281
|
/**
|
|
3181
3282
|
* @public
|
|
@@ -3210,32 +3311,32 @@ export interface GetDestinationResponse {
|
|
|
3210
3311
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
3211
3312
|
* @public
|
|
3212
3313
|
*/
|
|
3213
|
-
Arn?: string;
|
|
3314
|
+
Arn?: string | undefined;
|
|
3214
3315
|
/**
|
|
3215
3316
|
* <p>The name of the resource.</p>
|
|
3216
3317
|
* @public
|
|
3217
3318
|
*/
|
|
3218
|
-
Name?: string;
|
|
3319
|
+
Name?: string | undefined;
|
|
3219
3320
|
/**
|
|
3220
3321
|
* <p>The rule name or topic rule to send messages to.</p>
|
|
3221
3322
|
* @public
|
|
3222
3323
|
*/
|
|
3223
|
-
Expression?: string;
|
|
3324
|
+
Expression?: string | undefined;
|
|
3224
3325
|
/**
|
|
3225
3326
|
* <p>The type of value in <code>Expression</code>.</p>
|
|
3226
3327
|
* @public
|
|
3227
3328
|
*/
|
|
3228
|
-
ExpressionType?: ExpressionType;
|
|
3329
|
+
ExpressionType?: ExpressionType | undefined;
|
|
3229
3330
|
/**
|
|
3230
3331
|
* <p>The description of the resource.</p>
|
|
3231
3332
|
* @public
|
|
3232
3333
|
*/
|
|
3233
|
-
Description?: string;
|
|
3334
|
+
Description?: string | undefined;
|
|
3234
3335
|
/**
|
|
3235
3336
|
* <p>The ARN of the IAM Role that authorizes the destination.</p>
|
|
3236
3337
|
* @public
|
|
3237
3338
|
*/
|
|
3238
|
-
RoleArn?: string;
|
|
3339
|
+
RoleArn?: string | undefined;
|
|
3239
3340
|
}
|
|
3240
3341
|
/**
|
|
3241
3342
|
* @public
|
|
@@ -3256,17 +3357,17 @@ export interface SidewalkGetDeviceProfile {
|
|
|
3256
3357
|
* <p>The Sidewalk application server public key.</p>
|
|
3257
3358
|
* @public
|
|
3258
3359
|
*/
|
|
3259
|
-
ApplicationServerPublicKey?: string;
|
|
3360
|
+
ApplicationServerPublicKey?: string | undefined;
|
|
3260
3361
|
/**
|
|
3261
3362
|
* <p>Gets information about the certification status of a Sidewalk device profile.</p>
|
|
3262
3363
|
* @public
|
|
3263
3364
|
*/
|
|
3264
|
-
QualificationStatus?: boolean;
|
|
3365
|
+
QualificationStatus?: boolean | undefined;
|
|
3265
3366
|
/**
|
|
3266
3367
|
* <p>The DAK certificate information of the Sidewalk device profile.</p>
|
|
3267
3368
|
* @public
|
|
3268
3369
|
*/
|
|
3269
|
-
DakCertificateMetadata?: DakCertificateMetadata[];
|
|
3370
|
+
DakCertificateMetadata?: DakCertificateMetadata[] | undefined;
|
|
3270
3371
|
}
|
|
3271
3372
|
/**
|
|
3272
3373
|
* @public
|
|
@@ -3276,27 +3377,27 @@ export interface GetDeviceProfileResponse {
|
|
|
3276
3377
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
3277
3378
|
* @public
|
|
3278
3379
|
*/
|
|
3279
|
-
Arn?: string;
|
|
3380
|
+
Arn?: string | undefined;
|
|
3280
3381
|
/**
|
|
3281
3382
|
* <p>The name of the resource.</p>
|
|
3282
3383
|
* @public
|
|
3283
3384
|
*/
|
|
3284
|
-
Name?: string;
|
|
3385
|
+
Name?: string | undefined;
|
|
3285
3386
|
/**
|
|
3286
3387
|
* <p>The ID of the device profile.</p>
|
|
3287
3388
|
* @public
|
|
3288
3389
|
*/
|
|
3289
|
-
Id?: string;
|
|
3390
|
+
Id?: string | undefined;
|
|
3290
3391
|
/**
|
|
3291
3392
|
* <p>Information about the device profile.</p>
|
|
3292
3393
|
* @public
|
|
3293
3394
|
*/
|
|
3294
|
-
LoRaWAN?: LoRaWANDeviceProfile;
|
|
3395
|
+
LoRaWAN?: LoRaWANDeviceProfile | undefined;
|
|
3295
3396
|
/**
|
|
3296
3397
|
* <p>Information about the Sidewalk parameters in the device profile.</p>
|
|
3297
3398
|
* @public
|
|
3298
3399
|
*/
|
|
3299
|
-
Sidewalk?: SidewalkGetDeviceProfile;
|
|
3400
|
+
Sidewalk?: SidewalkGetDeviceProfile | undefined;
|
|
3300
3401
|
}
|
|
3301
3402
|
/**
|
|
3302
3403
|
* @public
|
|
@@ -3312,7 +3413,7 @@ export interface LoRaWANJoinResourceTypeEventConfiguration {
|
|
|
3312
3413
|
* <p>Denotes whether the wireless device join event topic is enabled or disabled.</p>
|
|
3313
3414
|
* @public
|
|
3314
3415
|
*/
|
|
3315
|
-
WirelessDeviceEventTopic?: EventNotificationTopicStatus;
|
|
3416
|
+
WirelessDeviceEventTopic?: EventNotificationTopicStatus | undefined;
|
|
3316
3417
|
}
|
|
3317
3418
|
/**
|
|
3318
3419
|
* <p>Join resource type event configuration object for enabling or disabling topic.</p>
|
|
@@ -3324,7 +3425,7 @@ export interface JoinResourceTypeEventConfiguration {
|
|
|
3324
3425
|
* related event topics.</p>
|
|
3325
3426
|
* @public
|
|
3326
3427
|
*/
|
|
3327
|
-
LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
|
|
3428
|
+
LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration | undefined;
|
|
3328
3429
|
}
|
|
3329
3430
|
/**
|
|
3330
3431
|
* <p>Message delivery status resource type event configuration object for enabling or
|
|
@@ -3337,7 +3438,7 @@ export interface MessageDeliveryStatusResourceTypeEventConfiguration {
|
|
|
3337
3438
|
* topic.</p>
|
|
3338
3439
|
* @public
|
|
3339
3440
|
*/
|
|
3340
|
-
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
3441
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
|
|
3341
3442
|
}
|
|
3342
3443
|
/**
|
|
3343
3444
|
* <p>Proximity resource type event configuration object for enabling or disabling
|
|
@@ -3350,7 +3451,7 @@ export interface ProximityResourceTypeEventConfiguration {
|
|
|
3350
3451
|
* device topic.</p>
|
|
3351
3452
|
* @public
|
|
3352
3453
|
*/
|
|
3353
|
-
Sidewalk?: SidewalkResourceTypeEventConfiguration;
|
|
3454
|
+
Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
|
|
3354
3455
|
}
|
|
3355
3456
|
/**
|
|
3356
3457
|
* @public
|
|
@@ -3360,27 +3461,27 @@ export interface GetEventConfigurationByResourceTypesResponse {
|
|
|
3360
3461
|
* <p>Resource type event configuration for the device registration state event.</p>
|
|
3361
3462
|
* @public
|
|
3362
3463
|
*/
|
|
3363
|
-
DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
|
|
3464
|
+
DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration | undefined;
|
|
3364
3465
|
/**
|
|
3365
3466
|
* <p>Resource type event configuration for the proximity event.</p>
|
|
3366
3467
|
* @public
|
|
3367
3468
|
*/
|
|
3368
|
-
Proximity?: ProximityResourceTypeEventConfiguration;
|
|
3469
|
+
Proximity?: ProximityResourceTypeEventConfiguration | undefined;
|
|
3369
3470
|
/**
|
|
3370
3471
|
* <p>Resource type event configuration for the join event.</p>
|
|
3371
3472
|
* @public
|
|
3372
3473
|
*/
|
|
3373
|
-
Join?: JoinResourceTypeEventConfiguration;
|
|
3474
|
+
Join?: JoinResourceTypeEventConfiguration | undefined;
|
|
3374
3475
|
/**
|
|
3375
3476
|
* <p>Resource type event configuration for the connection status event.</p>
|
|
3376
3477
|
* @public
|
|
3377
3478
|
*/
|
|
3378
|
-
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
|
|
3479
|
+
ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration | undefined;
|
|
3379
3480
|
/**
|
|
3380
3481
|
* <p>Resource type event configuration object for the message delivery status event.</p>
|
|
3381
3482
|
* @public
|
|
3382
3483
|
*/
|
|
3383
|
-
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
|
|
3484
|
+
MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration | undefined;
|
|
3384
3485
|
}
|
|
3385
3486
|
/**
|
|
3386
3487
|
* @public
|
|
@@ -3401,12 +3502,12 @@ export interface LoRaWANFuotaTaskGetInfo {
|
|
|
3401
3502
|
* <p>The frequency band (RFRegion) value.</p>
|
|
3402
3503
|
* @public
|
|
3403
3504
|
*/
|
|
3404
|
-
RfRegion?: string;
|
|
3505
|
+
RfRegion?: string | undefined;
|
|
3405
3506
|
/**
|
|
3406
3507
|
* <p>Start time of a FUOTA task.</p>
|
|
3407
3508
|
* @public
|
|
3408
3509
|
*/
|
|
3409
|
-
StartTime?: Date;
|
|
3510
|
+
StartTime?: Date | undefined;
|
|
3410
3511
|
}
|
|
3411
3512
|
/**
|
|
3412
3513
|
* @public
|
|
@@ -3416,48 +3517,48 @@ export interface GetFuotaTaskResponse {
|
|
|
3416
3517
|
* <p>The arn of a FUOTA task.</p>
|
|
3417
3518
|
* @public
|
|
3418
3519
|
*/
|
|
3419
|
-
Arn?: string;
|
|
3520
|
+
Arn?: string | undefined;
|
|
3420
3521
|
/**
|
|
3421
3522
|
* <p>The ID of a FUOTA task.</p>
|
|
3422
3523
|
* @public
|
|
3423
3524
|
*/
|
|
3424
|
-
Id?: string;
|
|
3525
|
+
Id?: string | undefined;
|
|
3425
3526
|
/**
|
|
3426
3527
|
* <p>The status of a FUOTA task.</p>
|
|
3427
3528
|
* @public
|
|
3428
3529
|
*/
|
|
3429
|
-
Status?: FuotaTaskStatus;
|
|
3530
|
+
Status?: FuotaTaskStatus | undefined;
|
|
3430
3531
|
/**
|
|
3431
3532
|
* <p>The name of a FUOTA task.</p>
|
|
3432
3533
|
* @public
|
|
3433
3534
|
*/
|
|
3434
|
-
Name?: string;
|
|
3535
|
+
Name?: string | undefined;
|
|
3435
3536
|
/**
|
|
3436
3537
|
* <p>The description of the new resource.</p>
|
|
3437
3538
|
* @public
|
|
3438
3539
|
*/
|
|
3439
|
-
Description?: string;
|
|
3540
|
+
Description?: string | undefined;
|
|
3440
3541
|
/**
|
|
3441
3542
|
* <p>The LoRaWAN information returned from getting a FUOTA task.</p>
|
|
3442
3543
|
* @public
|
|
3443
3544
|
*/
|
|
3444
|
-
LoRaWAN?: LoRaWANFuotaTaskGetInfo;
|
|
3545
|
+
LoRaWAN?: LoRaWANFuotaTaskGetInfo | undefined;
|
|
3445
3546
|
/**
|
|
3446
3547
|
* <p>The S3 URI points to a firmware update image that is to be used with a FUOTA
|
|
3447
3548
|
* task.</p>
|
|
3448
3549
|
* @public
|
|
3449
3550
|
*/
|
|
3450
|
-
FirmwareUpdateImage?: string;
|
|
3551
|
+
FirmwareUpdateImage?: string | undefined;
|
|
3451
3552
|
/**
|
|
3452
3553
|
* <p>The firmware update role that is to be used with a FUOTA task.</p>
|
|
3453
3554
|
* @public
|
|
3454
3555
|
*/
|
|
3455
|
-
FirmwareUpdateRole?: string;
|
|
3556
|
+
FirmwareUpdateRole?: string | undefined;
|
|
3456
3557
|
/**
|
|
3457
3558
|
* <p>Created at timestamp for the resource.</p>
|
|
3458
3559
|
* @public
|
|
3459
3560
|
*/
|
|
3460
|
-
CreatedAt?: Date;
|
|
3561
|
+
CreatedAt?: Date | undefined;
|
|
3461
3562
|
/**
|
|
3462
3563
|
* <p>The percentage of the added fragments that are redundant. For example, if the size of
|
|
3463
3564
|
* the firmware image file is 100 bytes and the fragment size is 10 bytes, with
|
|
@@ -3465,13 +3566,13 @@ export interface GetFuotaTaskResponse {
|
|
|
3465
3566
|
* is (100 / 10) + (100 / 10 * 50%) = 15.</p>
|
|
3466
3567
|
* @public
|
|
3467
3568
|
*/
|
|
3468
|
-
RedundancyPercent?: number;
|
|
3569
|
+
RedundancyPercent?: number | undefined;
|
|
3469
3570
|
/**
|
|
3470
3571
|
* <p>The size of each fragment in bytes. This parameter is supported only for FUOTA tasks
|
|
3471
3572
|
* with multicast groups.</p>
|
|
3472
3573
|
* @public
|
|
3473
3574
|
*/
|
|
3474
|
-
FragmentSizeBytes?: number;
|
|
3575
|
+
FragmentSizeBytes?: number | undefined;
|
|
3475
3576
|
/**
|
|
3476
3577
|
* <p>The interval for sending fragments in milliseconds, rounded to the nearest
|
|
3477
3578
|
* second.</p>
|
|
@@ -3483,7 +3584,13 @@ export interface GetFuotaTaskResponse {
|
|
|
3483
3584
|
* </note>
|
|
3484
3585
|
* @public
|
|
3485
3586
|
*/
|
|
3486
|
-
FragmentIntervalMS?: number;
|
|
3587
|
+
FragmentIntervalMS?: number | undefined;
|
|
3588
|
+
/**
|
|
3589
|
+
* <p>The Descriptor specifies some metadata about the File being transferred using FUOTA e.g. the software version.
|
|
3590
|
+
* It is sent transparently to the device. It is a binary field encoded in base64</p>
|
|
3591
|
+
* @public
|
|
3592
|
+
*/
|
|
3593
|
+
Descriptor?: string | undefined;
|
|
3487
3594
|
}
|
|
3488
3595
|
/**
|
|
3489
3596
|
* @public
|
|
@@ -3550,7 +3657,7 @@ export interface WirelessDeviceLogOption {
|
|
|
3550
3657
|
* <p>The list of wireless device event log options.</p>
|
|
3551
3658
|
* @public
|
|
3552
3659
|
*/
|
|
3553
|
-
Events?: WirelessDeviceEventLogOption[];
|
|
3660
|
+
Events?: WirelessDeviceEventLogOption[] | undefined;
|
|
3554
3661
|
}
|
|
3555
3662
|
/**
|
|
3556
3663
|
* @public
|
|
@@ -3618,7 +3725,7 @@ export interface WirelessGatewayLogOption {
|
|
|
3618
3725
|
* <p>The list of wireless gateway event log options.</p>
|
|
3619
3726
|
* @public
|
|
3620
3727
|
*/
|
|
3621
|
-
Events?: WirelessGatewayEventLogOption[];
|
|
3728
|
+
Events?: WirelessGatewayEventLogOption[] | undefined;
|
|
3622
3729
|
}
|
|
3623
3730
|
/**
|
|
3624
3731
|
* @public
|
|
@@ -3630,17 +3737,22 @@ export interface GetLogLevelsByResourceTypesResponse {
|
|
|
3630
3737
|
* or to <code>INFO</code> for more detailed logs.</p>
|
|
3631
3738
|
* @public
|
|
3632
3739
|
*/
|
|
3633
|
-
DefaultLogLevel?: LogLevel;
|
|
3740
|
+
DefaultLogLevel?: LogLevel | undefined;
|
|
3634
3741
|
/**
|
|
3635
3742
|
* <p>The list of wireless gateway log options.</p>
|
|
3636
3743
|
* @public
|
|
3637
3744
|
*/
|
|
3638
|
-
WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
|
|
3745
|
+
WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
|
|
3639
3746
|
/**
|
|
3640
3747
|
* <p>The list of wireless device log options.</p>
|
|
3641
3748
|
* @public
|
|
3642
3749
|
*/
|
|
3643
|
-
WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
|
|
3750
|
+
WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
|
|
3751
|
+
/**
|
|
3752
|
+
* <p>The list of fuota task log options.</p>
|
|
3753
|
+
* @public
|
|
3754
|
+
*/
|
|
3755
|
+
FuotaTaskLogOptions?: FuotaTaskLogOption[] | undefined;
|
|
3644
3756
|
}
|
|
3645
3757
|
/**
|
|
3646
3758
|
* @public
|
|
@@ -3668,7 +3780,7 @@ export interface SummaryMetricConfiguration {
|
|
|
3668
3780
|
* <p>The status of the configuration of summary metrics.</p>
|
|
3669
3781
|
* @public
|
|
3670
3782
|
*/
|
|
3671
|
-
Status?: SummaryMetricConfigurationStatus;
|
|
3783
|
+
Status?: SummaryMetricConfigurationStatus | undefined;
|
|
3672
3784
|
}
|
|
3673
3785
|
/**
|
|
3674
3786
|
* @public
|
|
@@ -3678,7 +3790,7 @@ export interface GetMetricConfigurationResponse {
|
|
|
3678
3790
|
* <p>The configuration status of the AWS account for summary metric aggregation.</p>
|
|
3679
3791
|
* @public
|
|
3680
3792
|
*/
|
|
3681
|
-
SummaryMetric?: SummaryMetricConfiguration;
|
|
3793
|
+
SummaryMetric?: SummaryMetricConfiguration | undefined;
|
|
3682
3794
|
}
|
|
3683
3795
|
/**
|
|
3684
3796
|
* @public
|
|
@@ -3731,32 +3843,32 @@ export interface SummaryMetricQuery {
|
|
|
3731
3843
|
* <p>The id of the summary metric query.</p>
|
|
3732
3844
|
* @public
|
|
3733
3845
|
*/
|
|
3734
|
-
QueryId?: string;
|
|
3846
|
+
QueryId?: string | undefined;
|
|
3735
3847
|
/**
|
|
3736
3848
|
* <p>The name of the metric.</p>
|
|
3737
3849
|
* @public
|
|
3738
3850
|
*/
|
|
3739
|
-
MetricName?: MetricName;
|
|
3851
|
+
MetricName?: MetricName | undefined;
|
|
3740
3852
|
/**
|
|
3741
3853
|
* <p>The dimensions of the summary metric.</p>
|
|
3742
3854
|
* @public
|
|
3743
3855
|
*/
|
|
3744
|
-
Dimensions?: Dimension[];
|
|
3856
|
+
Dimensions?: Dimension[] | undefined;
|
|
3745
3857
|
/**
|
|
3746
3858
|
* <p>The aggregation period of the summary metric.</p>
|
|
3747
3859
|
* @public
|
|
3748
3860
|
*/
|
|
3749
|
-
AggregationPeriod?: AggregationPeriod;
|
|
3861
|
+
AggregationPeriod?: AggregationPeriod | undefined;
|
|
3750
3862
|
/**
|
|
3751
3863
|
* <p>The start timestamp for the summary metric query.</p>
|
|
3752
3864
|
* @public
|
|
3753
3865
|
*/
|
|
3754
|
-
StartTimestamp?: Date;
|
|
3866
|
+
StartTimestamp?: Date | undefined;
|
|
3755
3867
|
/**
|
|
3756
3868
|
* <p>The end timestamp for the summary metric query.</p>
|
|
3757
3869
|
* @public
|
|
3758
3870
|
*/
|
|
3759
|
-
EndTimestamp?: Date;
|
|
3871
|
+
EndTimestamp?: Date | undefined;
|
|
3760
3872
|
}
|
|
3761
3873
|
/**
|
|
3762
3874
|
* @public
|
|
@@ -3766,7 +3878,7 @@ export interface GetMetricsRequest {
|
|
|
3766
3878
|
* <p>The list of queries to retrieve the summary metrics.</p>
|
|
3767
3879
|
* @public
|
|
3768
3880
|
*/
|
|
3769
|
-
SummaryMetricQueries?: SummaryMetricQuery[];
|
|
3881
|
+
SummaryMetricQueries?: SummaryMetricQuery[] | undefined;
|
|
3770
3882
|
}
|
|
3771
3883
|
/**
|
|
3772
3884
|
* @public
|
|
@@ -3790,37 +3902,37 @@ export interface MetricQueryValue {
|
|
|
3790
3902
|
* period.</p>
|
|
3791
3903
|
* @public
|
|
3792
3904
|
*/
|
|
3793
|
-
Min?: number;
|
|
3905
|
+
Min?: number | undefined;
|
|
3794
3906
|
/**
|
|
3795
3907
|
* <p>The maximum of the values of all the data points collected during the aggregation
|
|
3796
3908
|
* period.</p>
|
|
3797
3909
|
* @public
|
|
3798
3910
|
*/
|
|
3799
|
-
Max?: number;
|
|
3911
|
+
Max?: number | undefined;
|
|
3800
3912
|
/**
|
|
3801
3913
|
* <p>The sum of the values of all data points collected during the aggregation
|
|
3802
3914
|
* period.</p>
|
|
3803
3915
|
* @public
|
|
3804
3916
|
*/
|
|
3805
|
-
Sum?: number;
|
|
3917
|
+
Sum?: number | undefined;
|
|
3806
3918
|
/**
|
|
3807
3919
|
* <p>The average of the values of all data points collected during the aggregation
|
|
3808
3920
|
* period.</p>
|
|
3809
3921
|
* @public
|
|
3810
3922
|
*/
|
|
3811
|
-
Avg?: number;
|
|
3923
|
+
Avg?: number | undefined;
|
|
3812
3924
|
/**
|
|
3813
3925
|
* <p>The standard deviation of the values of all data points collected during the
|
|
3814
3926
|
* aggregation period.</p>
|
|
3815
3927
|
* @public
|
|
3816
3928
|
*/
|
|
3817
|
-
Std?: number;
|
|
3929
|
+
Std?: number | undefined;
|
|
3818
3930
|
/**
|
|
3819
3931
|
* <p>The 90th percentile of the values of all data points collected during the aggregation
|
|
3820
3932
|
* period.</p>
|
|
3821
3933
|
* @public
|
|
3822
3934
|
*/
|
|
3823
|
-
P90?: number;
|
|
3935
|
+
P90?: number | undefined;
|
|
3824
3936
|
}
|
|
3825
3937
|
/**
|
|
3826
3938
|
* <p>The result of the summary metrics aggregation operation.</p>
|
|
@@ -3831,57 +3943,57 @@ export interface SummaryMetricQueryResult {
|
|
|
3831
3943
|
* <p>The ID of the summary metric results query operation.</p>
|
|
3832
3944
|
* @public
|
|
3833
3945
|
*/
|
|
3834
|
-
QueryId?: string;
|
|
3946
|
+
QueryId?: string | undefined;
|
|
3835
3947
|
/**
|
|
3836
3948
|
* <p>The status of the summary metric query result.</p>
|
|
3837
3949
|
* @public
|
|
3838
3950
|
*/
|
|
3839
|
-
QueryStatus?: MetricQueryStatus;
|
|
3951
|
+
QueryStatus?: MetricQueryStatus | undefined;
|
|
3840
3952
|
/**
|
|
3841
3953
|
* <p>The error message for the summary metric query result.</p>
|
|
3842
3954
|
* @public
|
|
3843
3955
|
*/
|
|
3844
|
-
Error?: string;
|
|
3956
|
+
Error?: string | undefined;
|
|
3845
3957
|
/**
|
|
3846
3958
|
* <p>The name of the summary metric query result.</p>
|
|
3847
3959
|
* @public
|
|
3848
3960
|
*/
|
|
3849
|
-
MetricName?: MetricName;
|
|
3961
|
+
MetricName?: MetricName | undefined;
|
|
3850
3962
|
/**
|
|
3851
3963
|
* <p>The dimensions of the metric.</p>
|
|
3852
3964
|
* @public
|
|
3853
3965
|
*/
|
|
3854
|
-
Dimensions?: Dimension[];
|
|
3966
|
+
Dimensions?: Dimension[] | undefined;
|
|
3855
3967
|
/**
|
|
3856
3968
|
* <p>The aggregation period of the metric.</p>
|
|
3857
3969
|
* @public
|
|
3858
3970
|
*/
|
|
3859
|
-
AggregationPeriod?: AggregationPeriod;
|
|
3971
|
+
AggregationPeriod?: AggregationPeriod | undefined;
|
|
3860
3972
|
/**
|
|
3861
3973
|
* <p>The start timestamp for the summary metric query.</p>
|
|
3862
3974
|
* @public
|
|
3863
3975
|
*/
|
|
3864
|
-
StartTimestamp?: Date;
|
|
3976
|
+
StartTimestamp?: Date | undefined;
|
|
3865
3977
|
/**
|
|
3866
3978
|
* <p>The end timestamp for the summary metric query.</p>
|
|
3867
3979
|
* @public
|
|
3868
3980
|
*/
|
|
3869
|
-
EndTimestamp?: Date;
|
|
3981
|
+
EndTimestamp?: Date | undefined;
|
|
3870
3982
|
/**
|
|
3871
3983
|
* <p>The timestamp of each aggregation result.</p>
|
|
3872
3984
|
* @public
|
|
3873
3985
|
*/
|
|
3874
|
-
Timestamps?: Date[];
|
|
3986
|
+
Timestamps?: Date[] | undefined;
|
|
3875
3987
|
/**
|
|
3876
3988
|
* <p>The list of aggregated summary metric query results.</p>
|
|
3877
3989
|
* @public
|
|
3878
3990
|
*/
|
|
3879
|
-
Values?: MetricQueryValue[];
|
|
3991
|
+
Values?: MetricQueryValue[] | undefined;
|
|
3880
3992
|
/**
|
|
3881
3993
|
* <p>The units of measurement to be used for interpreting the aggregation result.</p>
|
|
3882
3994
|
* @public
|
|
3883
3995
|
*/
|
|
3884
|
-
Unit?: string;
|
|
3996
|
+
Unit?: string | undefined;
|
|
3885
3997
|
}
|
|
3886
3998
|
/**
|
|
3887
3999
|
* @public
|
|
@@ -3891,7 +4003,7 @@ export interface GetMetricsResponse {
|
|
|
3891
4003
|
* <p>The list of summary metrics that were retrieved.</p>
|
|
3892
4004
|
* @public
|
|
3893
4005
|
*/
|
|
3894
|
-
SummaryMetricQueryResults?: SummaryMetricQueryResult[];
|
|
4006
|
+
SummaryMetricQueryResults?: SummaryMetricQueryResult[] | undefined;
|
|
3895
4007
|
}
|
|
3896
4008
|
/**
|
|
3897
4009
|
* @public
|
|
@@ -3913,22 +4025,28 @@ export interface LoRaWANMulticastGet {
|
|
|
3913
4025
|
* <p>Supported RfRegions</p>
|
|
3914
4026
|
* @public
|
|
3915
4027
|
*/
|
|
3916
|
-
RfRegion?: SupportedRfRegion;
|
|
4028
|
+
RfRegion?: SupportedRfRegion | undefined;
|
|
3917
4029
|
/**
|
|
3918
4030
|
* <p>DlClass for LoRaWAM, valid values are ClassB and ClassC.</p>
|
|
3919
4031
|
* @public
|
|
3920
4032
|
*/
|
|
3921
|
-
DlClass?: DlClass;
|
|
4033
|
+
DlClass?: DlClass | undefined;
|
|
3922
4034
|
/**
|
|
3923
4035
|
* <p>Number of devices that are requested to be associated with the multicast group.</p>
|
|
3924
4036
|
* @public
|
|
3925
4037
|
*/
|
|
3926
|
-
NumberOfDevicesRequested?: number;
|
|
4038
|
+
NumberOfDevicesRequested?: number | undefined;
|
|
3927
4039
|
/**
|
|
3928
4040
|
* <p>Number of devices that are associated to the multicast group.</p>
|
|
3929
4041
|
* @public
|
|
3930
4042
|
*/
|
|
3931
|
-
NumberOfDevicesInGroup?: number;
|
|
4043
|
+
NumberOfDevicesInGroup?: number | undefined;
|
|
4044
|
+
/**
|
|
4045
|
+
* <p>Specify the list of gateways to which you want to send the multicast downlink messages.
|
|
4046
|
+
* The multicast message will be sent to each gateway in the sequence provided in the list.</p>
|
|
4047
|
+
* @public
|
|
4048
|
+
*/
|
|
4049
|
+
ParticipatingGateways?: ParticipatingGatewaysMulticast | undefined;
|
|
3932
4050
|
}
|
|
3933
4051
|
/**
|
|
3934
4052
|
* @public
|
|
@@ -3938,38 +4056,38 @@ export interface GetMulticastGroupResponse {
|
|
|
3938
4056
|
* <p>The arn of the multicast group.</p>
|
|
3939
4057
|
* @public
|
|
3940
4058
|
*/
|
|
3941
|
-
Arn?: string;
|
|
4059
|
+
Arn?: string | undefined;
|
|
3942
4060
|
/**
|
|
3943
4061
|
* <p>The ID of the multicast group.</p>
|
|
3944
4062
|
* @public
|
|
3945
4063
|
*/
|
|
3946
|
-
Id?: string;
|
|
4064
|
+
Id?: string | undefined;
|
|
3947
4065
|
/**
|
|
3948
4066
|
* <p>The name of the multicast group.</p>
|
|
3949
4067
|
* @public
|
|
3950
4068
|
*/
|
|
3951
|
-
Name?: string;
|
|
4069
|
+
Name?: string | undefined;
|
|
3952
4070
|
/**
|
|
3953
4071
|
* <p>The description of the new resource.</p>
|
|
3954
4072
|
* @public
|
|
3955
4073
|
*/
|
|
3956
|
-
Description?: string;
|
|
4074
|
+
Description?: string | undefined;
|
|
3957
4075
|
/**
|
|
3958
4076
|
* <p>The status of the multicast group.</p>
|
|
3959
4077
|
* @public
|
|
3960
4078
|
*/
|
|
3961
|
-
Status?: string;
|
|
4079
|
+
Status?: string | undefined;
|
|
3962
4080
|
/**
|
|
3963
4081
|
* <p>The LoRaWAN information that is to be returned from getting multicast group
|
|
3964
4082
|
* information.</p>
|
|
3965
4083
|
* @public
|
|
3966
4084
|
*/
|
|
3967
|
-
LoRaWAN?: LoRaWANMulticastGet;
|
|
4085
|
+
LoRaWAN?: LoRaWANMulticastGet | undefined;
|
|
3968
4086
|
/**
|
|
3969
4087
|
* <p>Created at timestamp for the resource.</p>
|
|
3970
4088
|
* @public
|
|
3971
4089
|
*/
|
|
3972
|
-
CreatedAt?: Date;
|
|
4090
|
+
CreatedAt?: Date | undefined;
|
|
3973
4091
|
}
|
|
3974
4092
|
/**
|
|
3975
4093
|
* @public
|
|
@@ -3990,27 +4108,27 @@ export interface LoRaWANMulticastSession {
|
|
|
3990
4108
|
* <p>Downlink data rate.</p>
|
|
3991
4109
|
* @public
|
|
3992
4110
|
*/
|
|
3993
|
-
DlDr?: number;
|
|
4111
|
+
DlDr?: number | undefined;
|
|
3994
4112
|
/**
|
|
3995
4113
|
* <p>Downlink frequency.</p>
|
|
3996
4114
|
* @public
|
|
3997
4115
|
*/
|
|
3998
|
-
DlFreq?: number;
|
|
4116
|
+
DlFreq?: number | undefined;
|
|
3999
4117
|
/**
|
|
4000
4118
|
* <p>Timestamp of when the multicast group session is to start.</p>
|
|
4001
4119
|
* @public
|
|
4002
4120
|
*/
|
|
4003
|
-
SessionStartTime?: Date;
|
|
4121
|
+
SessionStartTime?: Date | undefined;
|
|
4004
4122
|
/**
|
|
4005
4123
|
* <p>How long before a multicast group session is to timeout.</p>
|
|
4006
4124
|
* @public
|
|
4007
4125
|
*/
|
|
4008
|
-
SessionTimeout?: number;
|
|
4126
|
+
SessionTimeout?: number | undefined;
|
|
4009
4127
|
/**
|
|
4010
4128
|
* <p>The PingSlotPeriod value.</p>
|
|
4011
4129
|
* @public
|
|
4012
4130
|
*/
|
|
4013
|
-
PingSlotPeriod?: number;
|
|
4131
|
+
PingSlotPeriod?: number | undefined;
|
|
4014
4132
|
}
|
|
4015
4133
|
/**
|
|
4016
4134
|
* @public
|
|
@@ -4020,7 +4138,7 @@ export interface GetMulticastGroupSessionResponse {
|
|
|
4020
4138
|
* <p>The LoRaWAN information used with the multicast session.</p>
|
|
4021
4139
|
* @public
|
|
4022
4140
|
*/
|
|
4023
|
-
LoRaWAN?: LoRaWANMulticastSession;
|
|
4141
|
+
LoRaWAN?: LoRaWANMulticastSession | undefined;
|
|
4024
4142
|
}
|
|
4025
4143
|
/**
|
|
4026
4144
|
* @public
|
|
@@ -4040,40 +4158,40 @@ export interface GetNetworkAnalyzerConfigurationResponse {
|
|
|
4040
4158
|
* <p>Trace content for your wireless devices, gateways, and multicast groups.</p>
|
|
4041
4159
|
* @public
|
|
4042
4160
|
*/
|
|
4043
|
-
TraceContent?: TraceContent;
|
|
4161
|
+
TraceContent?: TraceContent | undefined;
|
|
4044
4162
|
/**
|
|
4045
4163
|
* <p>List of wireless device resources that have been added to the network analyzer
|
|
4046
4164
|
* configuration.</p>
|
|
4047
4165
|
* @public
|
|
4048
4166
|
*/
|
|
4049
|
-
WirelessDevices?: string[];
|
|
4167
|
+
WirelessDevices?: string[] | undefined;
|
|
4050
4168
|
/**
|
|
4051
4169
|
* <p>List of wireless gateway resources that have been added to the network analyzer
|
|
4052
4170
|
* configuration.</p>
|
|
4053
4171
|
* @public
|
|
4054
4172
|
*/
|
|
4055
|
-
WirelessGateways?: string[];
|
|
4173
|
+
WirelessGateways?: string[] | undefined;
|
|
4056
4174
|
/**
|
|
4057
4175
|
* <p>The description of the new resource.</p>
|
|
4058
4176
|
* @public
|
|
4059
4177
|
*/
|
|
4060
|
-
Description?: string;
|
|
4178
|
+
Description?: string | undefined;
|
|
4061
4179
|
/**
|
|
4062
4180
|
* <p>The Amazon Resource Name of the new resource.</p>
|
|
4063
4181
|
* @public
|
|
4064
4182
|
*/
|
|
4065
|
-
Arn?: string;
|
|
4183
|
+
Arn?: string | undefined;
|
|
4066
4184
|
/**
|
|
4067
4185
|
* <p>Name of the network analyzer configuration.</p>
|
|
4068
4186
|
* @public
|
|
4069
4187
|
*/
|
|
4070
|
-
Name?: string;
|
|
4188
|
+
Name?: string | undefined;
|
|
4071
4189
|
/**
|
|
4072
4190
|
* <p>List of multicast group resources that have been added to the network analyzer
|
|
4073
4191
|
* configuration.</p>
|
|
4074
4192
|
* @public
|
|
4075
4193
|
*/
|
|
4076
|
-
MulticastGroups?: string[];
|
|
4194
|
+
MulticastGroups?: string[] | undefined;
|
|
4077
4195
|
}
|
|
4078
4196
|
/**
|
|
4079
4197
|
* @public
|
|
@@ -4099,17 +4217,17 @@ export interface SidewalkAccountInfoWithFingerprint {
|
|
|
4099
4217
|
* <p>The Sidewalk Amazon ID.</p>
|
|
4100
4218
|
* @public
|
|
4101
4219
|
*/
|
|
4102
|
-
AmazonId?: string;
|
|
4220
|
+
AmazonId?: string | undefined;
|
|
4103
4221
|
/**
|
|
4104
4222
|
* <p>The fingerprint of the Sidewalk application server private key.</p>
|
|
4105
4223
|
* @public
|
|
4106
4224
|
*/
|
|
4107
|
-
Fingerprint?: string;
|
|
4225
|
+
Fingerprint?: string | undefined;
|
|
4108
4226
|
/**
|
|
4109
4227
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
4110
4228
|
* @public
|
|
4111
4229
|
*/
|
|
4112
|
-
Arn?: string;
|
|
4230
|
+
Arn?: string | undefined;
|
|
4113
4231
|
}
|
|
4114
4232
|
/**
|
|
4115
4233
|
* @public
|
|
@@ -4119,12 +4237,12 @@ export interface GetPartnerAccountResponse {
|
|
|
4119
4237
|
* <p>The Sidewalk account credentials.</p>
|
|
4120
4238
|
* @public
|
|
4121
4239
|
*/
|
|
4122
|
-
Sidewalk?: SidewalkAccountInfoWithFingerprint;
|
|
4240
|
+
Sidewalk?: SidewalkAccountInfoWithFingerprint | undefined;
|
|
4123
4241
|
/**
|
|
4124
4242
|
* <p>Whether the partner account is linked to the AWS account.</p>
|
|
4125
4243
|
* @public
|
|
4126
4244
|
*/
|
|
4127
|
-
AccountLinked?: boolean;
|
|
4245
|
+
AccountLinked?: boolean | undefined;
|
|
4128
4246
|
}
|
|
4129
4247
|
/**
|
|
4130
4248
|
* @public
|
|
@@ -4183,7 +4301,7 @@ export interface GetPositionResponse {
|
|
|
4183
4301
|
* <p>The position information of the resource.</p>
|
|
4184
4302
|
* @public
|
|
4185
4303
|
*/
|
|
4186
|
-
Position?: number[];
|
|
4304
|
+
Position?: number[] | undefined;
|
|
4187
4305
|
/**
|
|
4188
4306
|
* <p>The accuracy of the estimated position in meters. An empty value indicates that no
|
|
4189
4307
|
* position data is available. A value of ‘0.0’ value indicates that position data is
|
|
@@ -4191,27 +4309,27 @@ export interface GetPositionResponse {
|
|
|
4191
4309
|
* of the position computed by solver.</p>
|
|
4192
4310
|
* @public
|
|
4193
4311
|
*/
|
|
4194
|
-
Accuracy?: Accuracy;
|
|
4312
|
+
Accuracy?: Accuracy | undefined;
|
|
4195
4313
|
/**
|
|
4196
4314
|
* <p>The type of solver used to identify the position of the resource.</p>
|
|
4197
4315
|
* @public
|
|
4198
4316
|
*/
|
|
4199
|
-
SolverType?: PositionSolverType;
|
|
4317
|
+
SolverType?: PositionSolverType | undefined;
|
|
4200
4318
|
/**
|
|
4201
4319
|
* <p>The vendor of the positioning solver.</p>
|
|
4202
4320
|
* @public
|
|
4203
4321
|
*/
|
|
4204
|
-
SolverProvider?: PositionSolverProvider;
|
|
4322
|
+
SolverProvider?: PositionSolverProvider | undefined;
|
|
4205
4323
|
/**
|
|
4206
4324
|
* <p>The version of the positioning solver.</p>
|
|
4207
4325
|
* @public
|
|
4208
4326
|
*/
|
|
4209
|
-
SolverVersion?: string;
|
|
4327
|
+
SolverVersion?: string | undefined;
|
|
4210
4328
|
/**
|
|
4211
4329
|
* <p>The timestamp at which the device's position was determined.</p>
|
|
4212
4330
|
* @public
|
|
4213
4331
|
*/
|
|
4214
|
-
Timestamp?: string;
|
|
4332
|
+
Timestamp?: string | undefined;
|
|
4215
4333
|
}
|
|
4216
4334
|
/**
|
|
4217
4335
|
* @public
|
|
@@ -4261,22 +4379,22 @@ export interface SemtechGnssDetail {
|
|
|
4261
4379
|
* <p>The vendor of the solver object.</p>
|
|
4262
4380
|
* @public
|
|
4263
4381
|
*/
|
|
4264
|
-
Provider?: PositionSolverProvider;
|
|
4382
|
+
Provider?: PositionSolverProvider | undefined;
|
|
4265
4383
|
/**
|
|
4266
4384
|
* <p>The type of positioning solver used.</p>
|
|
4267
4385
|
* @public
|
|
4268
4386
|
*/
|
|
4269
|
-
Type?: PositionSolverType;
|
|
4387
|
+
Type?: PositionSolverType | undefined;
|
|
4270
4388
|
/**
|
|
4271
4389
|
* <p>The status indicating whether the solver is enabled.</p>
|
|
4272
4390
|
* @public
|
|
4273
4391
|
*/
|
|
4274
|
-
Status?: PositionConfigurationStatus;
|
|
4392
|
+
Status?: PositionConfigurationStatus | undefined;
|
|
4275
4393
|
/**
|
|
4276
4394
|
* <p>Whether forward error correction is enabled.</p>
|
|
4277
4395
|
* @public
|
|
4278
4396
|
*/
|
|
4279
|
-
Fec?: PositionConfigurationFec;
|
|
4397
|
+
Fec?: PositionConfigurationFec | undefined;
|
|
4280
4398
|
}
|
|
4281
4399
|
/**
|
|
4282
4400
|
* <p>The wrapper for position solver details.</p>
|
|
@@ -4287,7 +4405,7 @@ export interface PositionSolverDetails {
|
|
|
4287
4405
|
* <p>The Semtech GNSS solver object details.</p>
|
|
4288
4406
|
* @public
|
|
4289
4407
|
*/
|
|
4290
|
-
SemtechGnss?: SemtechGnssDetail;
|
|
4408
|
+
SemtechGnss?: SemtechGnssDetail | undefined;
|
|
4291
4409
|
}
|
|
4292
4410
|
/**
|
|
4293
4411
|
* @public
|
|
@@ -4297,13 +4415,13 @@ export interface GetPositionConfigurationResponse {
|
|
|
4297
4415
|
* <p>The wrapper for the solver configuration details object.</p>
|
|
4298
4416
|
* @public
|
|
4299
4417
|
*/
|
|
4300
|
-
Solvers?: PositionSolverDetails;
|
|
4418
|
+
Solvers?: PositionSolverDetails | undefined;
|
|
4301
4419
|
/**
|
|
4302
4420
|
* <p>The position data destination that describes the AWS IoT rule that processes the
|
|
4303
4421
|
* device's position data for use by AWS IoT Core for LoRaWAN.</p>
|
|
4304
4422
|
* @public
|
|
4305
4423
|
*/
|
|
4306
|
-
Destination?: string;
|
|
4424
|
+
Destination?: string | undefined;
|
|
4307
4425
|
}
|
|
4308
4426
|
/**
|
|
4309
4427
|
* <p>Global navigation satellite system (GNSS) object used for positioning.</p>
|
|
@@ -4322,32 +4440,32 @@ export interface Gnss {
|
|
|
4322
4440
|
* time is used.</p>
|
|
4323
4441
|
* @public
|
|
4324
4442
|
*/
|
|
4325
|
-
CaptureTime?: number;
|
|
4443
|
+
CaptureTime?: number | undefined;
|
|
4326
4444
|
/**
|
|
4327
4445
|
* <p>Optional value that gives the capture time estimate accuracy, in seconds. If capture
|
|
4328
4446
|
* time accuracy is not specified, default value of 300 is used.</p>
|
|
4329
4447
|
* @public
|
|
4330
4448
|
*/
|
|
4331
|
-
CaptureTimeAccuracy?: number;
|
|
4449
|
+
CaptureTimeAccuracy?: number | undefined;
|
|
4332
4450
|
/**
|
|
4333
4451
|
* <p>Optional assistance position information, specified using latitude and longitude
|
|
4334
4452
|
* values in degrees. The coordinates are inside the WGS84 reference frame.</p>
|
|
4335
4453
|
* @public
|
|
4336
4454
|
*/
|
|
4337
|
-
AssistPosition?: number[];
|
|
4455
|
+
AssistPosition?: number[] | undefined;
|
|
4338
4456
|
/**
|
|
4339
4457
|
* <p>Optional assistance altitude, which is the altitude of the device at capture time,
|
|
4340
4458
|
* specified in meters above the WGS84 reference ellipsoid.</p>
|
|
4341
4459
|
* @public
|
|
4342
4460
|
*/
|
|
4343
|
-
AssistAltitude?: number;
|
|
4461
|
+
AssistAltitude?: number | undefined;
|
|
4344
4462
|
/**
|
|
4345
4463
|
* <p>Optional parameter that forces 2D solve, which modifies the positioning algorithm to a
|
|
4346
4464
|
* 2D solution problem. When this parameter is specified, the assistance altitude should
|
|
4347
4465
|
* have an accuracy of at least 10 meters.</p>
|
|
4348
4466
|
* @public
|
|
4349
4467
|
*/
|
|
4350
|
-
Use2DSolver?: boolean;
|
|
4468
|
+
Use2DSolver?: boolean | undefined;
|
|
4351
4469
|
}
|
|
4352
4470
|
/**
|
|
4353
4471
|
* <p>IP address used for resolving device location.</p>
|
|
@@ -4385,33 +4503,33 @@ export interface GetPositionEstimateRequest {
|
|
|
4385
4503
|
* position is resolved using HERE's Wi-Fi based solver.</p>
|
|
4386
4504
|
* @public
|
|
4387
4505
|
*/
|
|
4388
|
-
WiFiAccessPoints?: WiFiAccessPoint[];
|
|
4506
|
+
WiFiAccessPoints?: WiFiAccessPoint[] | undefined;
|
|
4389
4507
|
/**
|
|
4390
4508
|
* <p>Retrieves an estimated device position by resolving measurement data from cellular
|
|
4391
4509
|
* radio towers. The position is resolved using HERE's cellular-based solver.</p>
|
|
4392
4510
|
* @public
|
|
4393
4511
|
*/
|
|
4394
|
-
CellTowers?: CellTowers;
|
|
4512
|
+
CellTowers?: CellTowers | undefined;
|
|
4395
4513
|
/**
|
|
4396
4514
|
* <p>Retrieves an estimated device position by resolving the IP address information from
|
|
4397
4515
|
* the device. The position is resolved using MaxMind's IP-based solver.</p>
|
|
4398
4516
|
* @public
|
|
4399
4517
|
*/
|
|
4400
|
-
Ip?: Ip;
|
|
4518
|
+
Ip?: Ip | undefined;
|
|
4401
4519
|
/**
|
|
4402
4520
|
* <p>Retrieves an estimated device position by resolving the global navigation satellite
|
|
4403
4521
|
* system (GNSS) scan data. The position is resolved using the GNSS solver powered by LoRa
|
|
4404
4522
|
* Cloud.</p>
|
|
4405
4523
|
* @public
|
|
4406
4524
|
*/
|
|
4407
|
-
Gnss?: Gnss;
|
|
4525
|
+
Gnss?: Gnss | undefined;
|
|
4408
4526
|
/**
|
|
4409
4527
|
* <p>Optional information that specifies the time when the position information will be
|
|
4410
4528
|
* resolved. It uses the Unix timestamp format. If not specified, the time at which the
|
|
4411
4529
|
* request was received will be used.</p>
|
|
4412
4530
|
* @public
|
|
4413
4531
|
*/
|
|
4414
|
-
Timestamp?: Date;
|
|
4532
|
+
Timestamp?: Date | undefined;
|
|
4415
4533
|
}
|
|
4416
4534
|
/**
|
|
4417
4535
|
* @public
|
|
@@ -4425,7 +4543,7 @@ export interface GetPositionEstimateResponse {
|
|
|
4425
4543
|
* accuracy and confidence level. For more information and examples, see <a href="https://docs.aws.amazon.com/iot/latest/developerguide/location-resolve-console.html">Resolve device location (console)</a>.</p>
|
|
4426
4544
|
* @public
|
|
4427
4545
|
*/
|
|
4428
|
-
GeoJsonPayload?: Uint8Array;
|
|
4546
|
+
GeoJsonPayload?: Uint8Array | undefined;
|
|
4429
4547
|
}
|
|
4430
4548
|
/**
|
|
4431
4549
|
* @public
|
|
@@ -4446,7 +4564,7 @@ export interface GetResourceEventConfigurationRequest {
|
|
|
4446
4564
|
* <code>PartnerAccountId</code>.</p>
|
|
4447
4565
|
* @public
|
|
4448
4566
|
*/
|
|
4449
|
-
PartnerType?: EventNotificationPartnerType;
|
|
4567
|
+
PartnerType?: EventNotificationPartnerType | undefined;
|
|
4450
4568
|
}
|
|
4451
4569
|
/**
|
|
4452
4570
|
* @public
|
|
@@ -4456,27 +4574,27 @@ export interface GetResourceEventConfigurationResponse {
|
|
|
4456
4574
|
* <p>Event configuration for the device registration state event.</p>
|
|
4457
4575
|
* @public
|
|
4458
4576
|
*/
|
|
4459
|
-
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
|
|
4577
|
+
DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration | undefined;
|
|
4460
4578
|
/**
|
|
4461
4579
|
* <p>Event configuration for the proximity event.</p>
|
|
4462
4580
|
* @public
|
|
4463
4581
|
*/
|
|
4464
|
-
Proximity?: ProximityEventConfiguration;
|
|
4582
|
+
Proximity?: ProximityEventConfiguration | undefined;
|
|
4465
4583
|
/**
|
|
4466
4584
|
* <p>Event configuration for the join event.</p>
|
|
4467
4585
|
* @public
|
|
4468
4586
|
*/
|
|
4469
|
-
Join?: JoinEventConfiguration;
|
|
4587
|
+
Join?: JoinEventConfiguration | undefined;
|
|
4470
4588
|
/**
|
|
4471
4589
|
* <p>Event configuration for the connection status event.</p>
|
|
4472
4590
|
* @public
|
|
4473
4591
|
*/
|
|
4474
|
-
ConnectionStatus?: ConnectionStatusEventConfiguration;
|
|
4592
|
+
ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
|
|
4475
4593
|
/**
|
|
4476
4594
|
* <p>Event configuration for the message delivery status event.</p>
|
|
4477
4595
|
* @public
|
|
4478
4596
|
*/
|
|
4479
|
-
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
|
|
4597
|
+
MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
|
|
4480
4598
|
}
|
|
4481
4599
|
/**
|
|
4482
4600
|
* @public
|
|
@@ -4489,8 +4607,8 @@ export interface GetResourceLogLevelRequest {
|
|
|
4489
4607
|
*/
|
|
4490
4608
|
ResourceIdentifier: string | undefined;
|
|
4491
4609
|
/**
|
|
4492
|
-
* <p>The type of the resource, which can be <code>WirelessDevice</code
|
|
4493
|
-
* <code>WirelessGateway</code>.</p>
|
|
4610
|
+
* <p>The type of the resource, which can be <code>WirelessDevice</code>,
|
|
4611
|
+
* <code>WirelessGateway</code> or <code>FuotaTask</code>.</p>
|
|
4494
4612
|
* @public
|
|
4495
4613
|
*/
|
|
4496
4614
|
ResourceType: string | undefined;
|
|
@@ -4505,7 +4623,7 @@ export interface GetResourceLogLevelResponse {
|
|
|
4505
4623
|
* or to <code>INFO</code> for more detailed logs.</p>
|
|
4506
4624
|
* @public
|
|
4507
4625
|
*/
|
|
4508
|
-
LogLevel?: LogLevel;
|
|
4626
|
+
LogLevel?: LogLevel | undefined;
|
|
4509
4627
|
}
|
|
4510
4628
|
/**
|
|
4511
4629
|
* @public
|
|
@@ -4535,7 +4653,7 @@ export interface GetResourcePositionResponse {
|
|
|
4535
4653
|
* structures. For more information, see <a href="https://geojson.org/">GeoJSON</a>.</p>
|
|
4536
4654
|
* @public
|
|
4537
4655
|
*/
|
|
4538
|
-
GeoJsonPayload?: Uint8Array;
|
|
4656
|
+
GeoJsonPayload?: Uint8Array | undefined;
|
|
4539
4657
|
}
|
|
4540
4658
|
/**
|
|
4541
4659
|
* @public
|
|
@@ -4559,7 +4677,7 @@ export interface GetServiceEndpointRequest {
|
|
|
4559
4677
|
* Network Server endpoint or <code>CLAIM</code> for the global endpoint.</p>
|
|
4560
4678
|
* @public
|
|
4561
4679
|
*/
|
|
4562
|
-
ServiceType?: WirelessGatewayServiceType;
|
|
4680
|
+
ServiceType?: WirelessGatewayServiceType | undefined;
|
|
4563
4681
|
}
|
|
4564
4682
|
/**
|
|
4565
4683
|
* @public
|
|
@@ -4569,17 +4687,17 @@ export interface GetServiceEndpointResponse {
|
|
|
4569
4687
|
* <p>The endpoint's service type.</p>
|
|
4570
4688
|
* @public
|
|
4571
4689
|
*/
|
|
4572
|
-
ServiceType?: WirelessGatewayServiceType;
|
|
4690
|
+
ServiceType?: WirelessGatewayServiceType | undefined;
|
|
4573
4691
|
/**
|
|
4574
4692
|
* <p>The service endpoint value.</p>
|
|
4575
4693
|
* @public
|
|
4576
4694
|
*/
|
|
4577
|
-
ServiceEndpoint?: string;
|
|
4695
|
+
ServiceEndpoint?: string | undefined;
|
|
4578
4696
|
/**
|
|
4579
4697
|
* <p>The Root CA of the server trust certificate.</p>
|
|
4580
4698
|
* @public
|
|
4581
4699
|
*/
|
|
4582
|
-
ServerTrust?: string;
|
|
4700
|
+
ServerTrust?: string | undefined;
|
|
4583
4701
|
}
|
|
4584
4702
|
/**
|
|
4585
4703
|
* @public
|
|
@@ -4600,97 +4718,97 @@ export interface LoRaWANGetServiceProfileInfo {
|
|
|
4600
4718
|
* <p>The ULRate value.</p>
|
|
4601
4719
|
* @public
|
|
4602
4720
|
*/
|
|
4603
|
-
UlRate?: number;
|
|
4721
|
+
UlRate?: number | undefined;
|
|
4604
4722
|
/**
|
|
4605
4723
|
* <p>The ULBucketSize value.</p>
|
|
4606
4724
|
* @public
|
|
4607
4725
|
*/
|
|
4608
|
-
UlBucketSize?: number;
|
|
4726
|
+
UlBucketSize?: number | undefined;
|
|
4609
4727
|
/**
|
|
4610
4728
|
* <p>The ULRatePolicy value.</p>
|
|
4611
4729
|
* @public
|
|
4612
4730
|
*/
|
|
4613
|
-
UlRatePolicy?: string;
|
|
4731
|
+
UlRatePolicy?: string | undefined;
|
|
4614
4732
|
/**
|
|
4615
4733
|
* <p>The DLRate value.</p>
|
|
4616
4734
|
* @public
|
|
4617
4735
|
*/
|
|
4618
|
-
DlRate?: number;
|
|
4736
|
+
DlRate?: number | undefined;
|
|
4619
4737
|
/**
|
|
4620
4738
|
* <p>The DLBucketSize value.</p>
|
|
4621
4739
|
* @public
|
|
4622
4740
|
*/
|
|
4623
|
-
DlBucketSize?: number;
|
|
4741
|
+
DlBucketSize?: number | undefined;
|
|
4624
4742
|
/**
|
|
4625
4743
|
* <p>The DLRatePolicy value.</p>
|
|
4626
4744
|
* @public
|
|
4627
4745
|
*/
|
|
4628
|
-
DlRatePolicy?: string;
|
|
4746
|
+
DlRatePolicy?: string | undefined;
|
|
4629
4747
|
/**
|
|
4630
4748
|
* <p>The AddGWMetaData value.</p>
|
|
4631
4749
|
* @public
|
|
4632
4750
|
*/
|
|
4633
|
-
AddGwMetadata?: boolean;
|
|
4751
|
+
AddGwMetadata?: boolean | undefined;
|
|
4634
4752
|
/**
|
|
4635
4753
|
* <p>The DevStatusReqFreq value.</p>
|
|
4636
4754
|
* @public
|
|
4637
4755
|
*/
|
|
4638
|
-
DevStatusReqFreq?: number;
|
|
4756
|
+
DevStatusReqFreq?: number | undefined;
|
|
4639
4757
|
/**
|
|
4640
4758
|
* <p>The ReportDevStatusBattery value.</p>
|
|
4641
4759
|
* @public
|
|
4642
4760
|
*/
|
|
4643
|
-
ReportDevStatusBattery?: boolean;
|
|
4761
|
+
ReportDevStatusBattery?: boolean | undefined;
|
|
4644
4762
|
/**
|
|
4645
4763
|
* <p>The ReportDevStatusMargin value.</p>
|
|
4646
4764
|
* @public
|
|
4647
4765
|
*/
|
|
4648
|
-
ReportDevStatusMargin?: boolean;
|
|
4766
|
+
ReportDevStatusMargin?: boolean | undefined;
|
|
4649
4767
|
/**
|
|
4650
4768
|
* <p>The DRMin value.</p>
|
|
4651
4769
|
* @public
|
|
4652
4770
|
*/
|
|
4653
|
-
DrMin?: number;
|
|
4771
|
+
DrMin?: number | undefined;
|
|
4654
4772
|
/**
|
|
4655
4773
|
* <p>The DRMax value.</p>
|
|
4656
4774
|
* @public
|
|
4657
4775
|
*/
|
|
4658
|
-
DrMax?: number;
|
|
4776
|
+
DrMax?: number | undefined;
|
|
4659
4777
|
/**
|
|
4660
4778
|
* <p>The ChannelMask value.</p>
|
|
4661
4779
|
* @public
|
|
4662
4780
|
*/
|
|
4663
|
-
ChannelMask?: string;
|
|
4781
|
+
ChannelMask?: string | undefined;
|
|
4664
4782
|
/**
|
|
4665
4783
|
* <p>The PRAllowed value that describes whether passive roaming is allowed.</p>
|
|
4666
4784
|
* @public
|
|
4667
4785
|
*/
|
|
4668
|
-
PrAllowed?: boolean;
|
|
4786
|
+
PrAllowed?: boolean | undefined;
|
|
4669
4787
|
/**
|
|
4670
4788
|
* <p>The HRAllowed value that describes whether handover roaming is allowed.</p>
|
|
4671
4789
|
* @public
|
|
4672
4790
|
*/
|
|
4673
|
-
HrAllowed?: boolean;
|
|
4791
|
+
HrAllowed?: boolean | undefined;
|
|
4674
4792
|
/**
|
|
4675
4793
|
* <p>The RAAllowed value that describes whether roaming activation is allowed.</p>
|
|
4676
4794
|
* @public
|
|
4677
4795
|
*/
|
|
4678
|
-
RaAllowed?: boolean;
|
|
4796
|
+
RaAllowed?: boolean | undefined;
|
|
4679
4797
|
/**
|
|
4680
4798
|
* <p>The NwkGeoLoc value.</p>
|
|
4681
4799
|
* @public
|
|
4682
4800
|
*/
|
|
4683
|
-
NwkGeoLoc?: boolean;
|
|
4801
|
+
NwkGeoLoc?: boolean | undefined;
|
|
4684
4802
|
/**
|
|
4685
4803
|
* <p>The TargetPER value.</p>
|
|
4686
4804
|
* @public
|
|
4687
4805
|
*/
|
|
4688
|
-
TargetPer?: number;
|
|
4806
|
+
TargetPer?: number | undefined;
|
|
4689
4807
|
/**
|
|
4690
4808
|
* <p>The MinGwDiversity value.</p>
|
|
4691
4809
|
* @public
|
|
4692
4810
|
*/
|
|
4693
|
-
MinGwDiversity?: number;
|
|
4811
|
+
MinGwDiversity?: number | undefined;
|
|
4694
4812
|
}
|
|
4695
4813
|
/**
|
|
4696
4814
|
* @public
|
|
@@ -4700,22 +4818,22 @@ export interface GetServiceProfileResponse {
|
|
|
4700
4818
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
4701
4819
|
* @public
|
|
4702
4820
|
*/
|
|
4703
|
-
Arn?: string;
|
|
4821
|
+
Arn?: string | undefined;
|
|
4704
4822
|
/**
|
|
4705
4823
|
* <p>The name of the resource.</p>
|
|
4706
4824
|
* @public
|
|
4707
4825
|
*/
|
|
4708
|
-
Name?: string;
|
|
4826
|
+
Name?: string | undefined;
|
|
4709
4827
|
/**
|
|
4710
4828
|
* <p>The ID of the service profile.</p>
|
|
4711
4829
|
* @public
|
|
4712
4830
|
*/
|
|
4713
|
-
Id?: string;
|
|
4831
|
+
Id?: string | undefined;
|
|
4714
4832
|
/**
|
|
4715
4833
|
* <p>Information about the service profile.</p>
|
|
4716
4834
|
* @public
|
|
4717
4835
|
*/
|
|
4718
|
-
LoRaWAN?: LoRaWANGetServiceProfileInfo;
|
|
4836
|
+
LoRaWAN?: LoRaWANGetServiceProfileInfo | undefined;
|
|
4719
4837
|
}
|
|
4720
4838
|
/**
|
|
4721
4839
|
* @public
|
|
@@ -4769,42 +4887,42 @@ export interface SidewalkDevice {
|
|
|
4769
4887
|
* <p>The Sidewalk Amazon ID.</p>
|
|
4770
4888
|
* @public
|
|
4771
4889
|
*/
|
|
4772
|
-
AmazonId?: string;
|
|
4890
|
+
AmazonId?: string | undefined;
|
|
4773
4891
|
/**
|
|
4774
4892
|
* <p>The sidewalk device identification.</p>
|
|
4775
4893
|
* @public
|
|
4776
4894
|
*/
|
|
4777
|
-
SidewalkId?: string;
|
|
4895
|
+
SidewalkId?: string | undefined;
|
|
4778
4896
|
/**
|
|
4779
4897
|
* <p>The Sidewalk manufacturing series number.</p>
|
|
4780
4898
|
* @public
|
|
4781
4899
|
*/
|
|
4782
|
-
SidewalkManufacturingSn?: string;
|
|
4900
|
+
SidewalkManufacturingSn?: string | undefined;
|
|
4783
4901
|
/**
|
|
4784
4902
|
* <p>The sidewalk device certificates for Ed25519 and P256r1.</p>
|
|
4785
4903
|
* @public
|
|
4786
4904
|
*/
|
|
4787
|
-
DeviceCertificates?: CertificateList[];
|
|
4905
|
+
DeviceCertificates?: CertificateList[] | undefined;
|
|
4788
4906
|
/**
|
|
4789
4907
|
* <p>The Sidewalk device private keys that will be used for onboarding the device.</p>
|
|
4790
4908
|
* @public
|
|
4791
4909
|
*/
|
|
4792
|
-
PrivateKeys?: CertificateList[];
|
|
4910
|
+
PrivateKeys?: CertificateList[] | undefined;
|
|
4793
4911
|
/**
|
|
4794
4912
|
* <p>The ID of the Sidewalk device profile.</p>
|
|
4795
4913
|
* @public
|
|
4796
4914
|
*/
|
|
4797
|
-
DeviceProfileId?: string;
|
|
4915
|
+
DeviceProfileId?: string | undefined;
|
|
4798
4916
|
/**
|
|
4799
4917
|
* <p>The ID of the Sidewalk device profile.</p>
|
|
4800
4918
|
* @public
|
|
4801
4919
|
*/
|
|
4802
|
-
CertificateId?: string;
|
|
4920
|
+
CertificateId?: string | undefined;
|
|
4803
4921
|
/**
|
|
4804
4922
|
* <p>The Sidewalk device status, such as provisioned or registered.</p>
|
|
4805
4923
|
* @public
|
|
4806
4924
|
*/
|
|
4807
|
-
Status?: WirelessDeviceSidewalkStatus;
|
|
4925
|
+
Status?: WirelessDeviceSidewalkStatus | undefined;
|
|
4808
4926
|
}
|
|
4809
4927
|
/**
|
|
4810
4928
|
* @public
|
|
@@ -4814,59 +4932,59 @@ export interface GetWirelessDeviceResponse {
|
|
|
4814
4932
|
* <p>The wireless device type.</p>
|
|
4815
4933
|
* @public
|
|
4816
4934
|
*/
|
|
4817
|
-
Type?: WirelessDeviceType;
|
|
4935
|
+
Type?: WirelessDeviceType | undefined;
|
|
4818
4936
|
/**
|
|
4819
4937
|
* <p>The name of the resource.</p>
|
|
4820
4938
|
* @public
|
|
4821
4939
|
*/
|
|
4822
|
-
Name?: string;
|
|
4940
|
+
Name?: string | undefined;
|
|
4823
4941
|
/**
|
|
4824
4942
|
* <p>The description of the resource.</p>
|
|
4825
4943
|
* @public
|
|
4826
4944
|
*/
|
|
4827
|
-
Description?: string;
|
|
4945
|
+
Description?: string | undefined;
|
|
4828
4946
|
/**
|
|
4829
4947
|
* <p>The name of the destination to which the device is assigned.</p>
|
|
4830
4948
|
* @public
|
|
4831
4949
|
*/
|
|
4832
|
-
DestinationName?: string;
|
|
4950
|
+
DestinationName?: string | undefined;
|
|
4833
4951
|
/**
|
|
4834
4952
|
* <p>The ID of the wireless device.</p>
|
|
4835
4953
|
* @public
|
|
4836
4954
|
*/
|
|
4837
|
-
Id?: string;
|
|
4955
|
+
Id?: string | undefined;
|
|
4838
4956
|
/**
|
|
4839
4957
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
4840
4958
|
* @public
|
|
4841
4959
|
*/
|
|
4842
|
-
Arn?: string;
|
|
4960
|
+
Arn?: string | undefined;
|
|
4843
4961
|
/**
|
|
4844
4962
|
* <p>The name of the thing associated with the wireless device. The value is empty if a
|
|
4845
4963
|
* thing isn't associated with the device.</p>
|
|
4846
4964
|
* @public
|
|
4847
4965
|
*/
|
|
4848
|
-
ThingName?: string;
|
|
4966
|
+
ThingName?: string | undefined;
|
|
4849
4967
|
/**
|
|
4850
4968
|
* <p>The ARN of the thing associated with the wireless device.</p>
|
|
4851
4969
|
* @public
|
|
4852
4970
|
*/
|
|
4853
|
-
ThingArn?: string;
|
|
4971
|
+
ThingArn?: string | undefined;
|
|
4854
4972
|
/**
|
|
4855
4973
|
* <p>Information about the wireless device.</p>
|
|
4856
4974
|
* @public
|
|
4857
4975
|
*/
|
|
4858
|
-
LoRaWAN?: LoRaWANDevice;
|
|
4976
|
+
LoRaWAN?: LoRaWANDevice | undefined;
|
|
4859
4977
|
/**
|
|
4860
4978
|
* <p>Sidewalk device object.</p>
|
|
4861
4979
|
* @public
|
|
4862
4980
|
*/
|
|
4863
|
-
Sidewalk?: SidewalkDevice;
|
|
4981
|
+
Sidewalk?: SidewalkDevice | undefined;
|
|
4864
4982
|
/**
|
|
4865
4983
|
* <p>FPort values for the GNSS, stream, and ClockSync functions of the positioning
|
|
4866
4984
|
* information.</p>
|
|
4867
4985
|
* @public
|
|
4868
4986
|
*/
|
|
4869
|
-
Positioning?: PositioningConfigStatus;
|
|
4987
|
+
Positioning?: PositioningConfigStatus | undefined;
|
|
4870
4988
|
}
|
|
4871
4989
|
/**
|
|
4872
4990
|
* @public
|
|
@@ -4888,13 +5006,13 @@ export interface SidewalkGetStartImportInfo {
|
|
|
4888
5006
|
* <p>List of Sidewalk devices that are added to the import task.</p>
|
|
4889
5007
|
* @public
|
|
4890
5008
|
*/
|
|
4891
|
-
DeviceCreationFileList?: string[];
|
|
5009
|
+
DeviceCreationFileList?: string[] | undefined;
|
|
4892
5010
|
/**
|
|
4893
5011
|
* <p>The IAM role that allows AWS IoT Wireless to access the CSV file in the S3
|
|
4894
5012
|
* bucket.</p>
|
|
4895
5013
|
* @public
|
|
4896
5014
|
*/
|
|
4897
|
-
Role?: string;
|
|
5015
|
+
Role?: string | undefined;
|
|
4898
5016
|
}
|
|
4899
5017
|
/**
|
|
4900
5018
|
* @public
|
|
@@ -4920,63 +5038,63 @@ export interface GetWirelessDeviceImportTaskResponse {
|
|
|
4920
5038
|
* <p>The identifier of the import task for which information is retrieved.</p>
|
|
4921
5039
|
* @public
|
|
4922
5040
|
*/
|
|
4923
|
-
Id?: string;
|
|
5041
|
+
Id?: string | undefined;
|
|
4924
5042
|
/**
|
|
4925
5043
|
* <p>The ARN (Amazon Resource Name) of the import task.</p>
|
|
4926
5044
|
* @public
|
|
4927
5045
|
*/
|
|
4928
|
-
Arn?: string;
|
|
5046
|
+
Arn?: string | undefined;
|
|
4929
5047
|
/**
|
|
4930
5048
|
* <p>The name of the destination that's assigned to the wireless devices in the import
|
|
4931
5049
|
* task.</p>
|
|
4932
5050
|
* @public
|
|
4933
5051
|
*/
|
|
4934
|
-
DestinationName?: string;
|
|
5052
|
+
DestinationName?: string | undefined;
|
|
4935
5053
|
/**
|
|
4936
5054
|
* <p>The Sidewalk-related information about an import task.</p>
|
|
4937
5055
|
* @public
|
|
4938
5056
|
*/
|
|
4939
|
-
Sidewalk?: SidewalkGetStartImportInfo;
|
|
5057
|
+
Sidewalk?: SidewalkGetStartImportInfo | undefined;
|
|
4940
5058
|
/**
|
|
4941
5059
|
* <p>The time at which the import task was created.</p>
|
|
4942
5060
|
* @public
|
|
4943
5061
|
*/
|
|
4944
|
-
CreationTime?: Date;
|
|
5062
|
+
CreationTime?: Date | undefined;
|
|
4945
5063
|
/**
|
|
4946
5064
|
* <p>The import task status.</p>
|
|
4947
5065
|
* @public
|
|
4948
5066
|
*/
|
|
4949
|
-
Status?: ImportTaskStatus;
|
|
5067
|
+
Status?: ImportTaskStatus | undefined;
|
|
4950
5068
|
/**
|
|
4951
5069
|
* <p>The reason for the provided status information, such as a validation error that causes
|
|
4952
5070
|
* the import task to fail.</p>
|
|
4953
5071
|
* @public
|
|
4954
5072
|
*/
|
|
4955
|
-
StatusReason?: string;
|
|
5073
|
+
StatusReason?: string | undefined;
|
|
4956
5074
|
/**
|
|
4957
5075
|
* <p>The number of devices in the import task that are waiting for the control log to start
|
|
4958
5076
|
* processing.</p>
|
|
4959
5077
|
* @public
|
|
4960
5078
|
*/
|
|
4961
|
-
InitializedImportedDeviceCount?: number;
|
|
5079
|
+
InitializedImportedDeviceCount?: number | undefined;
|
|
4962
5080
|
/**
|
|
4963
5081
|
* <p>The number of devices in the import task that are waiting in the import task queue to
|
|
4964
5082
|
* be onboarded.</p>
|
|
4965
5083
|
* @public
|
|
4966
5084
|
*/
|
|
4967
|
-
PendingImportedDeviceCount?: number;
|
|
5085
|
+
PendingImportedDeviceCount?: number | undefined;
|
|
4968
5086
|
/**
|
|
4969
5087
|
* <p>The number of devices in the import task that have been onboarded to the import
|
|
4970
5088
|
* task.</p>
|
|
4971
5089
|
* @public
|
|
4972
5090
|
*/
|
|
4973
|
-
OnboardedImportedDeviceCount?: number;
|
|
5091
|
+
OnboardedImportedDeviceCount?: number | undefined;
|
|
4974
5092
|
/**
|
|
4975
5093
|
* <p>The number of devices in the import task that failed to onboard to the import
|
|
4976
5094
|
* task.</p>
|
|
4977
5095
|
* @public
|
|
4978
5096
|
*/
|
|
4979
|
-
FailedImportedDeviceCount?: number;
|
|
5097
|
+
FailedImportedDeviceCount?: number | undefined;
|
|
4980
5098
|
}
|
|
4981
5099
|
/**
|
|
4982
5100
|
* @public
|
|
@@ -4997,17 +5115,17 @@ export interface LoRaWANGatewayMetadata {
|
|
|
4997
5115
|
* <p>The gateway's EUI value.</p>
|
|
4998
5116
|
* @public
|
|
4999
5117
|
*/
|
|
5000
|
-
GatewayEui?: string;
|
|
5118
|
+
GatewayEui?: string | undefined;
|
|
5001
5119
|
/**
|
|
5002
5120
|
* <p>The SNR value.</p>
|
|
5003
5121
|
* @public
|
|
5004
5122
|
*/
|
|
5005
|
-
Snr?: number;
|
|
5123
|
+
Snr?: number | undefined;
|
|
5006
5124
|
/**
|
|
5007
5125
|
* <p>The RSSI value.</p>
|
|
5008
5126
|
* @public
|
|
5009
5127
|
*/
|
|
5010
|
-
Rssi?: number;
|
|
5128
|
+
Rssi?: number | undefined;
|
|
5011
5129
|
}
|
|
5012
5130
|
/**
|
|
5013
5131
|
* <p>LoRaWAN public gateway metadata.</p>
|
|
@@ -5018,32 +5136,32 @@ export interface LoRaWANPublicGatewayMetadata {
|
|
|
5018
5136
|
* <p>The ID of the LoRaWAN public network provider.</p>
|
|
5019
5137
|
* @public
|
|
5020
5138
|
*/
|
|
5021
|
-
ProviderNetId?: string;
|
|
5139
|
+
ProviderNetId?: string | undefined;
|
|
5022
5140
|
/**
|
|
5023
5141
|
* <p>The ID of the gateways that are operated by the network provider.</p>
|
|
5024
5142
|
* @public
|
|
5025
5143
|
*/
|
|
5026
|
-
Id?: string;
|
|
5144
|
+
Id?: string | undefined;
|
|
5027
5145
|
/**
|
|
5028
5146
|
* <p>The RSSI (received signal strength indicator) value.</p>
|
|
5029
5147
|
* @public
|
|
5030
5148
|
*/
|
|
5031
|
-
Rssi?: number;
|
|
5149
|
+
Rssi?: number | undefined;
|
|
5032
5150
|
/**
|
|
5033
5151
|
* <p>The SNR (signal to noise ratio) value.</p>
|
|
5034
5152
|
* @public
|
|
5035
5153
|
*/
|
|
5036
|
-
Snr?: number;
|
|
5154
|
+
Snr?: number | undefined;
|
|
5037
5155
|
/**
|
|
5038
5156
|
* <p>The frequency band (RFRegion) value.</p>
|
|
5039
5157
|
* @public
|
|
5040
5158
|
*/
|
|
5041
|
-
RfRegion?: string;
|
|
5159
|
+
RfRegion?: string | undefined;
|
|
5042
5160
|
/**
|
|
5043
5161
|
* <p>Boolean that indicates whether downlink is allowed using the network.</p>
|
|
5044
5162
|
* @public
|
|
5045
5163
|
*/
|
|
5046
|
-
DlAllowed?: boolean;
|
|
5164
|
+
DlAllowed?: boolean | undefined;
|
|
5047
5165
|
}
|
|
5048
5166
|
/**
|
|
5049
5167
|
* <p>LoRaWAN device metatdata.</p>
|
|
@@ -5054,37 +5172,37 @@ export interface LoRaWANDeviceMetadata {
|
|
|
5054
5172
|
* <p>The DevEUI value.</p>
|
|
5055
5173
|
* @public
|
|
5056
5174
|
*/
|
|
5057
|
-
DevEui?: string;
|
|
5175
|
+
DevEui?: string | undefined;
|
|
5058
5176
|
/**
|
|
5059
5177
|
* <p>The FPort value.</p>
|
|
5060
5178
|
* @public
|
|
5061
5179
|
*/
|
|
5062
|
-
FPort?: number;
|
|
5180
|
+
FPort?: number | undefined;
|
|
5063
5181
|
/**
|
|
5064
5182
|
* <p>The DataRate value.</p>
|
|
5065
5183
|
* @public
|
|
5066
5184
|
*/
|
|
5067
|
-
DataRate?: number;
|
|
5185
|
+
DataRate?: number | undefined;
|
|
5068
5186
|
/**
|
|
5069
5187
|
* <p>The device's channel frequency in Hz.</p>
|
|
5070
5188
|
* @public
|
|
5071
5189
|
*/
|
|
5072
|
-
Frequency?: number;
|
|
5190
|
+
Frequency?: number | undefined;
|
|
5073
5191
|
/**
|
|
5074
5192
|
* <p>The date and time of the metadata.</p>
|
|
5075
5193
|
* @public
|
|
5076
5194
|
*/
|
|
5077
|
-
Timestamp?: string;
|
|
5195
|
+
Timestamp?: string | undefined;
|
|
5078
5196
|
/**
|
|
5079
5197
|
* <p>Information about the gateways accessed by the device.</p>
|
|
5080
5198
|
* @public
|
|
5081
5199
|
*/
|
|
5082
|
-
Gateways?: LoRaWANGatewayMetadata[];
|
|
5200
|
+
Gateways?: LoRaWANGatewayMetadata[] | undefined;
|
|
5083
5201
|
/**
|
|
5084
5202
|
* <p>Information about the LoRaWAN public network accessed by the device.</p>
|
|
5085
5203
|
* @public
|
|
5086
5204
|
*/
|
|
5087
|
-
PublicGateways?: LoRaWANPublicGatewayMetadata[];
|
|
5205
|
+
PublicGateways?: LoRaWANPublicGatewayMetadata[] | undefined;
|
|
5088
5206
|
}
|
|
5089
5207
|
/**
|
|
5090
5208
|
* <p>MetaData for Sidewalk device.</p>
|
|
@@ -5095,22 +5213,22 @@ export interface SidewalkDeviceMetadata {
|
|
|
5095
5213
|
* <p>The RSSI value.</p>
|
|
5096
5214
|
* @public
|
|
5097
5215
|
*/
|
|
5098
|
-
Rssi?: number;
|
|
5216
|
+
Rssi?: number | undefined;
|
|
5099
5217
|
/**
|
|
5100
5218
|
* <p>Sidewalk device battery level.</p>
|
|
5101
5219
|
* @public
|
|
5102
5220
|
*/
|
|
5103
|
-
BatteryLevel?: BatteryLevel;
|
|
5221
|
+
BatteryLevel?: BatteryLevel | undefined;
|
|
5104
5222
|
/**
|
|
5105
5223
|
* <p>Sidewalk device status notification.</p>
|
|
5106
5224
|
* @public
|
|
5107
5225
|
*/
|
|
5108
|
-
Event?: Event;
|
|
5226
|
+
Event?: Event | undefined;
|
|
5109
5227
|
/**
|
|
5110
5228
|
* <p>Device state defines the device status of sidewalk device.</p>
|
|
5111
5229
|
* @public
|
|
5112
5230
|
*/
|
|
5113
|
-
DeviceState?: DeviceState;
|
|
5231
|
+
DeviceState?: DeviceState | undefined;
|
|
5114
5232
|
}
|
|
5115
5233
|
/**
|
|
5116
5234
|
* @public
|
|
@@ -5120,7 +5238,7 @@ export interface GetWirelessDeviceStatisticsResponse {
|
|
|
5120
5238
|
* <p>The ID of the wireless device.</p>
|
|
5121
5239
|
* @public
|
|
5122
5240
|
*/
|
|
5123
|
-
WirelessDeviceId?: string;
|
|
5241
|
+
WirelessDeviceId?: string | undefined;
|
|
5124
5242
|
/**
|
|
5125
5243
|
* <p>The date and time when the most recent uplink was received.</p>
|
|
5126
5244
|
* <note>
|
|
@@ -5128,17 +5246,17 @@ export interface GetWirelessDeviceStatisticsResponse {
|
|
|
5128
5246
|
* </note>
|
|
5129
5247
|
* @public
|
|
5130
5248
|
*/
|
|
5131
|
-
LastUplinkReceivedAt?: string;
|
|
5249
|
+
LastUplinkReceivedAt?: string | undefined;
|
|
5132
5250
|
/**
|
|
5133
5251
|
* <p>Information about the wireless device's operations.</p>
|
|
5134
5252
|
* @public
|
|
5135
5253
|
*/
|
|
5136
|
-
LoRaWAN?: LoRaWANDeviceMetadata;
|
|
5254
|
+
LoRaWAN?: LoRaWANDeviceMetadata | undefined;
|
|
5137
5255
|
/**
|
|
5138
5256
|
* <p>MetaData for Sidewalk device.</p>
|
|
5139
5257
|
* @public
|
|
5140
5258
|
*/
|
|
5141
|
-
Sidewalk?: SidewalkDeviceMetadata;
|
|
5259
|
+
Sidewalk?: SidewalkDeviceMetadata | undefined;
|
|
5142
5260
|
}
|
|
5143
5261
|
/**
|
|
5144
5262
|
* @public
|
|
@@ -5176,38 +5294,38 @@ export interface GetWirelessGatewayResponse {
|
|
|
5176
5294
|
* <p>The name of the resource.</p>
|
|
5177
5295
|
* @public
|
|
5178
5296
|
*/
|
|
5179
|
-
Name?: string;
|
|
5297
|
+
Name?: string | undefined;
|
|
5180
5298
|
/**
|
|
5181
5299
|
* <p>The ID of the wireless gateway.</p>
|
|
5182
5300
|
* @public
|
|
5183
5301
|
*/
|
|
5184
|
-
Id?: string;
|
|
5302
|
+
Id?: string | undefined;
|
|
5185
5303
|
/**
|
|
5186
5304
|
* <p>The description of the resource.</p>
|
|
5187
5305
|
* @public
|
|
5188
5306
|
*/
|
|
5189
|
-
Description?: string;
|
|
5307
|
+
Description?: string | undefined;
|
|
5190
5308
|
/**
|
|
5191
5309
|
* <p>Information about the wireless gateway.</p>
|
|
5192
5310
|
* @public
|
|
5193
5311
|
*/
|
|
5194
|
-
LoRaWAN?: LoRaWANGateway;
|
|
5312
|
+
LoRaWAN?: LoRaWANGateway | undefined;
|
|
5195
5313
|
/**
|
|
5196
5314
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
5197
5315
|
* @public
|
|
5198
5316
|
*/
|
|
5199
|
-
Arn?: string;
|
|
5317
|
+
Arn?: string | undefined;
|
|
5200
5318
|
/**
|
|
5201
5319
|
* <p>The name of the thing associated with the wireless gateway. The value is empty if a
|
|
5202
5320
|
* thing isn't associated with the gateway.</p>
|
|
5203
5321
|
* @public
|
|
5204
5322
|
*/
|
|
5205
|
-
ThingName?: string;
|
|
5323
|
+
ThingName?: string | undefined;
|
|
5206
5324
|
/**
|
|
5207
5325
|
* <p>The ARN of the thing associated with the wireless gateway.</p>
|
|
5208
5326
|
* @public
|
|
5209
5327
|
*/
|
|
5210
|
-
ThingArn?: string;
|
|
5328
|
+
ThingArn?: string | undefined;
|
|
5211
5329
|
}
|
|
5212
5330
|
/**
|
|
5213
5331
|
* @public
|
|
@@ -5227,13 +5345,13 @@ export interface GetWirelessGatewayCertificateResponse {
|
|
|
5227
5345
|
* <p>The ID of the certificate associated with the wireless gateway.</p>
|
|
5228
5346
|
* @public
|
|
5229
5347
|
*/
|
|
5230
|
-
IotCertificateId?: string;
|
|
5348
|
+
IotCertificateId?: string | undefined;
|
|
5231
5349
|
/**
|
|
5232
5350
|
* <p>The ID of the certificate that is associated with the wireless gateway and used for
|
|
5233
5351
|
* the LoRaWANNetworkServer endpoint.</p>
|
|
5234
5352
|
* @public
|
|
5235
5353
|
*/
|
|
5236
|
-
LoRaWANNetworkServerCertificateId?: string;
|
|
5354
|
+
LoRaWANNetworkServerCertificateId?: string | undefined;
|
|
5237
5355
|
}
|
|
5238
5356
|
/**
|
|
5239
5357
|
* @public
|
|
@@ -5254,7 +5372,7 @@ export interface LoRaWANGatewayCurrentVersion {
|
|
|
5254
5372
|
* <p>The version of the gateways that should receive the update.</p>
|
|
5255
5373
|
* @public
|
|
5256
5374
|
*/
|
|
5257
|
-
CurrentVersion?: LoRaWANGatewayVersion;
|
|
5375
|
+
CurrentVersion?: LoRaWANGatewayVersion | undefined;
|
|
5258
5376
|
}
|
|
5259
5377
|
/**
|
|
5260
5378
|
* @public
|
|
@@ -5264,7 +5382,7 @@ export interface GetWirelessGatewayFirmwareInformationResponse {
|
|
|
5264
5382
|
* <p>Information about the wireless gateway's firmware.</p>
|
|
5265
5383
|
* @public
|
|
5266
5384
|
*/
|
|
5267
|
-
LoRaWAN?: LoRaWANGatewayCurrentVersion;
|
|
5385
|
+
LoRaWAN?: LoRaWANGatewayCurrentVersion | undefined;
|
|
5268
5386
|
}
|
|
5269
5387
|
/**
|
|
5270
5388
|
* @public
|
|
@@ -5284,7 +5402,7 @@ export interface GetWirelessGatewayStatisticsResponse {
|
|
|
5284
5402
|
* <p>The ID of the wireless gateway.</p>
|
|
5285
5403
|
* @public
|
|
5286
5404
|
*/
|
|
5287
|
-
WirelessGatewayId?: string;
|
|
5405
|
+
WirelessGatewayId?: string | undefined;
|
|
5288
5406
|
/**
|
|
5289
5407
|
* <p>The date and time when the most recent uplink was received.</p>
|
|
5290
5408
|
* <note>
|
|
@@ -5292,12 +5410,12 @@ export interface GetWirelessGatewayStatisticsResponse {
|
|
|
5292
5410
|
* </note>
|
|
5293
5411
|
* @public
|
|
5294
5412
|
*/
|
|
5295
|
-
LastUplinkReceivedAt?: string;
|
|
5413
|
+
LastUplinkReceivedAt?: string | undefined;
|
|
5296
5414
|
/**
|
|
5297
5415
|
* <p>The connection status of the wireless gateway.</p>
|
|
5298
5416
|
* @public
|
|
5299
5417
|
*/
|
|
5300
|
-
ConnectionStatus?: ConnectionStatus;
|
|
5418
|
+
ConnectionStatus?: ConnectionStatus | undefined;
|
|
5301
5419
|
}
|
|
5302
5420
|
/**
|
|
5303
5421
|
* @public
|
|
@@ -5317,12 +5435,12 @@ export interface GetWirelessGatewayTaskResponse {
|
|
|
5317
5435
|
* <p>The ID of the wireless gateway.</p>
|
|
5318
5436
|
* @public
|
|
5319
5437
|
*/
|
|
5320
|
-
WirelessGatewayId?: string;
|
|
5438
|
+
WirelessGatewayId?: string | undefined;
|
|
5321
5439
|
/**
|
|
5322
5440
|
* <p>The ID of the WirelessGatewayTask.</p>
|
|
5323
5441
|
* @public
|
|
5324
5442
|
*/
|
|
5325
|
-
WirelessGatewayTaskDefinitionId?: string;
|
|
5443
|
+
WirelessGatewayTaskDefinitionId?: string | undefined;
|
|
5326
5444
|
/**
|
|
5327
5445
|
* <p>The date and time when the most recent uplink was received.</p>
|
|
5328
5446
|
* <note>
|
|
@@ -5330,17 +5448,17 @@ export interface GetWirelessGatewayTaskResponse {
|
|
|
5330
5448
|
* </note>
|
|
5331
5449
|
* @public
|
|
5332
5450
|
*/
|
|
5333
|
-
LastUplinkReceivedAt?: string;
|
|
5451
|
+
LastUplinkReceivedAt?: string | undefined;
|
|
5334
5452
|
/**
|
|
5335
5453
|
* <p>The date and time when the task was created.</p>
|
|
5336
5454
|
* @public
|
|
5337
5455
|
*/
|
|
5338
|
-
TaskCreatedAt?: string;
|
|
5456
|
+
TaskCreatedAt?: string | undefined;
|
|
5339
5457
|
/**
|
|
5340
5458
|
* <p>The status of the request.</p>
|
|
5341
5459
|
* @public
|
|
5342
5460
|
*/
|
|
5343
|
-
Status?: WirelessGatewayTaskStatus;
|
|
5461
|
+
Status?: WirelessGatewayTaskStatus | undefined;
|
|
5344
5462
|
}
|
|
5345
5463
|
/**
|
|
5346
5464
|
* @public
|
|
@@ -5362,22 +5480,22 @@ export interface GetWirelessGatewayTaskDefinitionResponse {
|
|
|
5362
5480
|
* calling <code>CreateWirelessGatewayTask</code>.</p>
|
|
5363
5481
|
* @public
|
|
5364
5482
|
*/
|
|
5365
|
-
AutoCreateTasks?: boolean;
|
|
5483
|
+
AutoCreateTasks?: boolean | undefined;
|
|
5366
5484
|
/**
|
|
5367
5485
|
* <p>The name of the resource.</p>
|
|
5368
5486
|
* @public
|
|
5369
5487
|
*/
|
|
5370
|
-
Name?: string;
|
|
5488
|
+
Name?: string | undefined;
|
|
5371
5489
|
/**
|
|
5372
5490
|
* <p>Information about the gateways to update.</p>
|
|
5373
5491
|
* @public
|
|
5374
5492
|
*/
|
|
5375
|
-
Update?: UpdateWirelessGatewayTaskCreate;
|
|
5493
|
+
Update?: UpdateWirelessGatewayTaskCreate | undefined;
|
|
5376
5494
|
/**
|
|
5377
5495
|
* <p>The Amazon Resource Name of the resource.</p>
|
|
5378
5496
|
* @public
|
|
5379
5497
|
*/
|
|
5380
|
-
Arn?: string;
|
|
5498
|
+
Arn?: string | undefined;
|
|
5381
5499
|
}
|
|
5382
5500
|
/**
|
|
5383
5501
|
* @public
|
|
@@ -5402,22 +5520,22 @@ export interface ImportedSidewalkDevice {
|
|
|
5402
5520
|
* <p>The Sidewalk manufacturing serial number (SMSN) of the Sidewalk device.</p>
|
|
5403
5521
|
* @public
|
|
5404
5522
|
*/
|
|
5405
|
-
SidewalkManufacturingSn?: string;
|
|
5523
|
+
SidewalkManufacturingSn?: string | undefined;
|
|
5406
5524
|
/**
|
|
5407
5525
|
* <p>The onboarding status of the Sidewalk device in the import task.</p>
|
|
5408
5526
|
* @public
|
|
5409
5527
|
*/
|
|
5410
|
-
OnboardingStatus?: OnboardStatus;
|
|
5528
|
+
OnboardingStatus?: OnboardStatus | undefined;
|
|
5411
5529
|
/**
|
|
5412
5530
|
* <p>The reason for the onboarding status information for the Sidewalk device.</p>
|
|
5413
5531
|
* @public
|
|
5414
5532
|
*/
|
|
5415
|
-
OnboardingStatusReason?: string;
|
|
5533
|
+
OnboardingStatusReason?: string | undefined;
|
|
5416
5534
|
/**
|
|
5417
5535
|
* <p>The time at which the status information was last updated.</p>
|
|
5418
5536
|
* @public
|
|
5419
5537
|
*/
|
|
5420
|
-
LastUpdateTime?: Date;
|
|
5538
|
+
LastUpdateTime?: Date | undefined;
|
|
5421
5539
|
}
|
|
5422
5540
|
/**
|
|
5423
5541
|
* <p>Information about a wireless device that has been added to an import task.</p>
|
|
@@ -5429,7 +5547,7 @@ export interface ImportedWirelessDevice {
|
|
|
5429
5547
|
* task.</p>
|
|
5430
5548
|
* @public
|
|
5431
5549
|
*/
|
|
5432
|
-
Sidewalk?: ImportedSidewalkDevice;
|
|
5550
|
+
Sidewalk?: ImportedSidewalkDevice | undefined;
|
|
5433
5551
|
}
|
|
5434
5552
|
/**
|
|
5435
5553
|
* @public
|
|
@@ -5439,14 +5557,14 @@ export interface ListDestinationsRequest {
|
|
|
5439
5557
|
* <p>The maximum number of results to return in this operation.</p>
|
|
5440
5558
|
* @public
|
|
5441
5559
|
*/
|
|
5442
|
-
MaxResults?: number;
|
|
5560
|
+
MaxResults?: number | undefined;
|
|
5443
5561
|
/**
|
|
5444
5562
|
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5445
5563
|
* response; otherwise <b>null</b> to receive the first set of
|
|
5446
5564
|
* results.</p>
|
|
5447
5565
|
* @public
|
|
5448
5566
|
*/
|
|
5449
|
-
NextToken?: string;
|
|
5567
|
+
NextToken?: string | undefined;
|
|
5450
5568
|
}
|
|
5451
5569
|
/**
|
|
5452
5570
|
* @public
|
|
@@ -5456,12 +5574,12 @@ export interface ListDestinationsResponse {
|
|
|
5456
5574
|
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5457
5575
|
* @public
|
|
5458
5576
|
*/
|
|
5459
|
-
NextToken?: string;
|
|
5577
|
+
NextToken?: string | undefined;
|
|
5460
5578
|
/**
|
|
5461
5579
|
* <p>The list of destinations.</p>
|
|
5462
5580
|
* @public
|
|
5463
5581
|
*/
|
|
5464
|
-
DestinationList?: Destinations[];
|
|
5582
|
+
DestinationList?: Destinations[] | undefined;
|
|
5465
5583
|
}
|
|
5466
5584
|
/**
|
|
5467
5585
|
* @public
|
|
@@ -5473,18 +5591,18 @@ export interface ListDeviceProfilesRequest {
|
|
|
5473
5591
|
* results.</p>
|
|
5474
5592
|
* @public
|
|
5475
5593
|
*/
|
|
5476
|
-
NextToken?: string;
|
|
5594
|
+
NextToken?: string | undefined;
|
|
5477
5595
|
/**
|
|
5478
5596
|
* <p>The maximum number of results to return in this operation.</p>
|
|
5479
5597
|
* @public
|
|
5480
5598
|
*/
|
|
5481
|
-
MaxResults?: number;
|
|
5599
|
+
MaxResults?: number | undefined;
|
|
5482
5600
|
/**
|
|
5483
5601
|
* <p>A filter to list only device profiles that use this type, which can be
|
|
5484
5602
|
* <code>LoRaWAN</code> or <code>Sidewalk</code>.</p>
|
|
5485
5603
|
* @public
|
|
5486
5604
|
*/
|
|
5487
|
-
DeviceProfileType?: DeviceProfileType;
|
|
5605
|
+
DeviceProfileType?: DeviceProfileType | undefined;
|
|
5488
5606
|
}
|
|
5489
5607
|
/**
|
|
5490
5608
|
* @public
|
|
@@ -5494,12 +5612,12 @@ export interface ListDeviceProfilesResponse {
|
|
|
5494
5612
|
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5495
5613
|
* @public
|
|
5496
5614
|
*/
|
|
5497
|
-
NextToken?: string;
|
|
5615
|
+
NextToken?: string | undefined;
|
|
5498
5616
|
/**
|
|
5499
5617
|
* <p>The list of device profiles.</p>
|
|
5500
5618
|
* @public
|
|
5501
5619
|
*/
|
|
5502
|
-
DeviceProfileList?: DeviceProfile[];
|
|
5620
|
+
DeviceProfileList?: DeviceProfile[] | undefined;
|
|
5503
5621
|
}
|
|
5504
5622
|
/**
|
|
5505
5623
|
* @public
|
|
@@ -5514,18 +5632,18 @@ export interface ListDevicesForWirelessDeviceImportTaskRequest {
|
|
|
5514
5632
|
* <p>The maximum number of results to return in this operation.</p>
|
|
5515
5633
|
* @public
|
|
5516
5634
|
*/
|
|
5517
|
-
MaxResults?: number;
|
|
5635
|
+
MaxResults?: number | undefined;
|
|
5518
5636
|
/**
|
|
5519
5637
|
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5520
5638
|
* response; otherwise <code>null</code> to receive the first set of results.</p>
|
|
5521
5639
|
* @public
|
|
5522
5640
|
*/
|
|
5523
|
-
NextToken?: string;
|
|
5641
|
+
NextToken?: string | undefined;
|
|
5524
5642
|
/**
|
|
5525
5643
|
* <p>The status of the devices in the import task.</p>
|
|
5526
5644
|
* @public
|
|
5527
5645
|
*/
|
|
5528
|
-
Status?: OnboardStatus;
|
|
5646
|
+
Status?: OnboardStatus | undefined;
|
|
5529
5647
|
}
|
|
5530
5648
|
/**
|
|
5531
5649
|
* @public
|
|
@@ -5536,18 +5654,18 @@ export interface ListDevicesForWirelessDeviceImportTaskResponse {
|
|
|
5536
5654
|
* additional results.</p>
|
|
5537
5655
|
* @public
|
|
5538
5656
|
*/
|
|
5539
|
-
NextToken?: string;
|
|
5657
|
+
NextToken?: string | undefined;
|
|
5540
5658
|
/**
|
|
5541
5659
|
* <p>The name of the Sidewalk destination that describes the IoT rule to route messages
|
|
5542
5660
|
* received from devices in an import task that are onboarded to AWS IoT Wireless.</p>
|
|
5543
5661
|
* @public
|
|
5544
5662
|
*/
|
|
5545
|
-
DestinationName?: string;
|
|
5663
|
+
DestinationName?: string | undefined;
|
|
5546
5664
|
/**
|
|
5547
5665
|
* <p>List of wireless devices in an import task and their onboarding status.</p>
|
|
5548
5666
|
* @public
|
|
5549
5667
|
*/
|
|
5550
|
-
ImportedWirelessDeviceList?: ImportedWirelessDevice[];
|
|
5668
|
+
ImportedWirelessDeviceList?: ImportedWirelessDevice[] | undefined;
|
|
5551
5669
|
}
|
|
5552
5670
|
/**
|
|
5553
5671
|
* @public
|
|
@@ -5562,14 +5680,14 @@ export interface ListEventConfigurationsRequest {
|
|
|
5562
5680
|
* <p>The maximum number of results to return in this operation.</p>
|
|
5563
5681
|
* @public
|
|
5564
5682
|
*/
|
|
5565
|
-
MaxResults?: number;
|
|
5683
|
+
MaxResults?: number | undefined;
|
|
5566
5684
|
/**
|
|
5567
5685
|
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5568
5686
|
* response; otherwise <b>null</b> to receive the first set of
|
|
5569
5687
|
* results.</p>
|
|
5570
5688
|
* @public
|
|
5571
5689
|
*/
|
|
5572
|
-
NextToken?: string;
|
|
5690
|
+
NextToken?: string | undefined;
|
|
5573
5691
|
}
|
|
5574
5692
|
/**
|
|
5575
5693
|
* @public
|
|
@@ -5581,12 +5699,12 @@ export interface ListEventConfigurationsResponse {
|
|
|
5581
5699
|
* results.</p>
|
|
5582
5700
|
* @public
|
|
5583
5701
|
*/
|
|
5584
|
-
NextToken?: string;
|
|
5702
|
+
NextToken?: string | undefined;
|
|
5585
5703
|
/**
|
|
5586
5704
|
* <p>Event configurations of all events for a single resource.</p>
|
|
5587
5705
|
* @public
|
|
5588
5706
|
*/
|
|
5589
|
-
EventConfigurationsList?: EventConfigurationItem[];
|
|
5707
|
+
EventConfigurationsList?: EventConfigurationItem[] | undefined;
|
|
5590
5708
|
}
|
|
5591
5709
|
/**
|
|
5592
5710
|
* @public
|
|
@@ -5598,12 +5716,12 @@ export interface ListFuotaTasksRequest {
|
|
|
5598
5716
|
* results.</p>
|
|
5599
5717
|
* @public
|
|
5600
5718
|
*/
|
|
5601
|
-
NextToken?: string;
|
|
5719
|
+
NextToken?: string | undefined;
|
|
5602
5720
|
/**
|
|
5603
5721
|
* <p>The maximum number of results to return in this operation.</p>
|
|
5604
5722
|
* @public
|
|
5605
5723
|
*/
|
|
5606
|
-
MaxResults?: number;
|
|
5724
|
+
MaxResults?: number | undefined;
|
|
5607
5725
|
}
|
|
5608
5726
|
/**
|
|
5609
5727
|
* @public
|
|
@@ -5615,12 +5733,12 @@ export interface ListFuotaTasksResponse {
|
|
|
5615
5733
|
* results.</p>
|
|
5616
5734
|
* @public
|
|
5617
5735
|
*/
|
|
5618
|
-
NextToken?: string;
|
|
5736
|
+
NextToken?: string | undefined;
|
|
5619
5737
|
/**
|
|
5620
5738
|
* <p>Lists the FUOTA tasks registered to your AWS account.</p>
|
|
5621
5739
|
* @public
|
|
5622
5740
|
*/
|
|
5623
|
-
FuotaTaskList?: FuotaTask[];
|
|
5741
|
+
FuotaTaskList?: FuotaTask[] | undefined;
|
|
5624
5742
|
}
|
|
5625
5743
|
/**
|
|
5626
5744
|
* @public
|
|
@@ -5632,12 +5750,12 @@ export interface ListMulticastGroupsRequest {
|
|
|
5632
5750
|
* results.</p>
|
|
5633
5751
|
* @public
|
|
5634
5752
|
*/
|
|
5635
|
-
NextToken?: string;
|
|
5753
|
+
NextToken?: string | undefined;
|
|
5636
5754
|
/**
|
|
5637
5755
|
* <p>The maximum number of results to return in this operation.</p>
|
|
5638
5756
|
* @public
|
|
5639
5757
|
*/
|
|
5640
|
-
MaxResults?: number;
|
|
5758
|
+
MaxResults?: number | undefined;
|
|
5641
5759
|
}
|
|
5642
5760
|
/**
|
|
5643
5761
|
* <p>A multicast group.</p>
|
|
@@ -5648,17 +5766,17 @@ export interface MulticastGroup {
|
|
|
5648
5766
|
* <p>The ID of the multicast group.</p>
|
|
5649
5767
|
* @public
|
|
5650
5768
|
*/
|
|
5651
|
-
Id?: string;
|
|
5769
|
+
Id?: string | undefined;
|
|
5652
5770
|
/**
|
|
5653
5771
|
* <p>The arn of the multicast group.</p>
|
|
5654
5772
|
* @public
|
|
5655
5773
|
*/
|
|
5656
|
-
Arn?: string;
|
|
5774
|
+
Arn?: string | undefined;
|
|
5657
5775
|
/**
|
|
5658
5776
|
* <p>The name of the multicast group.</p>
|
|
5659
5777
|
* @public
|
|
5660
5778
|
*/
|
|
5661
|
-
Name?: string;
|
|
5779
|
+
Name?: string | undefined;
|
|
5662
5780
|
}
|
|
5663
5781
|
/**
|
|
5664
5782
|
* @public
|
|
@@ -5670,12 +5788,12 @@ export interface ListMulticastGroupsResponse {
|
|
|
5670
5788
|
* results.</p>
|
|
5671
5789
|
* @public
|
|
5672
5790
|
*/
|
|
5673
|
-
NextToken?: string;
|
|
5791
|
+
NextToken?: string | undefined;
|
|
5674
5792
|
/**
|
|
5675
5793
|
* <p>List of multicast groups.</p>
|
|
5676
5794
|
* @public
|
|
5677
5795
|
*/
|
|
5678
|
-
MulticastGroupList?: MulticastGroup[];
|
|
5796
|
+
MulticastGroupList?: MulticastGroup[] | undefined;
|
|
5679
5797
|
}
|
|
5680
5798
|
/**
|
|
5681
5799
|
* @public
|
|
@@ -5692,12 +5810,12 @@ export interface ListMulticastGroupsByFuotaTaskRequest {
|
|
|
5692
5810
|
* results.</p>
|
|
5693
5811
|
* @public
|
|
5694
5812
|
*/
|
|
5695
|
-
NextToken?: string;
|
|
5813
|
+
NextToken?: string | undefined;
|
|
5696
5814
|
/**
|
|
5697
5815
|
* <p>The maximum number of results to return in this operation.</p>
|
|
5698
5816
|
* @public
|
|
5699
5817
|
*/
|
|
5700
|
-
MaxResults?: number;
|
|
5818
|
+
MaxResults?: number | undefined;
|
|
5701
5819
|
}
|
|
5702
5820
|
/**
|
|
5703
5821
|
* <p>A multicast group that is associated with a FUOTA task.</p>
|
|
@@ -5708,7 +5826,7 @@ export interface MulticastGroupByFuotaTask {
|
|
|
5708
5826
|
* <p>The ID of the multicast group.</p>
|
|
5709
5827
|
* @public
|
|
5710
5828
|
*/
|
|
5711
|
-
Id?: string;
|
|
5829
|
+
Id?: string | undefined;
|
|
5712
5830
|
}
|
|
5713
5831
|
/**
|
|
5714
5832
|
* @public
|
|
@@ -5720,92 +5838,12 @@ export interface ListMulticastGroupsByFuotaTaskResponse {
|
|
|
5720
5838
|
* results.</p>
|
|
5721
5839
|
* @public
|
|
5722
5840
|
*/
|
|
5723
|
-
NextToken?: string;
|
|
5841
|
+
NextToken?: string | undefined;
|
|
5724
5842
|
/**
|
|
5725
5843
|
* <p>List of multicast groups associated with a FUOTA task.</p>
|
|
5726
5844
|
* @public
|
|
5727
5845
|
*/
|
|
5728
|
-
MulticastGroupList?: MulticastGroupByFuotaTask[];
|
|
5729
|
-
}
|
|
5730
|
-
/**
|
|
5731
|
-
* @public
|
|
5732
|
-
*/
|
|
5733
|
-
export interface ListNetworkAnalyzerConfigurationsRequest {
|
|
5734
|
-
/**
|
|
5735
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5736
|
-
* @public
|
|
5737
|
-
*/
|
|
5738
|
-
MaxResults?: number;
|
|
5739
|
-
/**
|
|
5740
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5741
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5742
|
-
* results.</p>
|
|
5743
|
-
* @public
|
|
5744
|
-
*/
|
|
5745
|
-
NextToken?: string;
|
|
5746
|
-
}
|
|
5747
|
-
/**
|
|
5748
|
-
* <p>Network analyzer configurations.</p>
|
|
5749
|
-
* @public
|
|
5750
|
-
*/
|
|
5751
|
-
export interface NetworkAnalyzerConfigurations {
|
|
5752
|
-
/**
|
|
5753
|
-
* <p>The Amazon Resource Name of the new resource.</p>
|
|
5754
|
-
* @public
|
|
5755
|
-
*/
|
|
5756
|
-
Arn?: string;
|
|
5757
|
-
/**
|
|
5758
|
-
* <p>Name of the network analyzer configuration.</p>
|
|
5759
|
-
* @public
|
|
5760
|
-
*/
|
|
5761
|
-
Name?: string;
|
|
5762
|
-
}
|
|
5763
|
-
/**
|
|
5764
|
-
* @public
|
|
5765
|
-
*/
|
|
5766
|
-
export interface ListNetworkAnalyzerConfigurationsResponse {
|
|
5767
|
-
/**
|
|
5768
|
-
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5769
|
-
* @public
|
|
5770
|
-
*/
|
|
5771
|
-
NextToken?: string;
|
|
5772
|
-
/**
|
|
5773
|
-
* <p>The list of network analyzer configurations.</p>
|
|
5774
|
-
* @public
|
|
5775
|
-
*/
|
|
5776
|
-
NetworkAnalyzerConfigurationList?: NetworkAnalyzerConfigurations[];
|
|
5777
|
-
}
|
|
5778
|
-
/**
|
|
5779
|
-
* @public
|
|
5780
|
-
*/
|
|
5781
|
-
export interface ListPartnerAccountsRequest {
|
|
5782
|
-
/**
|
|
5783
|
-
* <p>To retrieve the next set of results, the <code>nextToken</code> value from a previous
|
|
5784
|
-
* response; otherwise <b>null</b> to receive the first set of
|
|
5785
|
-
* results.</p>
|
|
5786
|
-
* @public
|
|
5787
|
-
*/
|
|
5788
|
-
NextToken?: string;
|
|
5789
|
-
/**
|
|
5790
|
-
* <p>The maximum number of results to return in this operation.</p>
|
|
5791
|
-
* @public
|
|
5792
|
-
*/
|
|
5793
|
-
MaxResults?: number;
|
|
5794
|
-
}
|
|
5795
|
-
/**
|
|
5796
|
-
* @public
|
|
5797
|
-
*/
|
|
5798
|
-
export interface ListPartnerAccountsResponse {
|
|
5799
|
-
/**
|
|
5800
|
-
* <p>The token to use to get the next set of results, or <b>null</b> if there are no additional results.</p>
|
|
5801
|
-
* @public
|
|
5802
|
-
*/
|
|
5803
|
-
NextToken?: string;
|
|
5804
|
-
/**
|
|
5805
|
-
* <p>The Sidewalk account credentials.</p>
|
|
5806
|
-
* @public
|
|
5807
|
-
*/
|
|
5808
|
-
Sidewalk?: SidewalkAccountInfoWithFingerprint[];
|
|
5846
|
+
MulticastGroupList?: MulticastGroupByFuotaTask[] | undefined;
|
|
5809
5847
|
}
|
|
5810
5848
|
/**
|
|
5811
5849
|
* @internal
|
|
@@ -5835,7 +5873,3 @@ export declare const SidewalkAccountInfoWithFingerprintFilterSensitiveLog: (obj:
|
|
|
5835
5873
|
* @internal
|
|
5836
5874
|
*/
|
|
5837
5875
|
export declare const GetPartnerAccountResponseFilterSensitiveLog: (obj: GetPartnerAccountResponse) => any;
|
|
5838
|
-
/**
|
|
5839
|
-
* @internal
|
|
5840
|
-
*/
|
|
5841
|
-
export declare const ListPartnerAccountsResponseFilterSensitiveLog: (obj: ListPartnerAccountsResponse) => any;
|