@aws-sdk/client-iot-wireless 3.687.0 → 3.691.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.
@@ -1,36 +1,36 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { IoTWirelessServiceException as __BaseException } from "./IoTWirelessServiceException";
3
3
  export interface SessionKeysAbpV1_0_x {
4
- NwkSKey?: string;
5
- AppSKey?: string;
4
+ NwkSKey?: string | undefined;
5
+ AppSKey?: string | undefined;
6
6
  }
7
7
  export interface AbpV1_0_x {
8
- DevAddr?: string;
9
- SessionKeys?: SessionKeysAbpV1_0_x;
10
- FCntStart?: number;
8
+ DevAddr?: string | undefined;
9
+ SessionKeys?: SessionKeysAbpV1_0_x | undefined;
10
+ FCntStart?: number | undefined;
11
11
  }
12
12
  export interface SessionKeysAbpV1_1 {
13
- FNwkSIntKey?: string;
14
- SNwkSIntKey?: string;
15
- NwkSEncKey?: string;
16
- AppSKey?: string;
13
+ FNwkSIntKey?: string | undefined;
14
+ SNwkSIntKey?: string | undefined;
15
+ NwkSEncKey?: string | undefined;
16
+ AppSKey?: string | undefined;
17
17
  }
18
18
  export interface AbpV1_1 {
19
- DevAddr?: string;
20
- SessionKeys?: SessionKeysAbpV1_1;
21
- FCntStart?: number;
19
+ DevAddr?: string | undefined;
20
+ SessionKeys?: SessionKeysAbpV1_1 | undefined;
21
+ FCntStart?: number | undefined;
22
22
  }
23
23
  export declare class AccessDeniedException extends __BaseException {
24
24
  readonly name: "AccessDeniedException";
25
25
  readonly $fault: "client";
26
- Message?: string;
26
+ Message?: string | undefined;
27
27
  constructor(
28
28
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
29
29
  );
30
30
  }
31
31
  export interface Accuracy {
32
- HorizontalAccuracy?: number;
33
- VerticalAccuracy?: number;
32
+ HorizontalAccuracy?: number | undefined;
33
+ VerticalAccuracy?: number | undefined;
34
34
  }
35
35
  export declare const AggregationPeriod: {
36
36
  readonly OneDay: "OneDay";
@@ -45,13 +45,13 @@ export declare const ApplicationConfigType: {
45
45
  export type ApplicationConfigType =
46
46
  (typeof ApplicationConfigType)[keyof typeof ApplicationConfigType];
47
47
  export interface ApplicationConfig {
48
- FPort?: number;
49
- Type?: ApplicationConfigType;
50
- DestinationName?: string;
48
+ FPort?: number | undefined;
49
+ Type?: ApplicationConfigType | undefined;
50
+ DestinationName?: string | undefined;
51
51
  }
52
52
  export interface SidewalkAccountInfo {
53
- AmazonId?: string;
54
- AppServerPrivateKey?: string;
53
+ AmazonId?: string | undefined;
54
+ AppServerPrivateKey?: string | undefined;
55
55
  }
56
56
  export interface Tag {
57
57
  Key: string | undefined;
@@ -59,25 +59,25 @@ export interface Tag {
59
59
  }
60
60
  export interface AssociateAwsAccountWithPartnerAccountRequest {
61
61
  Sidewalk: SidewalkAccountInfo | undefined;
62
- ClientRequestToken?: string;
63
- Tags?: Tag[];
62
+ ClientRequestToken?: string | undefined;
63
+ Tags?: Tag[] | undefined;
64
64
  }
65
65
  export interface AssociateAwsAccountWithPartnerAccountResponse {
66
- Sidewalk?: SidewalkAccountInfo;
67
- Arn?: string;
66
+ Sidewalk?: SidewalkAccountInfo | undefined;
67
+ Arn?: string | undefined;
68
68
  }
69
69
  export declare class ConflictException extends __BaseException {
70
70
  readonly name: "ConflictException";
71
71
  readonly $fault: "client";
72
- Message?: string;
73
- ResourceId?: string;
74
- ResourceType?: string;
72
+ Message?: string | undefined;
73
+ ResourceId?: string | undefined;
74
+ ResourceType?: string | undefined;
75
75
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
76
76
  }
77
77
  export declare class InternalServerException extends __BaseException {
78
78
  readonly name: "InternalServerException";
79
79
  readonly $fault: "server";
80
- Message?: string;
80
+ Message?: string | undefined;
81
81
  constructor(
82
82
  opts: __ExceptionOptionType<InternalServerException, __BaseException>
83
83
  );
@@ -85,9 +85,9 @@ export declare class InternalServerException extends __BaseException {
85
85
  export declare class ResourceNotFoundException extends __BaseException {
86
86
  readonly name: "ResourceNotFoundException";
87
87
  readonly $fault: "client";
88
- Message?: string;
89
- ResourceId?: string;
90
- ResourceType?: string;
88
+ Message?: string | undefined;
89
+ ResourceId?: string | undefined;
90
+ ResourceType?: string | undefined;
91
91
  constructor(
92
92
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
93
93
  );
@@ -95,7 +95,7 @@ export declare class ResourceNotFoundException extends __BaseException {
95
95
  export declare class ThrottlingException extends __BaseException {
96
96
  readonly name: "ThrottlingException";
97
97
  readonly $fault: "client";
98
- Message?: string;
98
+ Message?: string | undefined;
99
99
  constructor(
100
100
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
101
101
  );
@@ -103,7 +103,7 @@ export declare class ThrottlingException extends __BaseException {
103
103
  export declare class ValidationException extends __BaseException {
104
104
  readonly name: "ValidationException";
105
105
  readonly $fault: "client";
106
- Message?: string;
106
+ Message?: string | undefined;
107
107
  constructor(
108
108
  opts: __ExceptionOptionType<ValidationException, __BaseException>
109
109
  );
@@ -133,7 +133,7 @@ export interface AssociateWirelessGatewayWithCertificateRequest {
133
133
  IotCertificateId: string | undefined;
134
134
  }
135
135
  export interface AssociateWirelessGatewayWithCertificateResponse {
136
- IotCertificateId?: string;
136
+ IotCertificateId?: string | undefined;
137
137
  }
138
138
  export interface AssociateWirelessGatewayWithThingRequest {
139
139
  Id: string | undefined;
@@ -147,8 +147,8 @@ export declare const BatteryLevel: {
147
147
  };
148
148
  export type BatteryLevel = (typeof BatteryLevel)[keyof typeof BatteryLevel];
149
149
  export interface Beaconing {
150
- DataRate?: number;
151
- Frequencies?: number[];
150
+ DataRate?: number | undefined;
151
+ Frequencies?: number[] | undefined;
152
152
  }
153
153
  export interface CancelMulticastGroupSessionRequest {
154
154
  Id: string | undefined;
@@ -161,19 +161,19 @@ export interface CdmaLocalId {
161
161
  export interface CdmaNmrObj {
162
162
  PnOffset: number | undefined;
163
163
  CdmaChannel: number | undefined;
164
- PilotPower?: number;
165
- BaseStationId?: number;
164
+ PilotPower?: number | undefined;
165
+ BaseStationId?: number | undefined;
166
166
  }
167
167
  export interface CdmaObj {
168
168
  SystemId: number | undefined;
169
169
  NetworkId: number | undefined;
170
170
  BaseStationId: number | undefined;
171
- RegistrationZone?: number;
172
- CdmaLocalId?: CdmaLocalId;
173
- PilotPower?: number;
174
- BaseLat?: number;
175
- BaseLng?: number;
176
- CdmaNmr?: CdmaNmrObj[];
171
+ RegistrationZone?: number | undefined;
172
+ CdmaLocalId?: CdmaLocalId | undefined;
173
+ PilotPower?: number | undefined;
174
+ BaseLat?: number | undefined;
175
+ BaseLng?: number | undefined;
176
+ CdmaNmr?: CdmaNmrObj[] | undefined;
177
177
  }
178
178
  export interface GsmLocalId {
179
179
  Bsic: number | undefined;
@@ -186,18 +186,18 @@ export interface GlobalIdentity {
186
186
  export interface GsmNmrObj {
187
187
  Bsic: number | undefined;
188
188
  Bcch: number | undefined;
189
- RxLevel?: number;
190
- GlobalIdentity?: GlobalIdentity;
189
+ RxLevel?: number | undefined;
190
+ GlobalIdentity?: GlobalIdentity | undefined;
191
191
  }
192
192
  export interface GsmObj {
193
193
  Mcc: number | undefined;
194
194
  Mnc: number | undefined;
195
195
  Lac: number | undefined;
196
196
  GeranCid: number | undefined;
197
- GsmLocalId?: GsmLocalId;
198
- GsmTimingAdvance?: number;
199
- RxLevel?: number;
200
- GsmNmr?: GsmNmrObj[];
197
+ GsmLocalId?: GsmLocalId | undefined;
198
+ GsmTimingAdvance?: number | undefined;
199
+ RxLevel?: number | undefined;
200
+ GsmNmr?: GsmNmrObj[] | undefined;
201
201
  }
202
202
  export interface LteLocalId {
203
203
  Pci: number | undefined;
@@ -207,20 +207,20 @@ export interface LteNmrObj {
207
207
  Pci: number | undefined;
208
208
  Earfcn: number | undefined;
209
209
  EutranCid: number | undefined;
210
- Rsrp?: number;
211
- Rsrq?: number;
210
+ Rsrp?: number | undefined;
211
+ Rsrq?: number | undefined;
212
212
  }
213
213
  export interface LteObj {
214
214
  Mcc: number | undefined;
215
215
  Mnc: number | undefined;
216
216
  EutranCid: number | undefined;
217
- Tac?: number;
218
- LteLocalId?: LteLocalId;
219
- LteTimingAdvance?: number;
220
- Rsrp?: number;
221
- Rsrq?: number;
222
- NrCapable?: boolean;
223
- LteNmr?: LteNmrObj[];
217
+ Tac?: number | undefined;
218
+ LteLocalId?: LteLocalId | undefined;
219
+ LteTimingAdvance?: number | undefined;
220
+ Rsrp?: number | undefined;
221
+ Rsrq?: number | undefined;
222
+ NrCapable?: boolean | undefined;
223
+ LteNmr?: LteNmrObj[] | undefined;
224
224
  }
225
225
  export interface TdscdmaLocalId {
226
226
  Uarfcn: number | undefined;
@@ -229,20 +229,20 @@ export interface TdscdmaLocalId {
229
229
  export interface TdscdmaNmrObj {
230
230
  Uarfcn: number | undefined;
231
231
  CellParams: number | undefined;
232
- UtranCid?: number;
233
- Rscp?: number;
234
- PathLoss?: number;
232
+ UtranCid?: number | undefined;
233
+ Rscp?: number | undefined;
234
+ PathLoss?: number | undefined;
235
235
  }
236
236
  export interface TdscdmaObj {
237
237
  Mcc: number | undefined;
238
238
  Mnc: number | undefined;
239
- Lac?: number;
239
+ Lac?: number | undefined;
240
240
  UtranCid: number | undefined;
241
- TdscdmaLocalId?: TdscdmaLocalId;
242
- TdscdmaTimingAdvance?: number;
243
- Rscp?: number;
244
- PathLoss?: number;
245
- TdscdmaNmr?: TdscdmaNmrObj[];
241
+ TdscdmaLocalId?: TdscdmaLocalId | undefined;
242
+ TdscdmaTimingAdvance?: number | undefined;
243
+ Rscp?: number | undefined;
244
+ PathLoss?: number | undefined;
245
+ TdscdmaNmr?: TdscdmaNmrObj[] | undefined;
246
246
  }
247
247
  export interface WcdmaLocalId {
248
248
  Uarfcndl: number | undefined;
@@ -252,25 +252,25 @@ export interface WcdmaNmrObj {
252
252
  Uarfcndl: number | undefined;
253
253
  Psc: number | undefined;
254
254
  UtranCid: number | undefined;
255
- Rscp?: number;
256
- PathLoss?: number;
255
+ Rscp?: number | undefined;
256
+ PathLoss?: number | undefined;
257
257
  }
258
258
  export interface WcdmaObj {
259
259
  Mcc: number | undefined;
260
260
  Mnc: number | undefined;
261
- Lac?: number;
261
+ Lac?: number | undefined;
262
262
  UtranCid: number | undefined;
263
- WcdmaLocalId?: WcdmaLocalId;
264
- Rscp?: number;
265
- PathLoss?: number;
266
- WcdmaNmr?: WcdmaNmrObj[];
263
+ WcdmaLocalId?: WcdmaLocalId | undefined;
264
+ Rscp?: number | undefined;
265
+ PathLoss?: number | undefined;
266
+ WcdmaNmr?: WcdmaNmrObj[] | undefined;
267
267
  }
268
268
  export interface CellTowers {
269
- Gsm?: GsmObj[];
270
- Wcdma?: WcdmaObj[];
271
- Tdscdma?: TdscdmaObj[];
272
- Lte?: LteObj[];
273
- Cdma?: CdmaObj[];
269
+ Gsm?: GsmObj[] | undefined;
270
+ Wcdma?: WcdmaObj[] | undefined;
271
+ Tdscdma?: TdscdmaObj[] | undefined;
272
+ Lte?: LteObj[] | undefined;
273
+ Cdma?: CdmaObj[] | undefined;
274
274
  }
275
275
  export declare const SigningAlg: {
276
276
  readonly Ed25519: "Ed25519";
@@ -294,17 +294,17 @@ export declare const EventNotificationTopicStatus: {
294
294
  export type EventNotificationTopicStatus =
295
295
  (typeof EventNotificationTopicStatus)[keyof typeof EventNotificationTopicStatus];
296
296
  export interface LoRaWANConnectionStatusEventNotificationConfigurations {
297
- GatewayEuiEventTopic?: EventNotificationTopicStatus;
297
+ GatewayEuiEventTopic?: EventNotificationTopicStatus | undefined;
298
298
  }
299
299
  export interface ConnectionStatusEventConfiguration {
300
- LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations;
301
- WirelessGatewayIdEventTopic?: EventNotificationTopicStatus;
300
+ LoRaWAN?: LoRaWANConnectionStatusEventNotificationConfigurations | undefined;
301
+ WirelessGatewayIdEventTopic?: EventNotificationTopicStatus | undefined;
302
302
  }
303
303
  export interface LoRaWANConnectionStatusResourceTypeEventConfiguration {
304
- WirelessGatewayEventTopic?: EventNotificationTopicStatus;
304
+ WirelessGatewayEventTopic?: EventNotificationTopicStatus | undefined;
305
305
  }
306
306
  export interface ConnectionStatusResourceTypeEventConfiguration {
307
- LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration;
307
+ LoRaWAN?: LoRaWANConnectionStatusResourceTypeEventConfiguration | undefined;
308
308
  }
309
309
  export declare const ExpressionType: {
310
310
  readonly MqttTopic: "MqttTopic";
@@ -316,47 +316,47 @@ export interface CreateDestinationRequest {
316
316
  Name: string | undefined;
317
317
  ExpressionType: ExpressionType | undefined;
318
318
  Expression: string | undefined;
319
- Description?: string;
319
+ Description?: string | undefined;
320
320
  RoleArn: string | undefined;
321
- Tags?: Tag[];
322
- ClientRequestToken?: string;
321
+ Tags?: Tag[] | undefined;
322
+ ClientRequestToken?: string | undefined;
323
323
  }
324
324
  export interface CreateDestinationResponse {
325
- Arn?: string;
326
- Name?: string;
325
+ Arn?: string | undefined;
326
+ Name?: string | undefined;
327
327
  }
328
328
  export interface LoRaWANDeviceProfile {
329
- SupportsClassB?: boolean;
330
- ClassBTimeout?: number;
331
- PingSlotPeriod?: number;
332
- PingSlotDr?: number;
333
- PingSlotFreq?: number;
334
- SupportsClassC?: boolean;
335
- ClassCTimeout?: number;
336
- MacVersion?: string;
337
- RegParamsRevision?: string;
338
- RxDelay1?: number;
339
- RxDrOffset1?: number;
340
- RxDataRate2?: number;
341
- RxFreq2?: number;
342
- FactoryPresetFreqsList?: number[];
343
- MaxEirp?: number;
344
- MaxDutyCycle?: number;
345
- RfRegion?: string;
346
- SupportsJoin?: boolean;
347
- Supports32BitFCnt?: boolean;
329
+ SupportsClassB?: boolean | undefined;
330
+ ClassBTimeout?: number | undefined;
331
+ PingSlotPeriod?: number | undefined;
332
+ PingSlotDr?: number | undefined;
333
+ PingSlotFreq?: number | undefined;
334
+ SupportsClassC?: boolean | undefined;
335
+ ClassCTimeout?: number | undefined;
336
+ MacVersion?: string | undefined;
337
+ RegParamsRevision?: string | undefined;
338
+ RxDelay1?: number | undefined;
339
+ RxDrOffset1?: number | undefined;
340
+ RxDataRate2?: number | undefined;
341
+ RxFreq2?: number | undefined;
342
+ FactoryPresetFreqsList?: number[] | undefined;
343
+ MaxEirp?: number | undefined;
344
+ MaxDutyCycle?: number | undefined;
345
+ RfRegion?: string | undefined;
346
+ SupportsJoin?: boolean | undefined;
347
+ Supports32BitFCnt?: boolean | undefined;
348
348
  }
349
349
  export interface SidewalkCreateDeviceProfile {}
350
350
  export interface CreateDeviceProfileRequest {
351
- Name?: string;
352
- LoRaWAN?: LoRaWANDeviceProfile;
353
- Tags?: Tag[];
354
- ClientRequestToken?: string;
355
- Sidewalk?: SidewalkCreateDeviceProfile;
351
+ Name?: string | undefined;
352
+ LoRaWAN?: LoRaWANDeviceProfile | undefined;
353
+ Tags?: Tag[] | undefined;
354
+ ClientRequestToken?: string | undefined;
355
+ Sidewalk?: SidewalkCreateDeviceProfile | undefined;
356
356
  }
357
357
  export interface CreateDeviceProfileResponse {
358
- Arn?: string;
359
- Id?: string;
358
+ Arn?: string | undefined;
359
+ Id?: string | undefined;
360
360
  }
361
361
  export declare const SupportedRfRegion: {
362
362
  readonly AS923_1: "AS923-1";
@@ -376,23 +376,23 @@ export declare const SupportedRfRegion: {
376
376
  export type SupportedRfRegion =
377
377
  (typeof SupportedRfRegion)[keyof typeof SupportedRfRegion];
378
378
  export interface LoRaWANFuotaTask {
379
- RfRegion?: SupportedRfRegion;
379
+ RfRegion?: SupportedRfRegion | undefined;
380
380
  }
381
381
  export interface CreateFuotaTaskRequest {
382
- Name?: string;
383
- Description?: string;
384
- ClientRequestToken?: string;
385
- LoRaWAN?: LoRaWANFuotaTask;
382
+ Name?: string | undefined;
383
+ Description?: string | undefined;
384
+ ClientRequestToken?: string | undefined;
385
+ LoRaWAN?: LoRaWANFuotaTask | undefined;
386
386
  FirmwareUpdateImage: string | undefined;
387
387
  FirmwareUpdateRole: string | undefined;
388
- Tags?: Tag[];
389
- RedundancyPercent?: number;
390
- FragmentSizeBytes?: number;
391
- FragmentIntervalMS?: number;
388
+ Tags?: Tag[] | undefined;
389
+ RedundancyPercent?: number | undefined;
390
+ FragmentSizeBytes?: number | undefined;
391
+ FragmentIntervalMS?: number | undefined;
392
392
  }
393
393
  export interface CreateFuotaTaskResponse {
394
- Arn?: string;
395
- Id?: string;
394
+ Arn?: string | undefined;
395
+ Id?: string | undefined;
396
396
  }
397
397
  export declare const DlClass: {
398
398
  readonly ClassB: "ClassB";
@@ -400,19 +400,19 @@ export declare const DlClass: {
400
400
  };
401
401
  export type DlClass = (typeof DlClass)[keyof typeof DlClass];
402
402
  export interface LoRaWANMulticast {
403
- RfRegion?: SupportedRfRegion;
404
- DlClass?: DlClass;
403
+ RfRegion?: SupportedRfRegion | undefined;
404
+ DlClass?: DlClass | undefined;
405
405
  }
406
406
  export interface CreateMulticastGroupRequest {
407
- Name?: string;
408
- Description?: string;
409
- ClientRequestToken?: string;
407
+ Name?: string | undefined;
408
+ Description?: string | undefined;
409
+ ClientRequestToken?: string | undefined;
410
410
  LoRaWAN: LoRaWANMulticast | undefined;
411
- Tags?: Tag[];
411
+ Tags?: Tag[] | undefined;
412
412
  }
413
413
  export interface CreateMulticastGroupResponse {
414
- Arn?: string;
415
- Id?: string;
414
+ Arn?: string | undefined;
415
+ Id?: string | undefined;
416
416
  }
417
417
  export declare const LogLevel: {
418
418
  readonly DISABLED: "DISABLED";
@@ -433,73 +433,73 @@ export declare const WirelessDeviceFrameInfo: {
433
433
  export type WirelessDeviceFrameInfo =
434
434
  (typeof WirelessDeviceFrameInfo)[keyof typeof WirelessDeviceFrameInfo];
435
435
  export interface TraceContent {
436
- WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo;
437
- LogLevel?: LogLevel;
438
- MulticastFrameInfo?: MulticastFrameInfo;
436
+ WirelessDeviceFrameInfo?: WirelessDeviceFrameInfo | undefined;
437
+ LogLevel?: LogLevel | undefined;
438
+ MulticastFrameInfo?: MulticastFrameInfo | undefined;
439
439
  }
440
440
  export interface CreateNetworkAnalyzerConfigurationRequest {
441
441
  Name: string | undefined;
442
- TraceContent?: TraceContent;
443
- WirelessDevices?: string[];
444
- WirelessGateways?: string[];
445
- Description?: string;
446
- Tags?: Tag[];
447
- ClientRequestToken?: string;
448
- MulticastGroups?: string[];
442
+ TraceContent?: TraceContent | undefined;
443
+ WirelessDevices?: string[] | undefined;
444
+ WirelessGateways?: string[] | undefined;
445
+ Description?: string | undefined;
446
+ Tags?: Tag[] | undefined;
447
+ ClientRequestToken?: string | undefined;
448
+ MulticastGroups?: string[] | undefined;
449
449
  }
450
450
  export interface CreateNetworkAnalyzerConfigurationResponse {
451
- Arn?: string;
452
- Name?: string;
451
+ Arn?: string | undefined;
452
+ Name?: string | undefined;
453
453
  }
454
454
  export interface LoRaWANServiceProfile {
455
- AddGwMetadata?: boolean;
456
- DrMin?: number;
457
- DrMax?: number;
458
- PrAllowed?: boolean;
459
- RaAllowed?: boolean;
455
+ AddGwMetadata?: boolean | undefined;
456
+ DrMin?: number | undefined;
457
+ DrMax?: number | undefined;
458
+ PrAllowed?: boolean | undefined;
459
+ RaAllowed?: boolean | undefined;
460
460
  }
461
461
  export interface CreateServiceProfileRequest {
462
- Name?: string;
463
- LoRaWAN?: LoRaWANServiceProfile;
464
- Tags?: Tag[];
465
- ClientRequestToken?: string;
462
+ Name?: string | undefined;
463
+ LoRaWAN?: LoRaWANServiceProfile | undefined;
464
+ Tags?: Tag[] | undefined;
465
+ ClientRequestToken?: string | undefined;
466
466
  }
467
467
  export interface CreateServiceProfileResponse {
468
- Arn?: string;
469
- Id?: string;
468
+ Arn?: string | undefined;
469
+ Id?: string | undefined;
470
470
  }
471
471
  export interface Positioning {
472
- ClockSync?: number;
473
- Stream?: number;
474
- Gnss?: number;
472
+ ClockSync?: number | undefined;
473
+ Stream?: number | undefined;
474
+ Gnss?: number | undefined;
475
475
  }
476
476
  export interface FPorts {
477
- Fuota?: number;
478
- Multicast?: number;
479
- ClockSync?: number;
480
- Positioning?: Positioning;
481
- Applications?: ApplicationConfig[];
477
+ Fuota?: number | undefined;
478
+ Multicast?: number | undefined;
479
+ ClockSync?: number | undefined;
480
+ Positioning?: Positioning | undefined;
481
+ Applications?: ApplicationConfig[] | undefined;
482
482
  }
483
483
  export interface OtaaV1_0_x {
484
- AppKey?: string;
485
- AppEui?: string;
486
- JoinEui?: string;
487
- GenAppKey?: string;
484
+ AppKey?: string | undefined;
485
+ AppEui?: string | undefined;
486
+ JoinEui?: string | undefined;
487
+ GenAppKey?: string | undefined;
488
488
  }
489
489
  export interface OtaaV1_1 {
490
- AppKey?: string;
491
- NwkKey?: string;
492
- JoinEui?: string;
490
+ AppKey?: string | undefined;
491
+ NwkKey?: string | undefined;
492
+ JoinEui?: string | undefined;
493
493
  }
494
494
  export interface LoRaWANDevice {
495
- DevEui?: string;
496
- DeviceProfileId?: string;
497
- ServiceProfileId?: string;
498
- OtaaV1_1?: OtaaV1_1;
499
- OtaaV1_0_x?: OtaaV1_0_x;
500
- AbpV1_1?: AbpV1_1;
501
- AbpV1_0_x?: AbpV1_0_x;
502
- FPorts?: FPorts;
495
+ DevEui?: string | undefined;
496
+ DeviceProfileId?: string | undefined;
497
+ ServiceProfileId?: string | undefined;
498
+ OtaaV1_1?: OtaaV1_1 | undefined;
499
+ OtaaV1_0_x?: OtaaV1_0_x | undefined;
500
+ AbpV1_1?: AbpV1_1 | undefined;
501
+ AbpV1_0_x?: AbpV1_0_x | undefined;
502
+ FPorts?: FPorts | undefined;
503
503
  }
504
504
  export declare const PositioningConfigStatus: {
505
505
  readonly Disabled: "Disabled";
@@ -508,7 +508,7 @@ export declare const PositioningConfigStatus: {
508
508
  export type PositioningConfigStatus =
509
509
  (typeof PositioningConfigStatus)[keyof typeof PositioningConfigStatus];
510
510
  export interface SidewalkCreateWirelessDevice {
511
- DeviceProfileId?: string;
511
+ DeviceProfileId?: string | undefined;
512
512
  }
513
513
  export declare const WirelessDeviceType: {
514
514
  readonly LoRaWAN: "LoRaWAN";
@@ -518,38 +518,38 @@ export type WirelessDeviceType =
518
518
  (typeof WirelessDeviceType)[keyof typeof WirelessDeviceType];
519
519
  export interface CreateWirelessDeviceRequest {
520
520
  Type: WirelessDeviceType | undefined;
521
- Name?: string;
522
- Description?: string;
521
+ Name?: string | undefined;
522
+ Description?: string | undefined;
523
523
  DestinationName: string | undefined;
524
- ClientRequestToken?: string;
525
- LoRaWAN?: LoRaWANDevice;
526
- Tags?: Tag[];
527
- Positioning?: PositioningConfigStatus;
528
- Sidewalk?: SidewalkCreateWirelessDevice;
524
+ ClientRequestToken?: string | undefined;
525
+ LoRaWAN?: LoRaWANDevice | undefined;
526
+ Tags?: Tag[] | undefined;
527
+ Positioning?: PositioningConfigStatus | undefined;
528
+ Sidewalk?: SidewalkCreateWirelessDevice | undefined;
529
529
  }
530
530
  export interface CreateWirelessDeviceResponse {
531
- Arn?: string;
532
- Id?: string;
531
+ Arn?: string | undefined;
532
+ Id?: string | undefined;
533
533
  }
534
534
  export interface LoRaWANGateway {
535
- GatewayEui?: string;
536
- RfRegion?: string;
537
- JoinEuiFilters?: string[][];
538
- NetIdFilters?: string[];
539
- SubBands?: number[];
540
- Beaconing?: Beaconing;
541
- MaxEirp?: number;
535
+ GatewayEui?: string | undefined;
536
+ RfRegion?: string | undefined;
537
+ JoinEuiFilters?: string[][] | undefined;
538
+ NetIdFilters?: string[] | undefined;
539
+ SubBands?: number[] | undefined;
540
+ Beaconing?: Beaconing | undefined;
541
+ MaxEirp?: number | undefined;
542
542
  }
543
543
  export interface CreateWirelessGatewayRequest {
544
- Name?: string;
545
- Description?: string;
544
+ Name?: string | undefined;
545
+ Description?: string | undefined;
546
546
  LoRaWAN: LoRaWANGateway | undefined;
547
- Tags?: Tag[];
548
- ClientRequestToken?: string;
547
+ Tags?: Tag[] | undefined;
548
+ ClientRequestToken?: string | undefined;
549
549
  }
550
550
  export interface CreateWirelessGatewayResponse {
551
- Arn?: string;
552
- Id?: string;
551
+ Arn?: string | undefined;
552
+ Id?: string | undefined;
553
553
  }
554
554
  export interface CreateWirelessGatewayTaskRequest {
555
555
  Id: string | undefined;
@@ -566,42 +566,42 @@ export declare const WirelessGatewayTaskStatus: {
566
566
  export type WirelessGatewayTaskStatus =
567
567
  (typeof WirelessGatewayTaskStatus)[keyof typeof WirelessGatewayTaskStatus];
568
568
  export interface CreateWirelessGatewayTaskResponse {
569
- WirelessGatewayTaskDefinitionId?: string;
570
- Status?: WirelessGatewayTaskStatus;
569
+ WirelessGatewayTaskDefinitionId?: string | undefined;
570
+ Status?: WirelessGatewayTaskStatus | undefined;
571
571
  }
572
572
  export interface LoRaWANGatewayVersion {
573
- PackageVersion?: string;
574
- Model?: string;
575
- Station?: string;
573
+ PackageVersion?: string | undefined;
574
+ Model?: string | undefined;
575
+ Station?: string | undefined;
576
576
  }
577
577
  export interface LoRaWANUpdateGatewayTaskCreate {
578
- UpdateSignature?: string;
579
- SigKeyCrc?: number;
580
- CurrentVersion?: LoRaWANGatewayVersion;
581
- UpdateVersion?: LoRaWANGatewayVersion;
578
+ UpdateSignature?: string | undefined;
579
+ SigKeyCrc?: number | undefined;
580
+ CurrentVersion?: LoRaWANGatewayVersion | undefined;
581
+ UpdateVersion?: LoRaWANGatewayVersion | undefined;
582
582
  }
583
583
  export interface UpdateWirelessGatewayTaskCreate {
584
- UpdateDataSource?: string;
585
- UpdateDataRole?: string;
586
- LoRaWAN?: LoRaWANUpdateGatewayTaskCreate;
584
+ UpdateDataSource?: string | undefined;
585
+ UpdateDataRole?: string | undefined;
586
+ LoRaWAN?: LoRaWANUpdateGatewayTaskCreate | undefined;
587
587
  }
588
588
  export interface CreateWirelessGatewayTaskDefinitionRequest {
589
589
  AutoCreateTasks: boolean | undefined;
590
- Name?: string;
591
- Update?: UpdateWirelessGatewayTaskCreate;
592
- ClientRequestToken?: string;
593
- Tags?: Tag[];
590
+ Name?: string | undefined;
591
+ Update?: UpdateWirelessGatewayTaskCreate | undefined;
592
+ ClientRequestToken?: string | undefined;
593
+ Tags?: Tag[] | undefined;
594
594
  }
595
595
  export interface CreateWirelessGatewayTaskDefinitionResponse {
596
- Id?: string;
597
- Arn?: string;
596
+ Id?: string | undefined;
597
+ Arn?: string | undefined;
598
598
  }
599
599
  export interface DakCertificateMetadata {
600
600
  CertificateId: string | undefined;
601
- MaxAllowedSignature?: number;
602
- FactorySupport?: boolean;
603
- ApId?: string;
604
- DeviceTypeId?: string;
601
+ MaxAllowedSignature?: number | undefined;
602
+ FactorySupport?: boolean | undefined;
603
+ ApId?: string | undefined;
604
+ DeviceTypeId?: string | undefined;
605
605
  }
606
606
  export interface DeleteDestinationRequest {
607
607
  Name: string | undefined;
@@ -626,7 +626,7 @@ export interface DeleteNetworkAnalyzerConfigurationResponse {}
626
626
  export interface DeleteQueuedMessagesRequest {
627
627
  Id: string | undefined;
628
628
  MessageId: string | undefined;
629
- WirelessDeviceType?: WirelessDeviceType;
629
+ WirelessDeviceType?: WirelessDeviceType | undefined;
630
630
  }
631
631
  export interface DeleteQueuedMessagesResponse {}
632
632
  export interface DeleteServiceProfileRequest {
@@ -655,21 +655,21 @@ export interface DeleteWirelessGatewayTaskDefinitionRequest {
655
655
  export interface DeleteWirelessGatewayTaskDefinitionResponse {}
656
656
  export interface DeregisterWirelessDeviceRequest {
657
657
  Identifier: string | undefined;
658
- WirelessDeviceType?: WirelessDeviceType;
658
+ WirelessDeviceType?: WirelessDeviceType | undefined;
659
659
  }
660
660
  export interface DeregisterWirelessDeviceResponse {}
661
661
  export interface Destinations {
662
- Arn?: string;
663
- Name?: string;
664
- ExpressionType?: ExpressionType;
665
- Expression?: string;
666
- Description?: string;
667
- RoleArn?: string;
662
+ Arn?: string | undefined;
663
+ Name?: string | undefined;
664
+ ExpressionType?: ExpressionType | undefined;
665
+ Expression?: string | undefined;
666
+ Description?: string | undefined;
667
+ RoleArn?: string | undefined;
668
668
  }
669
669
  export interface DeviceProfile {
670
- Arn?: string;
671
- Name?: string;
672
- Id?: string;
670
+ Arn?: string | undefined;
671
+ Name?: string | undefined;
672
+ Id?: string | undefined;
673
673
  }
674
674
  export declare const DeviceProfileType: {
675
675
  readonly LoRaWAN: "LoRaWAN";
@@ -678,17 +678,17 @@ export declare const DeviceProfileType: {
678
678
  export type DeviceProfileType =
679
679
  (typeof DeviceProfileType)[keyof typeof DeviceProfileType];
680
680
  export interface SidewalkEventNotificationConfigurations {
681
- AmazonIdEventTopic?: EventNotificationTopicStatus;
681
+ AmazonIdEventTopic?: EventNotificationTopicStatus | undefined;
682
682
  }
683
683
  export interface DeviceRegistrationStateEventConfiguration {
684
- Sidewalk?: SidewalkEventNotificationConfigurations;
685
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
684
+ Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
685
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
686
686
  }
687
687
  export interface SidewalkResourceTypeEventConfiguration {
688
- WirelessDeviceEventTopic?: EventNotificationTopicStatus;
688
+ WirelessDeviceEventTopic?: EventNotificationTopicStatus | undefined;
689
689
  }
690
690
  export interface DeviceRegistrationStateResourceTypeEventConfiguration {
691
- Sidewalk?: SidewalkResourceTypeEventConfiguration;
691
+ Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
692
692
  }
693
693
  export declare const DeviceState: {
694
694
  readonly PROVISIONED: "Provisioned";
@@ -703,8 +703,8 @@ export declare const DimensionName: {
703
703
  };
704
704
  export type DimensionName = (typeof DimensionName)[keyof typeof DimensionName];
705
705
  export interface Dimension {
706
- name?: DimensionName;
707
- value?: string;
706
+ name?: DimensionName | undefined;
707
+ value?: string | undefined;
708
708
  }
709
709
  export declare const PartnerType: {
710
710
  readonly Sidewalk: "Sidewalk";
@@ -758,14 +758,14 @@ export interface ParticipatingGateways {
758
758
  TransmissionInterval: number | undefined;
759
759
  }
760
760
  export interface LoRaWANSendDataToDevice {
761
- FPort?: number;
762
- ParticipatingGateways?: ParticipatingGateways;
761
+ FPort?: number | undefined;
762
+ ParticipatingGateways?: ParticipatingGateways | undefined;
763
763
  }
764
764
  export interface DownlinkQueueMessage {
765
- MessageId?: string;
766
- TransmitMode?: number;
767
- ReceivedAt?: string;
768
- LoRaWAN?: LoRaWANSendDataToDevice;
765
+ MessageId?: string | undefined;
766
+ TransmitMode?: number | undefined;
767
+ ReceivedAt?: string | undefined;
768
+ LoRaWAN?: LoRaWANSendDataToDevice | undefined;
769
769
  }
770
770
  export declare const Event: {
771
771
  readonly ACK: "ack";
@@ -776,26 +776,28 @@ export declare const Event: {
776
776
  };
777
777
  export type Event = (typeof Event)[keyof typeof Event];
778
778
  export interface LoRaWANJoinEventNotificationConfigurations {
779
- DevEuiEventTopic?: EventNotificationTopicStatus;
779
+ DevEuiEventTopic?: EventNotificationTopicStatus | undefined;
780
780
  }
781
781
  export interface JoinEventConfiguration {
782
- LoRaWAN?: LoRaWANJoinEventNotificationConfigurations;
783
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
782
+ LoRaWAN?: LoRaWANJoinEventNotificationConfigurations | undefined;
783
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
784
784
  }
785
785
  export interface MessageDeliveryStatusEventConfiguration {
786
- Sidewalk?: SidewalkEventNotificationConfigurations;
787
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
786
+ Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
787
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
788
788
  }
789
789
  export interface ProximityEventConfiguration {
790
- Sidewalk?: SidewalkEventNotificationConfigurations;
791
- WirelessDeviceIdEventTopic?: EventNotificationTopicStatus;
790
+ Sidewalk?: SidewalkEventNotificationConfigurations | undefined;
791
+ WirelessDeviceIdEventTopic?: EventNotificationTopicStatus | undefined;
792
792
  }
793
793
  export interface EventNotificationItemConfigurations {
794
- DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
795
- Proximity?: ProximityEventConfiguration;
796
- Join?: JoinEventConfiguration;
797
- ConnectionStatus?: ConnectionStatusEventConfiguration;
798
- MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
794
+ DeviceRegistrationState?:
795
+ | DeviceRegistrationStateEventConfiguration
796
+ | undefined;
797
+ Proximity?: ProximityEventConfiguration | undefined;
798
+ Join?: JoinEventConfiguration | undefined;
799
+ ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
800
+ MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
799
801
  }
800
802
  export declare const IdentifierType: {
801
803
  readonly DevEui: "DevEui";
@@ -812,10 +814,10 @@ export declare const EventNotificationPartnerType: {
812
814
  export type EventNotificationPartnerType =
813
815
  (typeof EventNotificationPartnerType)[keyof typeof EventNotificationPartnerType];
814
816
  export interface EventConfigurationItem {
815
- Identifier?: string;
816
- IdentifierType?: IdentifierType;
817
- PartnerType?: EventNotificationPartnerType;
818
- Events?: EventNotificationItemConfigurations;
817
+ Identifier?: string | undefined;
818
+ IdentifierType?: IdentifierType | undefined;
819
+ PartnerType?: EventNotificationPartnerType | undefined;
820
+ Events?: EventNotificationItemConfigurations | undefined;
819
821
  }
820
822
  export declare const EventNotificationResourceType: {
821
823
  readonly SidewalkAccount: "SidewalkAccount";
@@ -841,9 +843,9 @@ export declare const FuotaDeviceStatus: {
841
843
  export type FuotaDeviceStatus =
842
844
  (typeof FuotaDeviceStatus)[keyof typeof FuotaDeviceStatus];
843
845
  export interface FuotaTask {
844
- Id?: string;
845
- Arn?: string;
846
- Name?: string;
846
+ Id?: string | undefined;
847
+ Arn?: string | undefined;
848
+ Name?: string | undefined;
847
849
  }
848
850
  export declare const FuotaTaskStatus: {
849
851
  readonly Delete_Waiting: "Delete_Waiting";
@@ -858,68 +860,72 @@ export interface GetDestinationRequest {
858
860
  Name: string | undefined;
859
861
  }
860
862
  export interface GetDestinationResponse {
861
- Arn?: string;
862
- Name?: string;
863
- Expression?: string;
864
- ExpressionType?: ExpressionType;
865
- Description?: string;
866
- RoleArn?: string;
863
+ Arn?: string | undefined;
864
+ Name?: string | undefined;
865
+ Expression?: string | undefined;
866
+ ExpressionType?: ExpressionType | undefined;
867
+ Description?: string | undefined;
868
+ RoleArn?: string | undefined;
867
869
  }
868
870
  export interface GetDeviceProfileRequest {
869
871
  Id: string | undefined;
870
872
  }
871
873
  export interface SidewalkGetDeviceProfile {
872
- ApplicationServerPublicKey?: string;
873
- QualificationStatus?: boolean;
874
- DakCertificateMetadata?: DakCertificateMetadata[];
874
+ ApplicationServerPublicKey?: string | undefined;
875
+ QualificationStatus?: boolean | undefined;
876
+ DakCertificateMetadata?: DakCertificateMetadata[] | undefined;
875
877
  }
876
878
  export interface GetDeviceProfileResponse {
877
- Arn?: string;
878
- Name?: string;
879
- Id?: string;
880
- LoRaWAN?: LoRaWANDeviceProfile;
881
- Sidewalk?: SidewalkGetDeviceProfile;
879
+ Arn?: string | undefined;
880
+ Name?: string | undefined;
881
+ Id?: string | undefined;
882
+ LoRaWAN?: LoRaWANDeviceProfile | undefined;
883
+ Sidewalk?: SidewalkGetDeviceProfile | undefined;
882
884
  }
883
885
  export interface GetEventConfigurationByResourceTypesRequest {}
884
886
  export interface LoRaWANJoinResourceTypeEventConfiguration {
885
- WirelessDeviceEventTopic?: EventNotificationTopicStatus;
887
+ WirelessDeviceEventTopic?: EventNotificationTopicStatus | undefined;
886
888
  }
887
889
  export interface JoinResourceTypeEventConfiguration {
888
- LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration;
890
+ LoRaWAN?: LoRaWANJoinResourceTypeEventConfiguration | undefined;
889
891
  }
890
892
  export interface MessageDeliveryStatusResourceTypeEventConfiguration {
891
- Sidewalk?: SidewalkResourceTypeEventConfiguration;
893
+ Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
892
894
  }
893
895
  export interface ProximityResourceTypeEventConfiguration {
894
- Sidewalk?: SidewalkResourceTypeEventConfiguration;
896
+ Sidewalk?: SidewalkResourceTypeEventConfiguration | undefined;
895
897
  }
896
898
  export interface GetEventConfigurationByResourceTypesResponse {
897
- DeviceRegistrationState?: DeviceRegistrationStateResourceTypeEventConfiguration;
898
- Proximity?: ProximityResourceTypeEventConfiguration;
899
- Join?: JoinResourceTypeEventConfiguration;
900
- ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration;
901
- MessageDeliveryStatus?: MessageDeliveryStatusResourceTypeEventConfiguration;
899
+ DeviceRegistrationState?:
900
+ | DeviceRegistrationStateResourceTypeEventConfiguration
901
+ | undefined;
902
+ Proximity?: ProximityResourceTypeEventConfiguration | undefined;
903
+ Join?: JoinResourceTypeEventConfiguration | undefined;
904
+ ConnectionStatus?: ConnectionStatusResourceTypeEventConfiguration | undefined;
905
+ MessageDeliveryStatus?:
906
+ | MessageDeliveryStatusResourceTypeEventConfiguration
907
+ | undefined;
902
908
  }
903
909
  export interface GetFuotaTaskRequest {
904
910
  Id: string | undefined;
905
911
  }
906
912
  export interface LoRaWANFuotaTaskGetInfo {
907
- RfRegion?: string;
908
- StartTime?: Date;
913
+ RfRegion?: string | undefined;
914
+ StartTime?: Date | undefined;
909
915
  }
910
916
  export interface GetFuotaTaskResponse {
911
- Arn?: string;
912
- Id?: string;
913
- Status?: FuotaTaskStatus;
914
- Name?: string;
915
- Description?: string;
916
- LoRaWAN?: LoRaWANFuotaTaskGetInfo;
917
- FirmwareUpdateImage?: string;
918
- FirmwareUpdateRole?: string;
919
- CreatedAt?: Date;
920
- RedundancyPercent?: number;
921
- FragmentSizeBytes?: number;
922
- FragmentIntervalMS?: number;
917
+ Arn?: string | undefined;
918
+ Id?: string | undefined;
919
+ Status?: FuotaTaskStatus | undefined;
920
+ Name?: string | undefined;
921
+ Description?: string | undefined;
922
+ LoRaWAN?: LoRaWANFuotaTaskGetInfo | undefined;
923
+ FirmwareUpdateImage?: string | undefined;
924
+ FirmwareUpdateRole?: string | undefined;
925
+ CreatedAt?: Date | undefined;
926
+ RedundancyPercent?: number | undefined;
927
+ FragmentSizeBytes?: number | undefined;
928
+ FragmentIntervalMS?: number | undefined;
923
929
  }
924
930
  export interface GetLogLevelsByResourceTypesRequest {}
925
931
  export declare const WirelessDeviceEvent: {
@@ -938,7 +944,7 @@ export interface WirelessDeviceEventLogOption {
938
944
  export interface WirelessDeviceLogOption {
939
945
  Type: WirelessDeviceType | undefined;
940
946
  LogLevel: LogLevel | undefined;
941
- Events?: WirelessDeviceEventLogOption[];
947
+ Events?: WirelessDeviceEventLogOption[] | undefined;
942
948
  }
943
949
  export declare const WirelessGatewayEvent: {
944
950
  readonly CUPS_Request: "CUPS_Request";
@@ -958,12 +964,12 @@ export type WirelessGatewayType =
958
964
  export interface WirelessGatewayLogOption {
959
965
  Type: WirelessGatewayType | undefined;
960
966
  LogLevel: LogLevel | undefined;
961
- Events?: WirelessGatewayEventLogOption[];
967
+ Events?: WirelessGatewayEventLogOption[] | undefined;
962
968
  }
963
969
  export interface GetLogLevelsByResourceTypesResponse {
964
- DefaultLogLevel?: LogLevel;
965
- WirelessGatewayLogOptions?: WirelessGatewayLogOption[];
966
- WirelessDeviceLogOptions?: WirelessDeviceLogOption[];
970
+ DefaultLogLevel?: LogLevel | undefined;
971
+ WirelessGatewayLogOptions?: WirelessGatewayLogOption[] | undefined;
972
+ WirelessDeviceLogOptions?: WirelessDeviceLogOption[] | undefined;
967
973
  }
968
974
  export interface GetMetricConfigurationRequest {}
969
975
  export declare const SummaryMetricConfigurationStatus: {
@@ -973,10 +979,10 @@ export declare const SummaryMetricConfigurationStatus: {
973
979
  export type SummaryMetricConfigurationStatus =
974
980
  (typeof SummaryMetricConfigurationStatus)[keyof typeof SummaryMetricConfigurationStatus];
975
981
  export interface SummaryMetricConfiguration {
976
- Status?: SummaryMetricConfigurationStatus;
982
+ Status?: SummaryMetricConfigurationStatus | undefined;
977
983
  }
978
984
  export interface GetMetricConfigurationResponse {
979
- SummaryMetric?: SummaryMetricConfiguration;
985
+ SummaryMetric?: SummaryMetricConfiguration | undefined;
980
986
  }
981
987
  export declare const MetricName: {
982
988
  readonly AwsAccountActiveDeviceCount: "AwsAccountActiveDeviceCount";
@@ -1014,15 +1020,15 @@ export declare const MetricName: {
1014
1020
  };
1015
1021
  export type MetricName = (typeof MetricName)[keyof typeof MetricName];
1016
1022
  export interface SummaryMetricQuery {
1017
- QueryId?: string;
1018
- MetricName?: MetricName;
1019
- Dimensions?: Dimension[];
1020
- AggregationPeriod?: AggregationPeriod;
1021
- StartTimestamp?: Date;
1022
- EndTimestamp?: Date;
1023
+ QueryId?: string | undefined;
1024
+ MetricName?: MetricName | undefined;
1025
+ Dimensions?: Dimension[] | undefined;
1026
+ AggregationPeriod?: AggregationPeriod | undefined;
1027
+ StartTimestamp?: Date | undefined;
1028
+ EndTimestamp?: Date | undefined;
1023
1029
  }
1024
1030
  export interface GetMetricsRequest {
1025
- SummaryMetricQueries?: SummaryMetricQuery[];
1031
+ SummaryMetricQueries?: SummaryMetricQuery[] | undefined;
1026
1032
  }
1027
1033
  export declare const MetricQueryStatus: {
1028
1034
  readonly Failed: "Failed";
@@ -1031,84 +1037,84 @@ export declare const MetricQueryStatus: {
1031
1037
  export type MetricQueryStatus =
1032
1038
  (typeof MetricQueryStatus)[keyof typeof MetricQueryStatus];
1033
1039
  export interface MetricQueryValue {
1034
- Min?: number;
1035
- Max?: number;
1036
- Sum?: number;
1037
- Avg?: number;
1038
- Std?: number;
1039
- P90?: number;
1040
+ Min?: number | undefined;
1041
+ Max?: number | undefined;
1042
+ Sum?: number | undefined;
1043
+ Avg?: number | undefined;
1044
+ Std?: number | undefined;
1045
+ P90?: number | undefined;
1040
1046
  }
1041
1047
  export interface SummaryMetricQueryResult {
1042
- QueryId?: string;
1043
- QueryStatus?: MetricQueryStatus;
1044
- Error?: string;
1045
- MetricName?: MetricName;
1046
- Dimensions?: Dimension[];
1047
- AggregationPeriod?: AggregationPeriod;
1048
- StartTimestamp?: Date;
1049
- EndTimestamp?: Date;
1050
- Timestamps?: Date[];
1051
- Values?: MetricQueryValue[];
1052
- Unit?: string;
1048
+ QueryId?: string | undefined;
1049
+ QueryStatus?: MetricQueryStatus | undefined;
1050
+ Error?: string | undefined;
1051
+ MetricName?: MetricName | undefined;
1052
+ Dimensions?: Dimension[] | undefined;
1053
+ AggregationPeriod?: AggregationPeriod | undefined;
1054
+ StartTimestamp?: Date | undefined;
1055
+ EndTimestamp?: Date | undefined;
1056
+ Timestamps?: Date[] | undefined;
1057
+ Values?: MetricQueryValue[] | undefined;
1058
+ Unit?: string | undefined;
1053
1059
  }
1054
1060
  export interface GetMetricsResponse {
1055
- SummaryMetricQueryResults?: SummaryMetricQueryResult[];
1061
+ SummaryMetricQueryResults?: SummaryMetricQueryResult[] | undefined;
1056
1062
  }
1057
1063
  export interface GetMulticastGroupRequest {
1058
1064
  Id: string | undefined;
1059
1065
  }
1060
1066
  export interface LoRaWANMulticastGet {
1061
- RfRegion?: SupportedRfRegion;
1062
- DlClass?: DlClass;
1063
- NumberOfDevicesRequested?: number;
1064
- NumberOfDevicesInGroup?: number;
1067
+ RfRegion?: SupportedRfRegion | undefined;
1068
+ DlClass?: DlClass | undefined;
1069
+ NumberOfDevicesRequested?: number | undefined;
1070
+ NumberOfDevicesInGroup?: number | undefined;
1065
1071
  }
1066
1072
  export interface GetMulticastGroupResponse {
1067
- Arn?: string;
1068
- Id?: string;
1069
- Name?: string;
1070
- Description?: string;
1071
- Status?: string;
1072
- LoRaWAN?: LoRaWANMulticastGet;
1073
- CreatedAt?: Date;
1073
+ Arn?: string | undefined;
1074
+ Id?: string | undefined;
1075
+ Name?: string | undefined;
1076
+ Description?: string | undefined;
1077
+ Status?: string | undefined;
1078
+ LoRaWAN?: LoRaWANMulticastGet | undefined;
1079
+ CreatedAt?: Date | undefined;
1074
1080
  }
1075
1081
  export interface GetMulticastGroupSessionRequest {
1076
1082
  Id: string | undefined;
1077
1083
  }
1078
1084
  export interface LoRaWANMulticastSession {
1079
- DlDr?: number;
1080
- DlFreq?: number;
1081
- SessionStartTime?: Date;
1082
- SessionTimeout?: number;
1083
- PingSlotPeriod?: number;
1085
+ DlDr?: number | undefined;
1086
+ DlFreq?: number | undefined;
1087
+ SessionStartTime?: Date | undefined;
1088
+ SessionTimeout?: number | undefined;
1089
+ PingSlotPeriod?: number | undefined;
1084
1090
  }
1085
1091
  export interface GetMulticastGroupSessionResponse {
1086
- LoRaWAN?: LoRaWANMulticastSession;
1092
+ LoRaWAN?: LoRaWANMulticastSession | undefined;
1087
1093
  }
1088
1094
  export interface GetNetworkAnalyzerConfigurationRequest {
1089
1095
  ConfigurationName: string | undefined;
1090
1096
  }
1091
1097
  export interface GetNetworkAnalyzerConfigurationResponse {
1092
- TraceContent?: TraceContent;
1093
- WirelessDevices?: string[];
1094
- WirelessGateways?: string[];
1095
- Description?: string;
1096
- Arn?: string;
1097
- Name?: string;
1098
- MulticastGroups?: string[];
1098
+ TraceContent?: TraceContent | undefined;
1099
+ WirelessDevices?: string[] | undefined;
1100
+ WirelessGateways?: string[] | undefined;
1101
+ Description?: string | undefined;
1102
+ Arn?: string | undefined;
1103
+ Name?: string | undefined;
1104
+ MulticastGroups?: string[] | undefined;
1099
1105
  }
1100
1106
  export interface GetPartnerAccountRequest {
1101
1107
  PartnerAccountId: string | undefined;
1102
1108
  PartnerType: PartnerType | undefined;
1103
1109
  }
1104
1110
  export interface SidewalkAccountInfoWithFingerprint {
1105
- AmazonId?: string;
1106
- Fingerprint?: string;
1107
- Arn?: string;
1111
+ AmazonId?: string | undefined;
1112
+ Fingerprint?: string | undefined;
1113
+ Arn?: string | undefined;
1108
1114
  }
1109
1115
  export interface GetPartnerAccountResponse {
1110
- Sidewalk?: SidewalkAccountInfoWithFingerprint;
1111
- AccountLinked?: boolean;
1116
+ Sidewalk?: SidewalkAccountInfoWithFingerprint | undefined;
1117
+ AccountLinked?: boolean | undefined;
1112
1118
  }
1113
1119
  export declare const PositionResourceType: {
1114
1120
  readonly WirelessDevice: "WirelessDevice";
@@ -1131,12 +1137,12 @@ export declare const PositionSolverType: {
1131
1137
  export type PositionSolverType =
1132
1138
  (typeof PositionSolverType)[keyof typeof PositionSolverType];
1133
1139
  export interface GetPositionResponse {
1134
- Position?: number[];
1135
- Accuracy?: Accuracy;
1136
- SolverType?: PositionSolverType;
1137
- SolverProvider?: PositionSolverProvider;
1138
- SolverVersion?: string;
1139
- Timestamp?: string;
1140
+ Position?: number[] | undefined;
1141
+ Accuracy?: Accuracy | undefined;
1142
+ SolverType?: PositionSolverType | undefined;
1143
+ SolverProvider?: PositionSolverProvider | undefined;
1144
+ SolverVersion?: string | undefined;
1145
+ Timestamp?: string | undefined;
1140
1146
  }
1141
1147
  export interface GetPositionConfigurationRequest {
1142
1148
  ResourceIdentifier: string | undefined;
@@ -1155,25 +1161,25 @@ export declare const PositionConfigurationStatus: {
1155
1161
  export type PositionConfigurationStatus =
1156
1162
  (typeof PositionConfigurationStatus)[keyof typeof PositionConfigurationStatus];
1157
1163
  export interface SemtechGnssDetail {
1158
- Provider?: PositionSolverProvider;
1159
- Type?: PositionSolverType;
1160
- Status?: PositionConfigurationStatus;
1161
- Fec?: PositionConfigurationFec;
1164
+ Provider?: PositionSolverProvider | undefined;
1165
+ Type?: PositionSolverType | undefined;
1166
+ Status?: PositionConfigurationStatus | undefined;
1167
+ Fec?: PositionConfigurationFec | undefined;
1162
1168
  }
1163
1169
  export interface PositionSolverDetails {
1164
- SemtechGnss?: SemtechGnssDetail;
1170
+ SemtechGnss?: SemtechGnssDetail | undefined;
1165
1171
  }
1166
1172
  export interface GetPositionConfigurationResponse {
1167
- Solvers?: PositionSolverDetails;
1168
- Destination?: string;
1173
+ Solvers?: PositionSolverDetails | undefined;
1174
+ Destination?: string | undefined;
1169
1175
  }
1170
1176
  export interface Gnss {
1171
1177
  Payload: string | undefined;
1172
- CaptureTime?: number;
1173
- CaptureTimeAccuracy?: number;
1174
- AssistPosition?: number[];
1175
- AssistAltitude?: number;
1176
- Use2DSolver?: boolean;
1178
+ CaptureTime?: number | undefined;
1179
+ CaptureTimeAccuracy?: number | undefined;
1180
+ AssistPosition?: number[] | undefined;
1181
+ AssistAltitude?: number | undefined;
1182
+ Use2DSolver?: boolean | undefined;
1177
1183
  }
1178
1184
  export interface Ip {
1179
1185
  IpAddress: string | undefined;
@@ -1183,40 +1189,42 @@ export interface WiFiAccessPoint {
1183
1189
  Rss: number | undefined;
1184
1190
  }
1185
1191
  export interface GetPositionEstimateRequest {
1186
- WiFiAccessPoints?: WiFiAccessPoint[];
1187
- CellTowers?: CellTowers;
1188
- Ip?: Ip;
1189
- Gnss?: Gnss;
1190
- Timestamp?: Date;
1192
+ WiFiAccessPoints?: WiFiAccessPoint[] | undefined;
1193
+ CellTowers?: CellTowers | undefined;
1194
+ Ip?: Ip | undefined;
1195
+ Gnss?: Gnss | undefined;
1196
+ Timestamp?: Date | undefined;
1191
1197
  }
1192
1198
  export interface GetPositionEstimateResponse {
1193
- GeoJsonPayload?: Uint8Array;
1199
+ GeoJsonPayload?: Uint8Array | undefined;
1194
1200
  }
1195
1201
  export interface GetResourceEventConfigurationRequest {
1196
1202
  Identifier: string | undefined;
1197
1203
  IdentifierType: IdentifierType | undefined;
1198
- PartnerType?: EventNotificationPartnerType;
1204
+ PartnerType?: EventNotificationPartnerType | undefined;
1199
1205
  }
1200
1206
  export interface GetResourceEventConfigurationResponse {
1201
- DeviceRegistrationState?: DeviceRegistrationStateEventConfiguration;
1202
- Proximity?: ProximityEventConfiguration;
1203
- Join?: JoinEventConfiguration;
1204
- ConnectionStatus?: ConnectionStatusEventConfiguration;
1205
- MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration;
1207
+ DeviceRegistrationState?:
1208
+ | DeviceRegistrationStateEventConfiguration
1209
+ | undefined;
1210
+ Proximity?: ProximityEventConfiguration | undefined;
1211
+ Join?: JoinEventConfiguration | undefined;
1212
+ ConnectionStatus?: ConnectionStatusEventConfiguration | undefined;
1213
+ MessageDeliveryStatus?: MessageDeliveryStatusEventConfiguration | undefined;
1206
1214
  }
1207
1215
  export interface GetResourceLogLevelRequest {
1208
1216
  ResourceIdentifier: string | undefined;
1209
1217
  ResourceType: string | undefined;
1210
1218
  }
1211
1219
  export interface GetResourceLogLevelResponse {
1212
- LogLevel?: LogLevel;
1220
+ LogLevel?: LogLevel | undefined;
1213
1221
  }
1214
1222
  export interface GetResourcePositionRequest {
1215
1223
  ResourceIdentifier: string | undefined;
1216
1224
  ResourceType: PositionResourceType | undefined;
1217
1225
  }
1218
1226
  export interface GetResourcePositionResponse {
1219
- GeoJsonPayload?: Uint8Array;
1227
+ GeoJsonPayload?: Uint8Array | undefined;
1220
1228
  }
1221
1229
  export declare const WirelessGatewayServiceType: {
1222
1230
  readonly CUPS: "CUPS";
@@ -1225,42 +1233,42 @@ export declare const WirelessGatewayServiceType: {
1225
1233
  export type WirelessGatewayServiceType =
1226
1234
  (typeof WirelessGatewayServiceType)[keyof typeof WirelessGatewayServiceType];
1227
1235
  export interface GetServiceEndpointRequest {
1228
- ServiceType?: WirelessGatewayServiceType;
1236
+ ServiceType?: WirelessGatewayServiceType | undefined;
1229
1237
  }
1230
1238
  export interface GetServiceEndpointResponse {
1231
- ServiceType?: WirelessGatewayServiceType;
1232
- ServiceEndpoint?: string;
1233
- ServerTrust?: string;
1239
+ ServiceType?: WirelessGatewayServiceType | undefined;
1240
+ ServiceEndpoint?: string | undefined;
1241
+ ServerTrust?: string | undefined;
1234
1242
  }
1235
1243
  export interface GetServiceProfileRequest {
1236
1244
  Id: string | undefined;
1237
1245
  }
1238
1246
  export interface LoRaWANGetServiceProfileInfo {
1239
- UlRate?: number;
1240
- UlBucketSize?: number;
1241
- UlRatePolicy?: string;
1242
- DlRate?: number;
1243
- DlBucketSize?: number;
1244
- DlRatePolicy?: string;
1245
- AddGwMetadata?: boolean;
1246
- DevStatusReqFreq?: number;
1247
- ReportDevStatusBattery?: boolean;
1248
- ReportDevStatusMargin?: boolean;
1249
- DrMin?: number;
1250
- DrMax?: number;
1251
- ChannelMask?: string;
1252
- PrAllowed?: boolean;
1253
- HrAllowed?: boolean;
1254
- RaAllowed?: boolean;
1255
- NwkGeoLoc?: boolean;
1256
- TargetPer?: number;
1257
- MinGwDiversity?: number;
1247
+ UlRate?: number | undefined;
1248
+ UlBucketSize?: number | undefined;
1249
+ UlRatePolicy?: string | undefined;
1250
+ DlRate?: number | undefined;
1251
+ DlBucketSize?: number | undefined;
1252
+ DlRatePolicy?: string | undefined;
1253
+ AddGwMetadata?: boolean | undefined;
1254
+ DevStatusReqFreq?: number | undefined;
1255
+ ReportDevStatusBattery?: boolean | undefined;
1256
+ ReportDevStatusMargin?: boolean | undefined;
1257
+ DrMin?: number | undefined;
1258
+ DrMax?: number | undefined;
1259
+ ChannelMask?: string | undefined;
1260
+ PrAllowed?: boolean | undefined;
1261
+ HrAllowed?: boolean | undefined;
1262
+ RaAllowed?: boolean | undefined;
1263
+ NwkGeoLoc?: boolean | undefined;
1264
+ TargetPer?: number | undefined;
1265
+ MinGwDiversity?: number | undefined;
1258
1266
  }
1259
1267
  export interface GetServiceProfileResponse {
1260
- Arn?: string;
1261
- Name?: string;
1262
- Id?: string;
1263
- LoRaWAN?: LoRaWANGetServiceProfileInfo;
1268
+ Arn?: string | undefined;
1269
+ Name?: string | undefined;
1270
+ Id?: string | undefined;
1271
+ LoRaWAN?: LoRaWANGetServiceProfileInfo | undefined;
1264
1272
  }
1265
1273
  export declare const WirelessDeviceIdType: {
1266
1274
  readonly DevEui: "DevEui";
@@ -1283,34 +1291,34 @@ export declare const WirelessDeviceSidewalkStatus: {
1283
1291
  export type WirelessDeviceSidewalkStatus =
1284
1292
  (typeof WirelessDeviceSidewalkStatus)[keyof typeof WirelessDeviceSidewalkStatus];
1285
1293
  export interface SidewalkDevice {
1286
- AmazonId?: string;
1287
- SidewalkId?: string;
1288
- SidewalkManufacturingSn?: string;
1289
- DeviceCertificates?: CertificateList[];
1290
- PrivateKeys?: CertificateList[];
1291
- DeviceProfileId?: string;
1292
- CertificateId?: string;
1293
- Status?: WirelessDeviceSidewalkStatus;
1294
+ AmazonId?: string | undefined;
1295
+ SidewalkId?: string | undefined;
1296
+ SidewalkManufacturingSn?: string | undefined;
1297
+ DeviceCertificates?: CertificateList[] | undefined;
1298
+ PrivateKeys?: CertificateList[] | undefined;
1299
+ DeviceProfileId?: string | undefined;
1300
+ CertificateId?: string | undefined;
1301
+ Status?: WirelessDeviceSidewalkStatus | undefined;
1294
1302
  }
1295
1303
  export interface GetWirelessDeviceResponse {
1296
- Type?: WirelessDeviceType;
1297
- Name?: string;
1298
- Description?: string;
1299
- DestinationName?: string;
1300
- Id?: string;
1301
- Arn?: string;
1302
- ThingName?: string;
1303
- ThingArn?: string;
1304
- LoRaWAN?: LoRaWANDevice;
1305
- Sidewalk?: SidewalkDevice;
1306
- Positioning?: PositioningConfigStatus;
1304
+ Type?: WirelessDeviceType | undefined;
1305
+ Name?: string | undefined;
1306
+ Description?: string | undefined;
1307
+ DestinationName?: string | undefined;
1308
+ Id?: string | undefined;
1309
+ Arn?: string | undefined;
1310
+ ThingName?: string | undefined;
1311
+ ThingArn?: string | undefined;
1312
+ LoRaWAN?: LoRaWANDevice | undefined;
1313
+ Sidewalk?: SidewalkDevice | undefined;
1314
+ Positioning?: PositioningConfigStatus | undefined;
1307
1315
  }
1308
1316
  export interface GetWirelessDeviceImportTaskRequest {
1309
1317
  Id: string | undefined;
1310
1318
  }
1311
1319
  export interface SidewalkGetStartImportInfo {
1312
- DeviceCreationFileList?: string[];
1313
- Role?: string;
1320
+ DeviceCreationFileList?: string[] | undefined;
1321
+ Role?: string | undefined;
1314
1322
  }
1315
1323
  export declare const ImportTaskStatus: {
1316
1324
  readonly COMPLETE: "COMPLETE";
@@ -1323,54 +1331,54 @@ export declare const ImportTaskStatus: {
1323
1331
  export type ImportTaskStatus =
1324
1332
  (typeof ImportTaskStatus)[keyof typeof ImportTaskStatus];
1325
1333
  export interface GetWirelessDeviceImportTaskResponse {
1326
- Id?: string;
1327
- Arn?: string;
1328
- DestinationName?: string;
1329
- Sidewalk?: SidewalkGetStartImportInfo;
1330
- CreationTime?: Date;
1331
- Status?: ImportTaskStatus;
1332
- StatusReason?: string;
1333
- InitializedImportedDeviceCount?: number;
1334
- PendingImportedDeviceCount?: number;
1335
- OnboardedImportedDeviceCount?: number;
1336
- FailedImportedDeviceCount?: number;
1334
+ Id?: string | undefined;
1335
+ Arn?: string | undefined;
1336
+ DestinationName?: string | undefined;
1337
+ Sidewalk?: SidewalkGetStartImportInfo | undefined;
1338
+ CreationTime?: Date | undefined;
1339
+ Status?: ImportTaskStatus | undefined;
1340
+ StatusReason?: string | undefined;
1341
+ InitializedImportedDeviceCount?: number | undefined;
1342
+ PendingImportedDeviceCount?: number | undefined;
1343
+ OnboardedImportedDeviceCount?: number | undefined;
1344
+ FailedImportedDeviceCount?: number | undefined;
1337
1345
  }
1338
1346
  export interface GetWirelessDeviceStatisticsRequest {
1339
1347
  WirelessDeviceId: string | undefined;
1340
1348
  }
1341
1349
  export interface LoRaWANGatewayMetadata {
1342
- GatewayEui?: string;
1343
- Snr?: number;
1344
- Rssi?: number;
1350
+ GatewayEui?: string | undefined;
1351
+ Snr?: number | undefined;
1352
+ Rssi?: number | undefined;
1345
1353
  }
1346
1354
  export interface LoRaWANPublicGatewayMetadata {
1347
- ProviderNetId?: string;
1348
- Id?: string;
1349
- Rssi?: number;
1350
- Snr?: number;
1351
- RfRegion?: string;
1352
- DlAllowed?: boolean;
1355
+ ProviderNetId?: string | undefined;
1356
+ Id?: string | undefined;
1357
+ Rssi?: number | undefined;
1358
+ Snr?: number | undefined;
1359
+ RfRegion?: string | undefined;
1360
+ DlAllowed?: boolean | undefined;
1353
1361
  }
1354
1362
  export interface LoRaWANDeviceMetadata {
1355
- DevEui?: string;
1356
- FPort?: number;
1357
- DataRate?: number;
1358
- Frequency?: number;
1359
- Timestamp?: string;
1360
- Gateways?: LoRaWANGatewayMetadata[];
1361
- PublicGateways?: LoRaWANPublicGatewayMetadata[];
1363
+ DevEui?: string | undefined;
1364
+ FPort?: number | undefined;
1365
+ DataRate?: number | undefined;
1366
+ Frequency?: number | undefined;
1367
+ Timestamp?: string | undefined;
1368
+ Gateways?: LoRaWANGatewayMetadata[] | undefined;
1369
+ PublicGateways?: LoRaWANPublicGatewayMetadata[] | undefined;
1362
1370
  }
1363
1371
  export interface SidewalkDeviceMetadata {
1364
- Rssi?: number;
1365
- BatteryLevel?: BatteryLevel;
1366
- Event?: Event;
1367
- DeviceState?: DeviceState;
1372
+ Rssi?: number | undefined;
1373
+ BatteryLevel?: BatteryLevel | undefined;
1374
+ Event?: Event | undefined;
1375
+ DeviceState?: DeviceState | undefined;
1368
1376
  }
1369
1377
  export interface GetWirelessDeviceStatisticsResponse {
1370
- WirelessDeviceId?: string;
1371
- LastUplinkReceivedAt?: string;
1372
- LoRaWAN?: LoRaWANDeviceMetadata;
1373
- Sidewalk?: SidewalkDeviceMetadata;
1378
+ WirelessDeviceId?: string | undefined;
1379
+ LastUplinkReceivedAt?: string | undefined;
1380
+ LoRaWAN?: LoRaWANDeviceMetadata | undefined;
1381
+ Sidewalk?: SidewalkDeviceMetadata | undefined;
1374
1382
  }
1375
1383
  export declare const WirelessGatewayIdType: {
1376
1384
  readonly GatewayEui: "GatewayEui";
@@ -1384,56 +1392,56 @@ export interface GetWirelessGatewayRequest {
1384
1392
  IdentifierType: WirelessGatewayIdType | undefined;
1385
1393
  }
1386
1394
  export interface GetWirelessGatewayResponse {
1387
- Name?: string;
1388
- Id?: string;
1389
- Description?: string;
1390
- LoRaWAN?: LoRaWANGateway;
1391
- Arn?: string;
1392
- ThingName?: string;
1393
- ThingArn?: string;
1395
+ Name?: string | undefined;
1396
+ Id?: string | undefined;
1397
+ Description?: string | undefined;
1398
+ LoRaWAN?: LoRaWANGateway | undefined;
1399
+ Arn?: string | undefined;
1400
+ ThingName?: string | undefined;
1401
+ ThingArn?: string | undefined;
1394
1402
  }
1395
1403
  export interface GetWirelessGatewayCertificateRequest {
1396
1404
  Id: string | undefined;
1397
1405
  }
1398
1406
  export interface GetWirelessGatewayCertificateResponse {
1399
- IotCertificateId?: string;
1400
- LoRaWANNetworkServerCertificateId?: string;
1407
+ IotCertificateId?: string | undefined;
1408
+ LoRaWANNetworkServerCertificateId?: string | undefined;
1401
1409
  }
1402
1410
  export interface GetWirelessGatewayFirmwareInformationRequest {
1403
1411
  Id: string | undefined;
1404
1412
  }
1405
1413
  export interface LoRaWANGatewayCurrentVersion {
1406
- CurrentVersion?: LoRaWANGatewayVersion;
1414
+ CurrentVersion?: LoRaWANGatewayVersion | undefined;
1407
1415
  }
1408
1416
  export interface GetWirelessGatewayFirmwareInformationResponse {
1409
- LoRaWAN?: LoRaWANGatewayCurrentVersion;
1417
+ LoRaWAN?: LoRaWANGatewayCurrentVersion | undefined;
1410
1418
  }
1411
1419
  export interface GetWirelessGatewayStatisticsRequest {
1412
1420
  WirelessGatewayId: string | undefined;
1413
1421
  }
1414
1422
  export interface GetWirelessGatewayStatisticsResponse {
1415
- WirelessGatewayId?: string;
1416
- LastUplinkReceivedAt?: string;
1417
- ConnectionStatus?: ConnectionStatus;
1423
+ WirelessGatewayId?: string | undefined;
1424
+ LastUplinkReceivedAt?: string | undefined;
1425
+ ConnectionStatus?: ConnectionStatus | undefined;
1418
1426
  }
1419
1427
  export interface GetWirelessGatewayTaskRequest {
1420
1428
  Id: string | undefined;
1421
1429
  }
1422
1430
  export interface GetWirelessGatewayTaskResponse {
1423
- WirelessGatewayId?: string;
1424
- WirelessGatewayTaskDefinitionId?: string;
1425
- LastUplinkReceivedAt?: string;
1426
- TaskCreatedAt?: string;
1427
- Status?: WirelessGatewayTaskStatus;
1431
+ WirelessGatewayId?: string | undefined;
1432
+ WirelessGatewayTaskDefinitionId?: string | undefined;
1433
+ LastUplinkReceivedAt?: string | undefined;
1434
+ TaskCreatedAt?: string | undefined;
1435
+ Status?: WirelessGatewayTaskStatus | undefined;
1428
1436
  }
1429
1437
  export interface GetWirelessGatewayTaskDefinitionRequest {
1430
1438
  Id: string | undefined;
1431
1439
  }
1432
1440
  export interface GetWirelessGatewayTaskDefinitionResponse {
1433
- AutoCreateTasks?: boolean;
1434
- Name?: string;
1435
- Update?: UpdateWirelessGatewayTaskCreate;
1436
- Arn?: string;
1441
+ AutoCreateTasks?: boolean | undefined;
1442
+ Name?: string | undefined;
1443
+ Update?: UpdateWirelessGatewayTaskCreate | undefined;
1444
+ Arn?: string | undefined;
1437
1445
  }
1438
1446
  export declare const OnboardStatus: {
1439
1447
  readonly FAILED: "FAILED";
@@ -1443,103 +1451,105 @@ export declare const OnboardStatus: {
1443
1451
  };
1444
1452
  export type OnboardStatus = (typeof OnboardStatus)[keyof typeof OnboardStatus];
1445
1453
  export interface ImportedSidewalkDevice {
1446
- SidewalkManufacturingSn?: string;
1447
- OnboardingStatus?: OnboardStatus;
1448
- OnboardingStatusReason?: string;
1449
- LastUpdateTime?: Date;
1454
+ SidewalkManufacturingSn?: string | undefined;
1455
+ OnboardingStatus?: OnboardStatus | undefined;
1456
+ OnboardingStatusReason?: string | undefined;
1457
+ LastUpdateTime?: Date | undefined;
1450
1458
  }
1451
1459
  export interface ImportedWirelessDevice {
1452
- Sidewalk?: ImportedSidewalkDevice;
1460
+ Sidewalk?: ImportedSidewalkDevice | undefined;
1453
1461
  }
1454
1462
  export interface ListDestinationsRequest {
1455
- MaxResults?: number;
1456
- NextToken?: string;
1463
+ MaxResults?: number | undefined;
1464
+ NextToken?: string | undefined;
1457
1465
  }
1458
1466
  export interface ListDestinationsResponse {
1459
- NextToken?: string;
1460
- DestinationList?: Destinations[];
1467
+ NextToken?: string | undefined;
1468
+ DestinationList?: Destinations[] | undefined;
1461
1469
  }
1462
1470
  export interface ListDeviceProfilesRequest {
1463
- NextToken?: string;
1464
- MaxResults?: number;
1465
- DeviceProfileType?: DeviceProfileType;
1471
+ NextToken?: string | undefined;
1472
+ MaxResults?: number | undefined;
1473
+ DeviceProfileType?: DeviceProfileType | undefined;
1466
1474
  }
1467
1475
  export interface ListDeviceProfilesResponse {
1468
- NextToken?: string;
1469
- DeviceProfileList?: DeviceProfile[];
1476
+ NextToken?: string | undefined;
1477
+ DeviceProfileList?: DeviceProfile[] | undefined;
1470
1478
  }
1471
1479
  export interface ListDevicesForWirelessDeviceImportTaskRequest {
1472
1480
  Id: string | undefined;
1473
- MaxResults?: number;
1474
- NextToken?: string;
1475
- Status?: OnboardStatus;
1481
+ MaxResults?: number | undefined;
1482
+ NextToken?: string | undefined;
1483
+ Status?: OnboardStatus | undefined;
1476
1484
  }
1477
1485
  export interface ListDevicesForWirelessDeviceImportTaskResponse {
1478
- NextToken?: string;
1479
- DestinationName?: string;
1480
- ImportedWirelessDeviceList?: ImportedWirelessDevice[];
1486
+ NextToken?: string | undefined;
1487
+ DestinationName?: string | undefined;
1488
+ ImportedWirelessDeviceList?: ImportedWirelessDevice[] | undefined;
1481
1489
  }
1482
1490
  export interface ListEventConfigurationsRequest {
1483
1491
  ResourceType: EventNotificationResourceType | undefined;
1484
- MaxResults?: number;
1485
- NextToken?: string;
1492
+ MaxResults?: number | undefined;
1493
+ NextToken?: string | undefined;
1486
1494
  }
1487
1495
  export interface ListEventConfigurationsResponse {
1488
- NextToken?: string;
1489
- EventConfigurationsList?: EventConfigurationItem[];
1496
+ NextToken?: string | undefined;
1497
+ EventConfigurationsList?: EventConfigurationItem[] | undefined;
1490
1498
  }
1491
1499
  export interface ListFuotaTasksRequest {
1492
- NextToken?: string;
1493
- MaxResults?: number;
1500
+ NextToken?: string | undefined;
1501
+ MaxResults?: number | undefined;
1494
1502
  }
1495
1503
  export interface ListFuotaTasksResponse {
1496
- NextToken?: string;
1497
- FuotaTaskList?: FuotaTask[];
1504
+ NextToken?: string | undefined;
1505
+ FuotaTaskList?: FuotaTask[] | undefined;
1498
1506
  }
1499
1507
  export interface ListMulticastGroupsRequest {
1500
- NextToken?: string;
1501
- MaxResults?: number;
1508
+ NextToken?: string | undefined;
1509
+ MaxResults?: number | undefined;
1502
1510
  }
1503
1511
  export interface MulticastGroup {
1504
- Id?: string;
1505
- Arn?: string;
1506
- Name?: string;
1512
+ Id?: string | undefined;
1513
+ Arn?: string | undefined;
1514
+ Name?: string | undefined;
1507
1515
  }
1508
1516
  export interface ListMulticastGroupsResponse {
1509
- NextToken?: string;
1510
- MulticastGroupList?: MulticastGroup[];
1517
+ NextToken?: string | undefined;
1518
+ MulticastGroupList?: MulticastGroup[] | undefined;
1511
1519
  }
1512
1520
  export interface ListMulticastGroupsByFuotaTaskRequest {
1513
1521
  Id: string | undefined;
1514
- NextToken?: string;
1515
- MaxResults?: number;
1522
+ NextToken?: string | undefined;
1523
+ MaxResults?: number | undefined;
1516
1524
  }
1517
1525
  export interface MulticastGroupByFuotaTask {
1518
- Id?: string;
1526
+ Id?: string | undefined;
1519
1527
  }
1520
1528
  export interface ListMulticastGroupsByFuotaTaskResponse {
1521
- NextToken?: string;
1522
- MulticastGroupList?: MulticastGroupByFuotaTask[];
1529
+ NextToken?: string | undefined;
1530
+ MulticastGroupList?: MulticastGroupByFuotaTask[] | undefined;
1523
1531
  }
1524
1532
  export interface ListNetworkAnalyzerConfigurationsRequest {
1525
- MaxResults?: number;
1526
- NextToken?: string;
1533
+ MaxResults?: number | undefined;
1534
+ NextToken?: string | undefined;
1527
1535
  }
1528
1536
  export interface NetworkAnalyzerConfigurations {
1529
- Arn?: string;
1530
- Name?: string;
1537
+ Arn?: string | undefined;
1538
+ Name?: string | undefined;
1531
1539
  }
1532
1540
  export interface ListNetworkAnalyzerConfigurationsResponse {
1533
- NextToken?: string;
1534
- NetworkAnalyzerConfigurationList?: NetworkAnalyzerConfigurations[];
1541
+ NextToken?: string | undefined;
1542
+ NetworkAnalyzerConfigurationList?:
1543
+ | NetworkAnalyzerConfigurations[]
1544
+ | undefined;
1535
1545
  }
1536
1546
  export interface ListPartnerAccountsRequest {
1537
- NextToken?: string;
1538
- MaxResults?: number;
1547
+ NextToken?: string | undefined;
1548
+ MaxResults?: number | undefined;
1539
1549
  }
1540
1550
  export interface ListPartnerAccountsResponse {
1541
- NextToken?: string;
1542
- Sidewalk?: SidewalkAccountInfoWithFingerprint[];
1551
+ NextToken?: string | undefined;
1552
+ Sidewalk?: SidewalkAccountInfoWithFingerprint[] | undefined;
1543
1553
  }
1544
1554
  export declare const SidewalkAccountInfoFilterSensitiveLog: (
1545
1555
  obj: SidewalkAccountInfo