@aws-sdk/client-cloudwatch-events 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.
@@ -57,15 +57,15 @@ export declare const ApiDestinationHttpMethod: {
57
57
  export type ApiDestinationHttpMethod =
58
58
  (typeof ApiDestinationHttpMethod)[keyof typeof ApiDestinationHttpMethod];
59
59
  export interface ApiDestination {
60
- ApiDestinationArn?: string;
61
- Name?: string;
62
- ApiDestinationState?: ApiDestinationState;
63
- ConnectionArn?: string;
64
- InvocationEndpoint?: string;
65
- HttpMethod?: ApiDestinationHttpMethod;
66
- InvocationRateLimitPerSecond?: number;
67
- CreationTime?: Date;
68
- LastModifiedTime?: Date;
60
+ ApiDestinationArn?: string | undefined;
61
+ Name?: string | undefined;
62
+ ApiDestinationState?: ApiDestinationState | undefined;
63
+ ConnectionArn?: string | undefined;
64
+ InvocationEndpoint?: string | undefined;
65
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
66
+ InvocationRateLimitPerSecond?: number | undefined;
67
+ CreationTime?: Date | undefined;
68
+ LastModifiedTime?: Date | undefined;
69
69
  }
70
70
  export declare const ArchiveState: {
71
71
  readonly CREATE_FAILED: "CREATE_FAILED";
@@ -77,14 +77,14 @@ export declare const ArchiveState: {
77
77
  };
78
78
  export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
79
79
  export interface Archive {
80
- ArchiveName?: string;
81
- EventSourceArn?: string;
82
- State?: ArchiveState;
83
- StateReason?: string;
84
- RetentionDays?: number;
85
- SizeBytes?: number;
86
- EventCount?: number;
87
- CreationTime?: Date;
80
+ ArchiveName?: string | undefined;
81
+ EventSourceArn?: string | undefined;
82
+ State?: ArchiveState | undefined;
83
+ StateReason?: string | undefined;
84
+ RetentionDays?: number | undefined;
85
+ SizeBytes?: number | undefined;
86
+ EventCount?: number | undefined;
87
+ CreationTime?: Date | undefined;
88
88
  }
89
89
  export declare const AssignPublicIp: {
90
90
  readonly DISABLED: "DISABLED";
@@ -105,9 +105,9 @@ export declare const ReplayState: {
105
105
  };
106
106
  export type ReplayState = (typeof ReplayState)[keyof typeof ReplayState];
107
107
  export interface CancelReplayResponse {
108
- ReplayArn?: string;
109
- State?: ReplayState;
110
- StateReason?: string;
108
+ ReplayArn?: string | undefined;
109
+ State?: ReplayState | undefined;
110
+ StateReason?: string | undefined;
111
111
  }
112
112
  export declare class IllegalStatusException extends __BaseException {
113
113
  readonly name: "IllegalStatusException";
@@ -118,17 +118,17 @@ export declare class IllegalStatusException extends __BaseException {
118
118
  }
119
119
  export interface CreateApiDestinationRequest {
120
120
  Name: string | undefined;
121
- Description?: string;
121
+ Description?: string | undefined;
122
122
  ConnectionArn: string | undefined;
123
123
  InvocationEndpoint: string | undefined;
124
124
  HttpMethod: ApiDestinationHttpMethod | undefined;
125
- InvocationRateLimitPerSecond?: number;
125
+ InvocationRateLimitPerSecond?: number | undefined;
126
126
  }
127
127
  export interface CreateApiDestinationResponse {
128
- ApiDestinationArn?: string;
129
- ApiDestinationState?: ApiDestinationState;
130
- CreationTime?: Date;
131
- LastModifiedTime?: Date;
128
+ ApiDestinationArn?: string | undefined;
129
+ ApiDestinationState?: ApiDestinationState | undefined;
130
+ CreationTime?: Date | undefined;
131
+ LastModifiedTime?: Date | undefined;
132
132
  }
133
133
  export declare class LimitExceededException extends __BaseException {
134
134
  readonly name: "LimitExceededException";
@@ -147,15 +147,15 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
147
147
  export interface CreateArchiveRequest {
148
148
  ArchiveName: string | undefined;
149
149
  EventSourceArn: string | undefined;
150
- Description?: string;
151
- EventPattern?: string;
152
- RetentionDays?: number;
150
+ Description?: string | undefined;
151
+ EventPattern?: string | undefined;
152
+ RetentionDays?: number | undefined;
153
153
  }
154
154
  export interface CreateArchiveResponse {
155
- ArchiveArn?: string;
156
- State?: ArchiveState;
157
- StateReason?: string;
158
- CreationTime?: Date;
155
+ ArchiveArn?: string | undefined;
156
+ State?: ArchiveState | undefined;
157
+ StateReason?: string | undefined;
158
+ CreationTime?: Date | undefined;
159
159
  }
160
160
  export declare class InvalidEventPatternException extends __BaseException {
161
161
  readonly name: "InvalidEventPatternException";
@@ -180,24 +180,24 @@ export interface CreateConnectionBasicAuthRequestParameters {
180
180
  Password: string | undefined;
181
181
  }
182
182
  export interface ConnectionBodyParameter {
183
- Key?: string;
184
- Value?: string;
185
- IsValueSecret?: boolean;
183
+ Key?: string | undefined;
184
+ Value?: string | undefined;
185
+ IsValueSecret?: boolean | undefined;
186
186
  }
187
187
  export interface ConnectionHeaderParameter {
188
- Key?: string;
189
- Value?: string;
190
- IsValueSecret?: boolean;
188
+ Key?: string | undefined;
189
+ Value?: string | undefined;
190
+ IsValueSecret?: boolean | undefined;
191
191
  }
192
192
  export interface ConnectionQueryStringParameter {
193
- Key?: string;
194
- Value?: string;
195
- IsValueSecret?: boolean;
193
+ Key?: string | undefined;
194
+ Value?: string | undefined;
195
+ IsValueSecret?: boolean | undefined;
196
196
  }
197
197
  export interface ConnectionHttpParameters {
198
- HeaderParameters?: ConnectionHeaderParameter[];
199
- QueryStringParameters?: ConnectionQueryStringParameter[];
200
- BodyParameters?: ConnectionBodyParameter[];
198
+ HeaderParameters?: ConnectionHeaderParameter[] | undefined;
199
+ QueryStringParameters?: ConnectionQueryStringParameter[] | undefined;
200
+ BodyParameters?: ConnectionBodyParameter[] | undefined;
201
201
  }
202
202
  export interface CreateConnectionOAuthClientRequestParameters {
203
203
  ClientID: string | undefined;
@@ -214,17 +214,19 @@ export interface CreateConnectionOAuthRequestParameters {
214
214
  ClientParameters: CreateConnectionOAuthClientRequestParameters | undefined;
215
215
  AuthorizationEndpoint: string | undefined;
216
216
  HttpMethod: ConnectionOAuthHttpMethod | undefined;
217
- OAuthHttpParameters?: ConnectionHttpParameters;
217
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
218
218
  }
219
219
  export interface CreateConnectionAuthRequestParameters {
220
- BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters;
221
- OAuthParameters?: CreateConnectionOAuthRequestParameters;
222
- ApiKeyAuthParameters?: CreateConnectionApiKeyAuthRequestParameters;
223
- InvocationHttpParameters?: ConnectionHttpParameters;
220
+ BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters | undefined;
221
+ OAuthParameters?: CreateConnectionOAuthRequestParameters | undefined;
222
+ ApiKeyAuthParameters?:
223
+ | CreateConnectionApiKeyAuthRequestParameters
224
+ | undefined;
225
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
224
226
  }
225
227
  export interface CreateConnectionRequest {
226
228
  Name: string | undefined;
227
- Description?: string;
229
+ Description?: string | undefined;
228
230
  AuthorizationType: ConnectionAuthorizationType | undefined;
229
231
  AuthParameters: CreateConnectionAuthRequestParameters | undefined;
230
232
  }
@@ -240,10 +242,10 @@ export declare const ConnectionState: {
240
242
  export type ConnectionState =
241
243
  (typeof ConnectionState)[keyof typeof ConnectionState];
242
244
  export interface CreateConnectionResponse {
243
- ConnectionArn?: string;
244
- ConnectionState?: ConnectionState;
245
- CreationTime?: Date;
246
- LastModifiedTime?: Date;
245
+ ConnectionArn?: string | undefined;
246
+ ConnectionState?: ConnectionState | undefined;
247
+ CreationTime?: Date | undefined;
248
+ LastModifiedTime?: Date | undefined;
247
249
  }
248
250
  export interface Tag {
249
251
  Key: string | undefined;
@@ -251,18 +253,18 @@ export interface Tag {
251
253
  }
252
254
  export interface CreateEventBusRequest {
253
255
  Name: string | undefined;
254
- EventSourceName?: string;
255
- Tags?: Tag[];
256
+ EventSourceName?: string | undefined;
257
+ Tags?: Tag[] | undefined;
256
258
  }
257
259
  export interface CreateEventBusResponse {
258
- EventBusArn?: string;
260
+ EventBusArn?: string | undefined;
259
261
  }
260
262
  export interface CreatePartnerEventSourceRequest {
261
263
  Name: string | undefined;
262
264
  Account: string | undefined;
263
265
  }
264
266
  export interface CreatePartnerEventSourceResponse {
265
- EventSourceArn?: string;
267
+ EventSourceArn?: string | undefined;
266
268
  }
267
269
  export interface DeactivateEventSourceRequest {
268
270
  Name: string | undefined;
@@ -271,11 +273,11 @@ export interface DeauthorizeConnectionRequest {
271
273
  Name: string | undefined;
272
274
  }
273
275
  export interface DeauthorizeConnectionResponse {
274
- ConnectionArn?: string;
275
- ConnectionState?: ConnectionState;
276
- CreationTime?: Date;
277
- LastModifiedTime?: Date;
278
- LastAuthorizedTime?: Date;
276
+ ConnectionArn?: string | undefined;
277
+ ConnectionState?: ConnectionState | undefined;
278
+ CreationTime?: Date | undefined;
279
+ LastModifiedTime?: Date | undefined;
280
+ LastAuthorizedTime?: Date | undefined;
279
281
  }
280
282
  export interface DeleteApiDestinationRequest {
281
283
  Name: string | undefined;
@@ -289,11 +291,11 @@ export interface DeleteConnectionRequest {
289
291
  Name: string | undefined;
290
292
  }
291
293
  export interface DeleteConnectionResponse {
292
- ConnectionArn?: string;
293
- ConnectionState?: ConnectionState;
294
- CreationTime?: Date;
295
- LastModifiedTime?: Date;
296
- LastAuthorizedTime?: Date;
294
+ ConnectionArn?: string | undefined;
295
+ ConnectionState?: ConnectionState | undefined;
296
+ CreationTime?: Date | undefined;
297
+ LastModifiedTime?: Date | undefined;
298
+ LastAuthorizedTime?: Date | undefined;
297
299
  }
298
300
  export interface DeleteEventBusRequest {
299
301
  Name: string | undefined;
@@ -304,8 +306,8 @@ export interface DeletePartnerEventSourceRequest {
304
306
  }
305
307
  export interface DeleteRuleRequest {
306
308
  Name: string | undefined;
307
- EventBusName?: string;
308
- Force?: boolean;
309
+ EventBusName?: string | undefined;
310
+ Force?: boolean | undefined;
309
311
  }
310
312
  export declare class ManagedRuleException extends __BaseException {
311
313
  readonly name: "ManagedRuleException";
@@ -318,77 +320,77 @@ export interface DescribeApiDestinationRequest {
318
320
  Name: string | undefined;
319
321
  }
320
322
  export interface DescribeApiDestinationResponse {
321
- ApiDestinationArn?: string;
322
- Name?: string;
323
- Description?: string;
324
- ApiDestinationState?: ApiDestinationState;
325
- ConnectionArn?: string;
326
- InvocationEndpoint?: string;
327
- HttpMethod?: ApiDestinationHttpMethod;
328
- InvocationRateLimitPerSecond?: number;
329
- CreationTime?: Date;
330
- LastModifiedTime?: Date;
323
+ ApiDestinationArn?: string | undefined;
324
+ Name?: string | undefined;
325
+ Description?: string | undefined;
326
+ ApiDestinationState?: ApiDestinationState | undefined;
327
+ ConnectionArn?: string | undefined;
328
+ InvocationEndpoint?: string | undefined;
329
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
330
+ InvocationRateLimitPerSecond?: number | undefined;
331
+ CreationTime?: Date | undefined;
332
+ LastModifiedTime?: Date | undefined;
331
333
  }
332
334
  export interface DescribeArchiveRequest {
333
335
  ArchiveName: string | undefined;
334
336
  }
335
337
  export interface DescribeArchiveResponse {
336
- ArchiveArn?: string;
337
- ArchiveName?: string;
338
- EventSourceArn?: string;
339
- Description?: string;
340
- EventPattern?: string;
341
- State?: ArchiveState;
342
- StateReason?: string;
343
- RetentionDays?: number;
344
- SizeBytes?: number;
345
- EventCount?: number;
346
- CreationTime?: Date;
338
+ ArchiveArn?: string | undefined;
339
+ ArchiveName?: string | undefined;
340
+ EventSourceArn?: string | undefined;
341
+ Description?: string | undefined;
342
+ EventPattern?: string | undefined;
343
+ State?: ArchiveState | undefined;
344
+ StateReason?: string | undefined;
345
+ RetentionDays?: number | undefined;
346
+ SizeBytes?: number | undefined;
347
+ EventCount?: number | undefined;
348
+ CreationTime?: Date | undefined;
347
349
  }
348
350
  export interface DescribeConnectionRequest {
349
351
  Name: string | undefined;
350
352
  }
351
353
  export interface ConnectionApiKeyAuthResponseParameters {
352
- ApiKeyName?: string;
354
+ ApiKeyName?: string | undefined;
353
355
  }
354
356
  export interface ConnectionBasicAuthResponseParameters {
355
- Username?: string;
357
+ Username?: string | undefined;
356
358
  }
357
359
  export interface ConnectionOAuthClientResponseParameters {
358
- ClientID?: string;
360
+ ClientID?: string | undefined;
359
361
  }
360
362
  export interface ConnectionOAuthResponseParameters {
361
- ClientParameters?: ConnectionOAuthClientResponseParameters;
362
- AuthorizationEndpoint?: string;
363
- HttpMethod?: ConnectionOAuthHttpMethod;
364
- OAuthHttpParameters?: ConnectionHttpParameters;
363
+ ClientParameters?: ConnectionOAuthClientResponseParameters | undefined;
364
+ AuthorizationEndpoint?: string | undefined;
365
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
366
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
365
367
  }
366
368
  export interface ConnectionAuthResponseParameters {
367
- BasicAuthParameters?: ConnectionBasicAuthResponseParameters;
368
- OAuthParameters?: ConnectionOAuthResponseParameters;
369
- ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters;
370
- InvocationHttpParameters?: ConnectionHttpParameters;
369
+ BasicAuthParameters?: ConnectionBasicAuthResponseParameters | undefined;
370
+ OAuthParameters?: ConnectionOAuthResponseParameters | undefined;
371
+ ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters | undefined;
372
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
371
373
  }
372
374
  export interface DescribeConnectionResponse {
373
- ConnectionArn?: string;
374
- Name?: string;
375
- Description?: string;
376
- ConnectionState?: ConnectionState;
377
- StateReason?: string;
378
- AuthorizationType?: ConnectionAuthorizationType;
379
- SecretArn?: string;
380
- AuthParameters?: ConnectionAuthResponseParameters;
381
- CreationTime?: Date;
382
- LastModifiedTime?: Date;
383
- LastAuthorizedTime?: Date;
375
+ ConnectionArn?: string | undefined;
376
+ Name?: string | undefined;
377
+ Description?: string | undefined;
378
+ ConnectionState?: ConnectionState | undefined;
379
+ StateReason?: string | undefined;
380
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
381
+ SecretArn?: string | undefined;
382
+ AuthParameters?: ConnectionAuthResponseParameters | undefined;
383
+ CreationTime?: Date | undefined;
384
+ LastModifiedTime?: Date | undefined;
385
+ LastAuthorizedTime?: Date | undefined;
384
386
  }
385
387
  export interface DescribeEventBusRequest {
386
- Name?: string;
388
+ Name?: string | undefined;
387
389
  }
388
390
  export interface DescribeEventBusResponse {
389
- Name?: string;
390
- Arn?: string;
391
- Policy?: string;
391
+ Name?: string | undefined;
392
+ Arn?: string | undefined;
393
+ Policy?: string | undefined;
392
394
  }
393
395
  export interface DescribeEventSourceRequest {
394
396
  Name: string | undefined;
@@ -401,44 +403,44 @@ export declare const EventSourceState: {
401
403
  export type EventSourceState =
402
404
  (typeof EventSourceState)[keyof typeof EventSourceState];
403
405
  export interface DescribeEventSourceResponse {
404
- Arn?: string;
405
- CreatedBy?: string;
406
- CreationTime?: Date;
407
- ExpirationTime?: Date;
408
- Name?: string;
409
- State?: EventSourceState;
406
+ Arn?: string | undefined;
407
+ CreatedBy?: string | undefined;
408
+ CreationTime?: Date | undefined;
409
+ ExpirationTime?: Date | undefined;
410
+ Name?: string | undefined;
411
+ State?: EventSourceState | undefined;
410
412
  }
411
413
  export interface DescribePartnerEventSourceRequest {
412
414
  Name: string | undefined;
413
415
  }
414
416
  export interface DescribePartnerEventSourceResponse {
415
- Arn?: string;
416
- Name?: string;
417
+ Arn?: string | undefined;
418
+ Name?: string | undefined;
417
419
  }
418
420
  export interface DescribeReplayRequest {
419
421
  ReplayName: string | undefined;
420
422
  }
421
423
  export interface ReplayDestination {
422
424
  Arn: string | undefined;
423
- FilterArns?: string[];
425
+ FilterArns?: string[] | undefined;
424
426
  }
425
427
  export interface DescribeReplayResponse {
426
- ReplayName?: string;
427
- ReplayArn?: string;
428
- Description?: string;
429
- State?: ReplayState;
430
- StateReason?: string;
431
- EventSourceArn?: string;
432
- Destination?: ReplayDestination;
433
- EventStartTime?: Date;
434
- EventEndTime?: Date;
435
- EventLastReplayedTime?: Date;
436
- ReplayStartTime?: Date;
437
- ReplayEndTime?: Date;
428
+ ReplayName?: string | undefined;
429
+ ReplayArn?: string | undefined;
430
+ Description?: string | undefined;
431
+ State?: ReplayState | undefined;
432
+ StateReason?: string | undefined;
433
+ EventSourceArn?: string | undefined;
434
+ Destination?: ReplayDestination | undefined;
435
+ EventStartTime?: Date | undefined;
436
+ EventEndTime?: Date | undefined;
437
+ EventLastReplayedTime?: Date | undefined;
438
+ ReplayStartTime?: Date | undefined;
439
+ ReplayEndTime?: Date | undefined;
438
440
  }
439
441
  export interface DescribeRuleRequest {
440
442
  Name: string | undefined;
441
- EventBusName?: string;
443
+ EventBusName?: string | undefined;
442
444
  }
443
445
  export declare const RuleState: {
444
446
  readonly DISABLED: "DISABLED";
@@ -446,209 +448,209 @@ export declare const RuleState: {
446
448
  };
447
449
  export type RuleState = (typeof RuleState)[keyof typeof RuleState];
448
450
  export interface DescribeRuleResponse {
449
- Name?: string;
450
- Arn?: string;
451
- EventPattern?: string;
452
- ScheduleExpression?: string;
453
- State?: RuleState;
454
- Description?: string;
455
- RoleArn?: string;
456
- ManagedBy?: string;
457
- EventBusName?: string;
458
- CreatedBy?: string;
451
+ Name?: string | undefined;
452
+ Arn?: string | undefined;
453
+ EventPattern?: string | undefined;
454
+ ScheduleExpression?: string | undefined;
455
+ State?: RuleState | undefined;
456
+ Description?: string | undefined;
457
+ RoleArn?: string | undefined;
458
+ ManagedBy?: string | undefined;
459
+ EventBusName?: string | undefined;
460
+ CreatedBy?: string | undefined;
459
461
  }
460
462
  export interface DisableRuleRequest {
461
463
  Name: string | undefined;
462
- EventBusName?: string;
464
+ EventBusName?: string | undefined;
463
465
  }
464
466
  export interface EnableRuleRequest {
465
467
  Name: string | undefined;
466
- EventBusName?: string;
468
+ EventBusName?: string | undefined;
467
469
  }
468
470
  export interface ListApiDestinationsRequest {
469
- NamePrefix?: string;
470
- ConnectionArn?: string;
471
- NextToken?: string;
472
- Limit?: number;
471
+ NamePrefix?: string | undefined;
472
+ ConnectionArn?: string | undefined;
473
+ NextToken?: string | undefined;
474
+ Limit?: number | undefined;
473
475
  }
474
476
  export interface ListApiDestinationsResponse {
475
- ApiDestinations?: ApiDestination[];
476
- NextToken?: string;
477
+ ApiDestinations?: ApiDestination[] | undefined;
478
+ NextToken?: string | undefined;
477
479
  }
478
480
  export interface ListArchivesRequest {
479
- NamePrefix?: string;
480
- EventSourceArn?: string;
481
- State?: ArchiveState;
482
- NextToken?: string;
483
- Limit?: number;
481
+ NamePrefix?: string | undefined;
482
+ EventSourceArn?: string | undefined;
483
+ State?: ArchiveState | undefined;
484
+ NextToken?: string | undefined;
485
+ Limit?: number | undefined;
484
486
  }
485
487
  export interface ListArchivesResponse {
486
- Archives?: Archive[];
487
- NextToken?: string;
488
+ Archives?: Archive[] | undefined;
489
+ NextToken?: string | undefined;
488
490
  }
489
491
  export interface ListConnectionsRequest {
490
- NamePrefix?: string;
491
- ConnectionState?: ConnectionState;
492
- NextToken?: string;
493
- Limit?: number;
492
+ NamePrefix?: string | undefined;
493
+ ConnectionState?: ConnectionState | undefined;
494
+ NextToken?: string | undefined;
495
+ Limit?: number | undefined;
494
496
  }
495
497
  export interface Connection {
496
- ConnectionArn?: string;
497
- Name?: string;
498
- ConnectionState?: ConnectionState;
499
- StateReason?: string;
500
- AuthorizationType?: ConnectionAuthorizationType;
501
- CreationTime?: Date;
502
- LastModifiedTime?: Date;
503
- LastAuthorizedTime?: Date;
498
+ ConnectionArn?: string | undefined;
499
+ Name?: string | undefined;
500
+ ConnectionState?: ConnectionState | undefined;
501
+ StateReason?: string | undefined;
502
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
503
+ CreationTime?: Date | undefined;
504
+ LastModifiedTime?: Date | undefined;
505
+ LastAuthorizedTime?: Date | undefined;
504
506
  }
505
507
  export interface ListConnectionsResponse {
506
- Connections?: Connection[];
507
- NextToken?: string;
508
+ Connections?: Connection[] | undefined;
509
+ NextToken?: string | undefined;
508
510
  }
509
511
  export interface ListEventBusesRequest {
510
- NamePrefix?: string;
511
- NextToken?: string;
512
- Limit?: number;
512
+ NamePrefix?: string | undefined;
513
+ NextToken?: string | undefined;
514
+ Limit?: number | undefined;
513
515
  }
514
516
  export interface EventBus {
515
- Name?: string;
516
- Arn?: string;
517
- Policy?: string;
517
+ Name?: string | undefined;
518
+ Arn?: string | undefined;
519
+ Policy?: string | undefined;
518
520
  }
519
521
  export interface ListEventBusesResponse {
520
- EventBuses?: EventBus[];
521
- NextToken?: string;
522
+ EventBuses?: EventBus[] | undefined;
523
+ NextToken?: string | undefined;
522
524
  }
523
525
  export interface ListEventSourcesRequest {
524
- NamePrefix?: string;
525
- NextToken?: string;
526
- Limit?: number;
526
+ NamePrefix?: string | undefined;
527
+ NextToken?: string | undefined;
528
+ Limit?: number | undefined;
527
529
  }
528
530
  export interface EventSource {
529
- Arn?: string;
530
- CreatedBy?: string;
531
- CreationTime?: Date;
532
- ExpirationTime?: Date;
533
- Name?: string;
534
- State?: EventSourceState;
531
+ Arn?: string | undefined;
532
+ CreatedBy?: string | undefined;
533
+ CreationTime?: Date | undefined;
534
+ ExpirationTime?: Date | undefined;
535
+ Name?: string | undefined;
536
+ State?: EventSourceState | undefined;
535
537
  }
536
538
  export interface ListEventSourcesResponse {
537
- EventSources?: EventSource[];
538
- NextToken?: string;
539
+ EventSources?: EventSource[] | undefined;
540
+ NextToken?: string | undefined;
539
541
  }
540
542
  export interface ListPartnerEventSourceAccountsRequest {
541
543
  EventSourceName: string | undefined;
542
- NextToken?: string;
543
- Limit?: number;
544
+ NextToken?: string | undefined;
545
+ Limit?: number | undefined;
544
546
  }
545
547
  export interface PartnerEventSourceAccount {
546
- Account?: string;
547
- CreationTime?: Date;
548
- ExpirationTime?: Date;
549
- State?: EventSourceState;
548
+ Account?: string | undefined;
549
+ CreationTime?: Date | undefined;
550
+ ExpirationTime?: Date | undefined;
551
+ State?: EventSourceState | undefined;
550
552
  }
551
553
  export interface ListPartnerEventSourceAccountsResponse {
552
- PartnerEventSourceAccounts?: PartnerEventSourceAccount[];
553
- NextToken?: string;
554
+ PartnerEventSourceAccounts?: PartnerEventSourceAccount[] | undefined;
555
+ NextToken?: string | undefined;
554
556
  }
555
557
  export interface ListPartnerEventSourcesRequest {
556
558
  NamePrefix: string | undefined;
557
- NextToken?: string;
558
- Limit?: number;
559
+ NextToken?: string | undefined;
560
+ Limit?: number | undefined;
559
561
  }
560
562
  export interface PartnerEventSource {
561
- Arn?: string;
562
- Name?: string;
563
+ Arn?: string | undefined;
564
+ Name?: string | undefined;
563
565
  }
564
566
  export interface ListPartnerEventSourcesResponse {
565
- PartnerEventSources?: PartnerEventSource[];
566
- NextToken?: string;
567
+ PartnerEventSources?: PartnerEventSource[] | undefined;
568
+ NextToken?: string | undefined;
567
569
  }
568
570
  export interface ListReplaysRequest {
569
- NamePrefix?: string;
570
- State?: ReplayState;
571
- EventSourceArn?: string;
572
- NextToken?: string;
573
- Limit?: number;
571
+ NamePrefix?: string | undefined;
572
+ State?: ReplayState | undefined;
573
+ EventSourceArn?: string | undefined;
574
+ NextToken?: string | undefined;
575
+ Limit?: number | undefined;
574
576
  }
575
577
  export interface Replay {
576
- ReplayName?: string;
577
- EventSourceArn?: string;
578
- State?: ReplayState;
579
- StateReason?: string;
580
- EventStartTime?: Date;
581
- EventEndTime?: Date;
582
- EventLastReplayedTime?: Date;
583
- ReplayStartTime?: Date;
584
- ReplayEndTime?: Date;
578
+ ReplayName?: string | undefined;
579
+ EventSourceArn?: string | undefined;
580
+ State?: ReplayState | undefined;
581
+ StateReason?: string | undefined;
582
+ EventStartTime?: Date | undefined;
583
+ EventEndTime?: Date | undefined;
584
+ EventLastReplayedTime?: Date | undefined;
585
+ ReplayStartTime?: Date | undefined;
586
+ ReplayEndTime?: Date | undefined;
585
587
  }
586
588
  export interface ListReplaysResponse {
587
- Replays?: Replay[];
588
- NextToken?: string;
589
+ Replays?: Replay[] | undefined;
590
+ NextToken?: string | undefined;
589
591
  }
590
592
  export interface ListRuleNamesByTargetRequest {
591
593
  TargetArn: string | undefined;
592
- EventBusName?: string;
593
- NextToken?: string;
594
- Limit?: number;
594
+ EventBusName?: string | undefined;
595
+ NextToken?: string | undefined;
596
+ Limit?: number | undefined;
595
597
  }
596
598
  export interface ListRuleNamesByTargetResponse {
597
- RuleNames?: string[];
598
- NextToken?: string;
599
+ RuleNames?: string[] | undefined;
600
+ NextToken?: string | undefined;
599
601
  }
600
602
  export interface ListRulesRequest {
601
- NamePrefix?: string;
602
- EventBusName?: string;
603
- NextToken?: string;
604
- Limit?: number;
603
+ NamePrefix?: string | undefined;
604
+ EventBusName?: string | undefined;
605
+ NextToken?: string | undefined;
606
+ Limit?: number | undefined;
605
607
  }
606
608
  export interface Rule {
607
- Name?: string;
608
- Arn?: string;
609
- EventPattern?: string;
610
- State?: RuleState;
611
- Description?: string;
612
- ScheduleExpression?: string;
613
- RoleArn?: string;
614
- ManagedBy?: string;
615
- EventBusName?: string;
609
+ Name?: string | undefined;
610
+ Arn?: string | undefined;
611
+ EventPattern?: string | undefined;
612
+ State?: RuleState | undefined;
613
+ Description?: string | undefined;
614
+ ScheduleExpression?: string | undefined;
615
+ RoleArn?: string | undefined;
616
+ ManagedBy?: string | undefined;
617
+ EventBusName?: string | undefined;
616
618
  }
617
619
  export interface ListRulesResponse {
618
- Rules?: Rule[];
619
- NextToken?: string;
620
+ Rules?: Rule[] | undefined;
621
+ NextToken?: string | undefined;
620
622
  }
621
623
  export interface ListTagsForResourceRequest {
622
624
  ResourceARN: string | undefined;
623
625
  }
624
626
  export interface ListTagsForResourceResponse {
625
- Tags?: Tag[];
627
+ Tags?: Tag[] | undefined;
626
628
  }
627
629
  export interface ListTargetsByRuleRequest {
628
630
  Rule: string | undefined;
629
- EventBusName?: string;
630
- NextToken?: string;
631
- Limit?: number;
631
+ EventBusName?: string | undefined;
632
+ NextToken?: string | undefined;
633
+ Limit?: number | undefined;
632
634
  }
633
635
  export interface BatchArrayProperties {
634
- Size?: number;
636
+ Size?: number | undefined;
635
637
  }
636
638
  export interface BatchRetryStrategy {
637
- Attempts?: number;
639
+ Attempts?: number | undefined;
638
640
  }
639
641
  export interface BatchParameters {
640
642
  JobDefinition: string | undefined;
641
643
  JobName: string | undefined;
642
- ArrayProperties?: BatchArrayProperties;
643
- RetryStrategy?: BatchRetryStrategy;
644
+ ArrayProperties?: BatchArrayProperties | undefined;
645
+ RetryStrategy?: BatchRetryStrategy | undefined;
644
646
  }
645
647
  export interface DeadLetterConfig {
646
- Arn?: string;
648
+ Arn?: string | undefined;
647
649
  }
648
650
  export interface CapacityProviderStrategyItem {
649
651
  capacityProvider: string | undefined;
650
- weight?: number;
651
- base?: number;
652
+ weight?: number | undefined;
653
+ base?: number | undefined;
652
654
  }
653
655
  export declare const LaunchType: {
654
656
  readonly EC2: "EC2";
@@ -658,11 +660,11 @@ export declare const LaunchType: {
658
660
  export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
659
661
  export interface AwsVpcConfiguration {
660
662
  Subnets: string[] | undefined;
661
- SecurityGroups?: string[];
662
- AssignPublicIp?: AssignPublicIp;
663
+ SecurityGroups?: string[] | undefined;
664
+ AssignPublicIp?: AssignPublicIp | undefined;
663
665
  }
664
666
  export interface NetworkConfiguration {
665
- awsvpcConfiguration?: AwsVpcConfiguration;
667
+ awsvpcConfiguration?: AwsVpcConfiguration | undefined;
666
668
  }
667
669
  export declare const PlacementConstraintType: {
668
670
  readonly DISTINCT_INSTANCE: "distinctInstance";
@@ -671,8 +673,8 @@ export declare const PlacementConstraintType: {
671
673
  export type PlacementConstraintType =
672
674
  (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
673
675
  export interface PlacementConstraint {
674
- type?: PlacementConstraintType;
675
- expression?: string;
676
+ type?: PlacementConstraintType | undefined;
677
+ expression?: string | undefined;
676
678
  }
677
679
  export declare const PlacementStrategyType: {
678
680
  readonly BINPACK: "binpack";
@@ -682,8 +684,8 @@ export declare const PlacementStrategyType: {
682
684
  export type PlacementStrategyType =
683
685
  (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
684
686
  export interface PlacementStrategy {
685
- type?: PlacementStrategyType;
686
- field?: string;
687
+ type?: PlacementStrategyType | undefined;
688
+ field?: string | undefined;
687
689
  }
688
690
  export declare const PropagateTags: {
689
691
  readonly TASK_DEFINITION: "TASK_DEFINITION";
@@ -691,43 +693,43 @@ export declare const PropagateTags: {
691
693
  export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
692
694
  export interface EcsParameters {
693
695
  TaskDefinitionArn: string | undefined;
694
- TaskCount?: number;
695
- LaunchType?: LaunchType;
696
- NetworkConfiguration?: NetworkConfiguration;
697
- PlatformVersion?: string;
698
- Group?: string;
699
- CapacityProviderStrategy?: CapacityProviderStrategyItem[];
700
- EnableECSManagedTags?: boolean;
701
- EnableExecuteCommand?: boolean;
702
- PlacementConstraints?: PlacementConstraint[];
703
- PlacementStrategy?: PlacementStrategy[];
704
- PropagateTags?: PropagateTags;
705
- ReferenceId?: string;
706
- Tags?: Tag[];
696
+ TaskCount?: number | undefined;
697
+ LaunchType?: LaunchType | undefined;
698
+ NetworkConfiguration?: NetworkConfiguration | undefined;
699
+ PlatformVersion?: string | undefined;
700
+ Group?: string | undefined;
701
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
702
+ EnableECSManagedTags?: boolean | undefined;
703
+ EnableExecuteCommand?: boolean | undefined;
704
+ PlacementConstraints?: PlacementConstraint[] | undefined;
705
+ PlacementStrategy?: PlacementStrategy[] | undefined;
706
+ PropagateTags?: PropagateTags | undefined;
707
+ ReferenceId?: string | undefined;
708
+ Tags?: Tag[] | undefined;
707
709
  }
708
710
  export interface HttpParameters {
709
- PathParameterValues?: string[];
710
- HeaderParameters?: Record<string, string>;
711
- QueryStringParameters?: Record<string, string>;
711
+ PathParameterValues?: string[] | undefined;
712
+ HeaderParameters?: Record<string, string> | undefined;
713
+ QueryStringParameters?: Record<string, string> | undefined;
712
714
  }
713
715
  export interface InputTransformer {
714
- InputPathsMap?: Record<string, string>;
716
+ InputPathsMap?: Record<string, string> | undefined;
715
717
  InputTemplate: string | undefined;
716
718
  }
717
719
  export interface KinesisParameters {
718
720
  PartitionKeyPath: string | undefined;
719
721
  }
720
722
  export interface RedshiftDataParameters {
721
- SecretManagerArn?: string;
723
+ SecretManagerArn?: string | undefined;
722
724
  Database: string | undefined;
723
- DbUser?: string;
725
+ DbUser?: string | undefined;
724
726
  Sql: string | undefined;
725
- StatementName?: string;
726
- WithEvent?: boolean;
727
+ StatementName?: string | undefined;
728
+ WithEvent?: boolean | undefined;
727
729
  }
728
730
  export interface RetryPolicy {
729
- MaximumRetryAttempts?: number;
730
- MaximumEventAgeInSeconds?: number;
731
+ MaximumRetryAttempts?: number | undefined;
732
+ MaximumEventAgeInSeconds?: number | undefined;
731
733
  }
732
734
  export interface RunCommandTarget {
733
735
  Key: string | undefined;
@@ -741,72 +743,72 @@ export interface SageMakerPipelineParameter {
741
743
  Value: string | undefined;
742
744
  }
743
745
  export interface SageMakerPipelineParameters {
744
- PipelineParameterList?: SageMakerPipelineParameter[];
746
+ PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
745
747
  }
746
748
  export interface SqsParameters {
747
- MessageGroupId?: string;
749
+ MessageGroupId?: string | undefined;
748
750
  }
749
751
  export interface Target {
750
752
  Id: string | undefined;
751
753
  Arn: string | undefined;
752
- RoleArn?: string;
753
- Input?: string;
754
- InputPath?: string;
755
- InputTransformer?: InputTransformer;
756
- KinesisParameters?: KinesisParameters;
757
- RunCommandParameters?: RunCommandParameters;
758
- EcsParameters?: EcsParameters;
759
- BatchParameters?: BatchParameters;
760
- SqsParameters?: SqsParameters;
761
- HttpParameters?: HttpParameters;
762
- RedshiftDataParameters?: RedshiftDataParameters;
763
- SageMakerPipelineParameters?: SageMakerPipelineParameters;
764
- DeadLetterConfig?: DeadLetterConfig;
765
- RetryPolicy?: RetryPolicy;
754
+ RoleArn?: string | undefined;
755
+ Input?: string | undefined;
756
+ InputPath?: string | undefined;
757
+ InputTransformer?: InputTransformer | undefined;
758
+ KinesisParameters?: KinesisParameters | undefined;
759
+ RunCommandParameters?: RunCommandParameters | undefined;
760
+ EcsParameters?: EcsParameters | undefined;
761
+ BatchParameters?: BatchParameters | undefined;
762
+ SqsParameters?: SqsParameters | undefined;
763
+ HttpParameters?: HttpParameters | undefined;
764
+ RedshiftDataParameters?: RedshiftDataParameters | undefined;
765
+ SageMakerPipelineParameters?: SageMakerPipelineParameters | undefined;
766
+ DeadLetterConfig?: DeadLetterConfig | undefined;
767
+ RetryPolicy?: RetryPolicy | undefined;
766
768
  }
767
769
  export interface ListTargetsByRuleResponse {
768
- Targets?: Target[];
769
- NextToken?: string;
770
+ Targets?: Target[] | undefined;
771
+ NextToken?: string | undefined;
770
772
  }
771
773
  export interface PutEventsRequestEntry {
772
- Time?: Date;
773
- Source?: string;
774
- Resources?: string[];
775
- DetailType?: string;
776
- Detail?: string;
777
- EventBusName?: string;
778
- TraceHeader?: string;
774
+ Time?: Date | undefined;
775
+ Source?: string | undefined;
776
+ Resources?: string[] | undefined;
777
+ DetailType?: string | undefined;
778
+ Detail?: string | undefined;
779
+ EventBusName?: string | undefined;
780
+ TraceHeader?: string | undefined;
779
781
  }
780
782
  export interface PutEventsRequest {
781
783
  Entries: PutEventsRequestEntry[] | undefined;
782
784
  }
783
785
  export interface PutEventsResultEntry {
784
- EventId?: string;
785
- ErrorCode?: string;
786
- ErrorMessage?: string;
786
+ EventId?: string | undefined;
787
+ ErrorCode?: string | undefined;
788
+ ErrorMessage?: string | undefined;
787
789
  }
788
790
  export interface PutEventsResponse {
789
- FailedEntryCount?: number;
790
- Entries?: PutEventsResultEntry[];
791
+ FailedEntryCount?: number | undefined;
792
+ Entries?: PutEventsResultEntry[] | undefined;
791
793
  }
792
794
  export interface PutPartnerEventsRequestEntry {
793
- Time?: Date;
794
- Source?: string;
795
- Resources?: string[];
796
- DetailType?: string;
797
- Detail?: string;
795
+ Time?: Date | undefined;
796
+ Source?: string | undefined;
797
+ Resources?: string[] | undefined;
798
+ DetailType?: string | undefined;
799
+ Detail?: string | undefined;
798
800
  }
799
801
  export interface PutPartnerEventsRequest {
800
802
  Entries: PutPartnerEventsRequestEntry[] | undefined;
801
803
  }
802
804
  export interface PutPartnerEventsResultEntry {
803
- EventId?: string;
804
- ErrorCode?: string;
805
- ErrorMessage?: string;
805
+ EventId?: string | undefined;
806
+ ErrorCode?: string | undefined;
807
+ ErrorMessage?: string | undefined;
806
808
  }
807
809
  export interface PutPartnerEventsResponse {
808
- FailedEntryCount?: number;
809
- Entries?: PutPartnerEventsResultEntry[];
810
+ FailedEntryCount?: number | undefined;
811
+ Entries?: PutPartnerEventsResultEntry[] | undefined;
810
812
  }
811
813
  export declare class PolicyLengthExceededException extends __BaseException {
812
814
  readonly name: "PolicyLengthExceededException";
@@ -821,73 +823,73 @@ export interface Condition {
821
823
  Value: string | undefined;
822
824
  }
823
825
  export interface PutPermissionRequest {
824
- EventBusName?: string;
825
- Action?: string;
826
- Principal?: string;
827
- StatementId?: string;
828
- Condition?: Condition;
829
- Policy?: string;
826
+ EventBusName?: string | undefined;
827
+ Action?: string | undefined;
828
+ Principal?: string | undefined;
829
+ StatementId?: string | undefined;
830
+ Condition?: Condition | undefined;
831
+ Policy?: string | undefined;
830
832
  }
831
833
  export interface PutRuleRequest {
832
834
  Name: string | undefined;
833
- ScheduleExpression?: string;
834
- EventPattern?: string;
835
- State?: RuleState;
836
- Description?: string;
837
- RoleArn?: string;
838
- Tags?: Tag[];
839
- EventBusName?: string;
835
+ ScheduleExpression?: string | undefined;
836
+ EventPattern?: string | undefined;
837
+ State?: RuleState | undefined;
838
+ Description?: string | undefined;
839
+ RoleArn?: string | undefined;
840
+ Tags?: Tag[] | undefined;
841
+ EventBusName?: string | undefined;
840
842
  }
841
843
  export interface PutRuleResponse {
842
- RuleArn?: string;
844
+ RuleArn?: string | undefined;
843
845
  }
844
846
  export interface PutTargetsRequest {
845
847
  Rule: string | undefined;
846
- EventBusName?: string;
848
+ EventBusName?: string | undefined;
847
849
  Targets: Target[] | undefined;
848
850
  }
849
851
  export interface PutTargetsResultEntry {
850
- TargetId?: string;
851
- ErrorCode?: string;
852
- ErrorMessage?: string;
852
+ TargetId?: string | undefined;
853
+ ErrorCode?: string | undefined;
854
+ ErrorMessage?: string | undefined;
853
855
  }
854
856
  export interface PutTargetsResponse {
855
- FailedEntryCount?: number;
856
- FailedEntries?: PutTargetsResultEntry[];
857
+ FailedEntryCount?: number | undefined;
858
+ FailedEntries?: PutTargetsResultEntry[] | undefined;
857
859
  }
858
860
  export interface RemovePermissionRequest {
859
- StatementId?: string;
860
- RemoveAllPermissions?: boolean;
861
- EventBusName?: string;
861
+ StatementId?: string | undefined;
862
+ RemoveAllPermissions?: boolean | undefined;
863
+ EventBusName?: string | undefined;
862
864
  }
863
865
  export interface RemoveTargetsRequest {
864
866
  Rule: string | undefined;
865
- EventBusName?: string;
867
+ EventBusName?: string | undefined;
866
868
  Ids: string[] | undefined;
867
- Force?: boolean;
869
+ Force?: boolean | undefined;
868
870
  }
869
871
  export interface RemoveTargetsResultEntry {
870
- TargetId?: string;
871
- ErrorCode?: string;
872
- ErrorMessage?: string;
872
+ TargetId?: string | undefined;
873
+ ErrorCode?: string | undefined;
874
+ ErrorMessage?: string | undefined;
873
875
  }
874
876
  export interface RemoveTargetsResponse {
875
- FailedEntryCount?: number;
876
- FailedEntries?: RemoveTargetsResultEntry[];
877
+ FailedEntryCount?: number | undefined;
878
+ FailedEntries?: RemoveTargetsResultEntry[] | undefined;
877
879
  }
878
880
  export interface StartReplayRequest {
879
881
  ReplayName: string | undefined;
880
- Description?: string;
882
+ Description?: string | undefined;
881
883
  EventSourceArn: string | undefined;
882
884
  EventStartTime: Date | undefined;
883
885
  EventEndTime: Date | undefined;
884
886
  Destination: ReplayDestination | undefined;
885
887
  }
886
888
  export interface StartReplayResponse {
887
- ReplayArn?: string;
888
- State?: ReplayState;
889
- StateReason?: string;
890
- ReplayStartTime?: Date;
889
+ ReplayArn?: string | undefined;
890
+ State?: ReplayState | undefined;
891
+ StateReason?: string | undefined;
892
+ ReplayStartTime?: Date | undefined;
891
893
  }
892
894
  export interface TagResourceRequest {
893
895
  ResourceARN: string | undefined;
@@ -899,7 +901,7 @@ export interface TestEventPatternRequest {
899
901
  Event: string | undefined;
900
902
  }
901
903
  export interface TestEventPatternResponse {
902
- Result?: boolean;
904
+ Result?: boolean | undefined;
903
905
  }
904
906
  export interface UntagResourceRequest {
905
907
  ResourceARN: string | undefined;
@@ -908,66 +910,68 @@ export interface UntagResourceRequest {
908
910
  export interface UntagResourceResponse {}
909
911
  export interface UpdateApiDestinationRequest {
910
912
  Name: string | undefined;
911
- Description?: string;
912
- ConnectionArn?: string;
913
- InvocationEndpoint?: string;
914
- HttpMethod?: ApiDestinationHttpMethod;
915
- InvocationRateLimitPerSecond?: number;
913
+ Description?: string | undefined;
914
+ ConnectionArn?: string | undefined;
915
+ InvocationEndpoint?: string | undefined;
916
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
917
+ InvocationRateLimitPerSecond?: number | undefined;
916
918
  }
917
919
  export interface UpdateApiDestinationResponse {
918
- ApiDestinationArn?: string;
919
- ApiDestinationState?: ApiDestinationState;
920
- CreationTime?: Date;
921
- LastModifiedTime?: Date;
920
+ ApiDestinationArn?: string | undefined;
921
+ ApiDestinationState?: ApiDestinationState | undefined;
922
+ CreationTime?: Date | undefined;
923
+ LastModifiedTime?: Date | undefined;
922
924
  }
923
925
  export interface UpdateArchiveRequest {
924
926
  ArchiveName: string | undefined;
925
- Description?: string;
926
- EventPattern?: string;
927
- RetentionDays?: number;
927
+ Description?: string | undefined;
928
+ EventPattern?: string | undefined;
929
+ RetentionDays?: number | undefined;
928
930
  }
929
931
  export interface UpdateArchiveResponse {
930
- ArchiveArn?: string;
931
- State?: ArchiveState;
932
- StateReason?: string;
933
- CreationTime?: Date;
932
+ ArchiveArn?: string | undefined;
933
+ State?: ArchiveState | undefined;
934
+ StateReason?: string | undefined;
935
+ CreationTime?: Date | undefined;
934
936
  }
935
937
  export interface UpdateConnectionApiKeyAuthRequestParameters {
936
- ApiKeyName?: string;
937
- ApiKeyValue?: string;
938
+ ApiKeyName?: string | undefined;
939
+ ApiKeyValue?: string | undefined;
938
940
  }
939
941
  export interface UpdateConnectionBasicAuthRequestParameters {
940
- Username?: string;
941
- Password?: string;
942
+ Username?: string | undefined;
943
+ Password?: string | undefined;
942
944
  }
943
945
  export interface UpdateConnectionOAuthClientRequestParameters {
944
- ClientID?: string;
945
- ClientSecret?: string;
946
+ ClientID?: string | undefined;
947
+ ClientSecret?: string | undefined;
946
948
  }
947
949
  export interface UpdateConnectionOAuthRequestParameters {
948
- ClientParameters?: UpdateConnectionOAuthClientRequestParameters;
949
- AuthorizationEndpoint?: string;
950
- HttpMethod?: ConnectionOAuthHttpMethod;
951
- OAuthHttpParameters?: ConnectionHttpParameters;
950
+ ClientParameters?: UpdateConnectionOAuthClientRequestParameters | undefined;
951
+ AuthorizationEndpoint?: string | undefined;
952
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
953
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
952
954
  }
953
955
  export interface UpdateConnectionAuthRequestParameters {
954
- BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters;
955
- OAuthParameters?: UpdateConnectionOAuthRequestParameters;
956
- ApiKeyAuthParameters?: UpdateConnectionApiKeyAuthRequestParameters;
957
- InvocationHttpParameters?: ConnectionHttpParameters;
956
+ BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters | undefined;
957
+ OAuthParameters?: UpdateConnectionOAuthRequestParameters | undefined;
958
+ ApiKeyAuthParameters?:
959
+ | UpdateConnectionApiKeyAuthRequestParameters
960
+ | undefined;
961
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
958
962
  }
959
963
  export interface UpdateConnectionRequest {
960
964
  Name: string | undefined;
961
- Description?: string;
962
- AuthorizationType?: ConnectionAuthorizationType;
963
- AuthParameters?: UpdateConnectionAuthRequestParameters;
965
+ Description?: string | undefined;
966
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
967
+ AuthParameters?: UpdateConnectionAuthRequestParameters | undefined;
964
968
  }
965
969
  export interface UpdateConnectionResponse {
966
- ConnectionArn?: string;
967
- ConnectionState?: ConnectionState;
968
- CreationTime?: Date;
969
- LastModifiedTime?: Date;
970
- LastAuthorizedTime?: Date;
970
+ ConnectionArn?: string | undefined;
971
+ ConnectionState?: ConnectionState | undefined;
972
+ CreationTime?: Date | undefined;
973
+ LastModifiedTime?: Date | undefined;
974
+ LastAuthorizedTime?: Date | undefined;
971
975
  }
972
976
  export declare const CreateConnectionApiKeyAuthRequestParametersFilterSensitiveLog: (
973
977
  obj: CreateConnectionApiKeyAuthRequestParameters