@aws-sdk/client-eventbridge 3.687.0 → 3.692.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -57,18 +57,18 @@ 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 interface AppSyncParameters {
71
- GraphQLOperation?: string;
71
+ GraphQLOperation?: string | undefined;
72
72
  }
73
73
  export declare const ArchiveState: {
74
74
  readonly CREATE_FAILED: "CREATE_FAILED";
@@ -80,14 +80,14 @@ export declare const ArchiveState: {
80
80
  };
81
81
  export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
82
82
  export interface Archive {
83
- ArchiveName?: string;
84
- EventSourceArn?: string;
85
- State?: ArchiveState;
86
- StateReason?: string;
87
- RetentionDays?: number;
88
- SizeBytes?: number;
89
- EventCount?: number;
90
- CreationTime?: Date;
83
+ ArchiveName?: string | undefined;
84
+ EventSourceArn?: string | undefined;
85
+ State?: ArchiveState | undefined;
86
+ StateReason?: string | undefined;
87
+ RetentionDays?: number | undefined;
88
+ SizeBytes?: number | undefined;
89
+ EventCount?: number | undefined;
90
+ CreationTime?: Date | undefined;
91
91
  }
92
92
  export declare const AssignPublicIp: {
93
93
  readonly DISABLED: "DISABLED";
@@ -108,9 +108,9 @@ export declare const ReplayState: {
108
108
  };
109
109
  export type ReplayState = (typeof ReplayState)[keyof typeof ReplayState];
110
110
  export interface CancelReplayResponse {
111
- ReplayArn?: string;
112
- State?: ReplayState;
113
- StateReason?: string;
111
+ ReplayArn?: string | undefined;
112
+ State?: ReplayState | undefined;
113
+ StateReason?: string | undefined;
114
114
  }
115
115
  export declare class IllegalStatusException extends __BaseException {
116
116
  readonly name: "IllegalStatusException";
@@ -121,17 +121,17 @@ export declare class IllegalStatusException extends __BaseException {
121
121
  }
122
122
  export interface CreateApiDestinationRequest {
123
123
  Name: string | undefined;
124
- Description?: string;
124
+ Description?: string | undefined;
125
125
  ConnectionArn: string | undefined;
126
126
  InvocationEndpoint: string | undefined;
127
127
  HttpMethod: ApiDestinationHttpMethod | undefined;
128
- InvocationRateLimitPerSecond?: number;
128
+ InvocationRateLimitPerSecond?: number | undefined;
129
129
  }
130
130
  export interface CreateApiDestinationResponse {
131
- ApiDestinationArn?: string;
132
- ApiDestinationState?: ApiDestinationState;
133
- CreationTime?: Date;
134
- LastModifiedTime?: Date;
131
+ ApiDestinationArn?: string | undefined;
132
+ ApiDestinationState?: ApiDestinationState | undefined;
133
+ CreationTime?: Date | undefined;
134
+ LastModifiedTime?: Date | undefined;
135
135
  }
136
136
  export declare class LimitExceededException extends __BaseException {
137
137
  readonly name: "LimitExceededException";
@@ -150,15 +150,15 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
150
150
  export interface CreateArchiveRequest {
151
151
  ArchiveName: string | undefined;
152
152
  EventSourceArn: string | undefined;
153
- Description?: string;
154
- EventPattern?: string;
155
- RetentionDays?: number;
153
+ Description?: string | undefined;
154
+ EventPattern?: string | undefined;
155
+ RetentionDays?: number | undefined;
156
156
  }
157
157
  export interface CreateArchiveResponse {
158
- ArchiveArn?: string;
159
- State?: ArchiveState;
160
- StateReason?: string;
161
- CreationTime?: Date;
158
+ ArchiveArn?: string | undefined;
159
+ State?: ArchiveState | undefined;
160
+ StateReason?: string | undefined;
161
+ CreationTime?: Date | undefined;
162
162
  }
163
163
  export declare class InvalidEventPatternException extends __BaseException {
164
164
  readonly name: "InvalidEventPatternException";
@@ -183,24 +183,24 @@ export interface CreateConnectionBasicAuthRequestParameters {
183
183
  Password: string | undefined;
184
184
  }
185
185
  export interface ConnectionBodyParameter {
186
- Key?: string;
187
- Value?: string;
188
- IsValueSecret?: boolean;
186
+ Key?: string | undefined;
187
+ Value?: string | undefined;
188
+ IsValueSecret?: boolean | undefined;
189
189
  }
190
190
  export interface ConnectionHeaderParameter {
191
- Key?: string;
192
- Value?: string;
193
- IsValueSecret?: boolean;
191
+ Key?: string | undefined;
192
+ Value?: string | undefined;
193
+ IsValueSecret?: boolean | undefined;
194
194
  }
195
195
  export interface ConnectionQueryStringParameter {
196
- Key?: string;
197
- Value?: string;
198
- IsValueSecret?: boolean;
196
+ Key?: string | undefined;
197
+ Value?: string | undefined;
198
+ IsValueSecret?: boolean | undefined;
199
199
  }
200
200
  export interface ConnectionHttpParameters {
201
- HeaderParameters?: ConnectionHeaderParameter[];
202
- QueryStringParameters?: ConnectionQueryStringParameter[];
203
- BodyParameters?: ConnectionBodyParameter[];
201
+ HeaderParameters?: ConnectionHeaderParameter[] | undefined;
202
+ QueryStringParameters?: ConnectionQueryStringParameter[] | undefined;
203
+ BodyParameters?: ConnectionBodyParameter[] | undefined;
204
204
  }
205
205
  export interface CreateConnectionOAuthClientRequestParameters {
206
206
  ClientID: string | undefined;
@@ -217,17 +217,19 @@ export interface CreateConnectionOAuthRequestParameters {
217
217
  ClientParameters: CreateConnectionOAuthClientRequestParameters | undefined;
218
218
  AuthorizationEndpoint: string | undefined;
219
219
  HttpMethod: ConnectionOAuthHttpMethod | undefined;
220
- OAuthHttpParameters?: ConnectionHttpParameters;
220
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
221
221
  }
222
222
  export interface CreateConnectionAuthRequestParameters {
223
- BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters;
224
- OAuthParameters?: CreateConnectionOAuthRequestParameters;
225
- ApiKeyAuthParameters?: CreateConnectionApiKeyAuthRequestParameters;
226
- InvocationHttpParameters?: ConnectionHttpParameters;
223
+ BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters | undefined;
224
+ OAuthParameters?: CreateConnectionOAuthRequestParameters | undefined;
225
+ ApiKeyAuthParameters?:
226
+ | CreateConnectionApiKeyAuthRequestParameters
227
+ | undefined;
228
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
227
229
  }
228
230
  export interface CreateConnectionRequest {
229
231
  Name: string | undefined;
230
- Description?: string;
232
+ Description?: string | undefined;
231
233
  AuthorizationType: ConnectionAuthorizationType | undefined;
232
234
  AuthParameters: CreateConnectionAuthRequestParameters | undefined;
233
235
  }
@@ -243,10 +245,10 @@ export declare const ConnectionState: {
243
245
  export type ConnectionState =
244
246
  (typeof ConnectionState)[keyof typeof ConnectionState];
245
247
  export interface CreateConnectionResponse {
246
- ConnectionArn?: string;
247
- ConnectionState?: ConnectionState;
248
- CreationTime?: Date;
249
- LastModifiedTime?: Date;
248
+ ConnectionArn?: string | undefined;
249
+ ConnectionState?: ConnectionState | undefined;
250
+ CreationTime?: Date | undefined;
251
+ LastModifiedTime?: Date | undefined;
250
252
  }
251
253
  export interface EndpointEventBus {
252
254
  EventBusArn: string | undefined;
@@ -258,7 +260,7 @@ export declare const ReplicationState: {
258
260
  export type ReplicationState =
259
261
  (typeof ReplicationState)[keyof typeof ReplicationState];
260
262
  export interface ReplicationConfig {
261
- State?: ReplicationState;
263
+ State?: ReplicationState | undefined;
262
264
  }
263
265
  export interface Primary {
264
266
  HealthCheck: string | undefined;
@@ -275,11 +277,11 @@ export interface RoutingConfig {
275
277
  }
276
278
  export interface CreateEndpointRequest {
277
279
  Name: string | undefined;
278
- Description?: string;
280
+ Description?: string | undefined;
279
281
  RoutingConfig: RoutingConfig | undefined;
280
- ReplicationConfig?: ReplicationConfig;
282
+ ReplicationConfig?: ReplicationConfig | undefined;
281
283
  EventBuses: EndpointEventBus[] | undefined;
282
- RoleArn?: string;
284
+ RoleArn?: string | undefined;
283
285
  }
284
286
  export declare const EndpointState: {
285
287
  readonly ACTIVE: "ACTIVE";
@@ -292,16 +294,16 @@ export declare const EndpointState: {
292
294
  };
293
295
  export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
294
296
  export interface CreateEndpointResponse {
295
- Name?: string;
296
- Arn?: string;
297
- RoutingConfig?: RoutingConfig;
298
- ReplicationConfig?: ReplicationConfig;
299
- EventBuses?: EndpointEventBus[];
300
- RoleArn?: string;
301
- State?: EndpointState;
297
+ Name?: string | undefined;
298
+ Arn?: string | undefined;
299
+ RoutingConfig?: RoutingConfig | undefined;
300
+ ReplicationConfig?: ReplicationConfig | undefined;
301
+ EventBuses?: EndpointEventBus[] | undefined;
302
+ RoleArn?: string | undefined;
303
+ State?: EndpointState | undefined;
302
304
  }
303
305
  export interface DeadLetterConfig {
304
- Arn?: string;
306
+ Arn?: string | undefined;
305
307
  }
306
308
  export interface Tag {
307
309
  Key: string | undefined;
@@ -309,24 +311,24 @@ export interface Tag {
309
311
  }
310
312
  export interface CreateEventBusRequest {
311
313
  Name: string | undefined;
312
- EventSourceName?: string;
313
- Description?: string;
314
- KmsKeyIdentifier?: string;
315
- DeadLetterConfig?: DeadLetterConfig;
316
- Tags?: Tag[];
314
+ EventSourceName?: string | undefined;
315
+ Description?: string | undefined;
316
+ KmsKeyIdentifier?: string | undefined;
317
+ DeadLetterConfig?: DeadLetterConfig | undefined;
318
+ Tags?: Tag[] | undefined;
317
319
  }
318
320
  export interface CreateEventBusResponse {
319
- EventBusArn?: string;
320
- Description?: string;
321
- KmsKeyIdentifier?: string;
322
- DeadLetterConfig?: DeadLetterConfig;
321
+ EventBusArn?: string | undefined;
322
+ Description?: string | undefined;
323
+ KmsKeyIdentifier?: string | undefined;
324
+ DeadLetterConfig?: DeadLetterConfig | undefined;
323
325
  }
324
326
  export interface CreatePartnerEventSourceRequest {
325
327
  Name: string | undefined;
326
328
  Account: string | undefined;
327
329
  }
328
330
  export interface CreatePartnerEventSourceResponse {
329
- EventSourceArn?: string;
331
+ EventSourceArn?: string | undefined;
330
332
  }
331
333
  export interface DeactivateEventSourceRequest {
332
334
  Name: string | undefined;
@@ -335,11 +337,11 @@ export interface DeauthorizeConnectionRequest {
335
337
  Name: string | undefined;
336
338
  }
337
339
  export interface DeauthorizeConnectionResponse {
338
- ConnectionArn?: string;
339
- ConnectionState?: ConnectionState;
340
- CreationTime?: Date;
341
- LastModifiedTime?: Date;
342
- LastAuthorizedTime?: Date;
340
+ ConnectionArn?: string | undefined;
341
+ ConnectionState?: ConnectionState | undefined;
342
+ CreationTime?: Date | undefined;
343
+ LastModifiedTime?: Date | undefined;
344
+ LastAuthorizedTime?: Date | undefined;
343
345
  }
344
346
  export interface DeleteApiDestinationRequest {
345
347
  Name: string | undefined;
@@ -353,11 +355,11 @@ export interface DeleteConnectionRequest {
353
355
  Name: string | undefined;
354
356
  }
355
357
  export interface DeleteConnectionResponse {
356
- ConnectionArn?: string;
357
- ConnectionState?: ConnectionState;
358
- CreationTime?: Date;
359
- LastModifiedTime?: Date;
360
- LastAuthorizedTime?: Date;
358
+ ConnectionArn?: string | undefined;
359
+ ConnectionState?: ConnectionState | undefined;
360
+ CreationTime?: Date | undefined;
361
+ LastModifiedTime?: Date | undefined;
362
+ LastAuthorizedTime?: Date | undefined;
361
363
  }
362
364
  export interface DeleteEndpointRequest {
363
365
  Name: string | undefined;
@@ -372,8 +374,8 @@ export interface DeletePartnerEventSourceRequest {
372
374
  }
373
375
  export interface DeleteRuleRequest {
374
376
  Name: string | undefined;
375
- EventBusName?: string;
376
- Force?: boolean;
377
+ EventBusName?: string | undefined;
378
+ Force?: boolean | undefined;
377
379
  }
378
380
  export declare class ManagedRuleException extends __BaseException {
379
381
  readonly name: "ManagedRuleException";
@@ -386,101 +388,101 @@ export interface DescribeApiDestinationRequest {
386
388
  Name: string | undefined;
387
389
  }
388
390
  export interface DescribeApiDestinationResponse {
389
- ApiDestinationArn?: string;
390
- Name?: string;
391
- Description?: string;
392
- ApiDestinationState?: ApiDestinationState;
393
- ConnectionArn?: string;
394
- InvocationEndpoint?: string;
395
- HttpMethod?: ApiDestinationHttpMethod;
396
- InvocationRateLimitPerSecond?: number;
397
- CreationTime?: Date;
398
- LastModifiedTime?: Date;
391
+ ApiDestinationArn?: string | undefined;
392
+ Name?: string | undefined;
393
+ Description?: string | undefined;
394
+ ApiDestinationState?: ApiDestinationState | undefined;
395
+ ConnectionArn?: string | undefined;
396
+ InvocationEndpoint?: string | undefined;
397
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
398
+ InvocationRateLimitPerSecond?: number | undefined;
399
+ CreationTime?: Date | undefined;
400
+ LastModifiedTime?: Date | undefined;
399
401
  }
400
402
  export interface DescribeArchiveRequest {
401
403
  ArchiveName: string | undefined;
402
404
  }
403
405
  export interface DescribeArchiveResponse {
404
- ArchiveArn?: string;
405
- ArchiveName?: string;
406
- EventSourceArn?: string;
407
- Description?: string;
408
- EventPattern?: string;
409
- State?: ArchiveState;
410
- StateReason?: string;
411
- RetentionDays?: number;
412
- SizeBytes?: number;
413
- EventCount?: number;
414
- CreationTime?: Date;
406
+ ArchiveArn?: string | undefined;
407
+ ArchiveName?: string | undefined;
408
+ EventSourceArn?: string | undefined;
409
+ Description?: string | undefined;
410
+ EventPattern?: string | undefined;
411
+ State?: ArchiveState | undefined;
412
+ StateReason?: string | undefined;
413
+ RetentionDays?: number | undefined;
414
+ SizeBytes?: number | undefined;
415
+ EventCount?: number | undefined;
416
+ CreationTime?: Date | undefined;
415
417
  }
416
418
  export interface DescribeConnectionRequest {
417
419
  Name: string | undefined;
418
420
  }
419
421
  export interface ConnectionApiKeyAuthResponseParameters {
420
- ApiKeyName?: string;
422
+ ApiKeyName?: string | undefined;
421
423
  }
422
424
  export interface ConnectionBasicAuthResponseParameters {
423
- Username?: string;
425
+ Username?: string | undefined;
424
426
  }
425
427
  export interface ConnectionOAuthClientResponseParameters {
426
- ClientID?: string;
428
+ ClientID?: string | undefined;
427
429
  }
428
430
  export interface ConnectionOAuthResponseParameters {
429
- ClientParameters?: ConnectionOAuthClientResponseParameters;
430
- AuthorizationEndpoint?: string;
431
- HttpMethod?: ConnectionOAuthHttpMethod;
432
- OAuthHttpParameters?: ConnectionHttpParameters;
431
+ ClientParameters?: ConnectionOAuthClientResponseParameters | undefined;
432
+ AuthorizationEndpoint?: string | undefined;
433
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
434
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
433
435
  }
434
436
  export interface ConnectionAuthResponseParameters {
435
- BasicAuthParameters?: ConnectionBasicAuthResponseParameters;
436
- OAuthParameters?: ConnectionOAuthResponseParameters;
437
- ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters;
438
- InvocationHttpParameters?: ConnectionHttpParameters;
437
+ BasicAuthParameters?: ConnectionBasicAuthResponseParameters | undefined;
438
+ OAuthParameters?: ConnectionOAuthResponseParameters | undefined;
439
+ ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters | undefined;
440
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
439
441
  }
440
442
  export interface DescribeConnectionResponse {
441
- ConnectionArn?: string;
442
- Name?: string;
443
- Description?: string;
444
- ConnectionState?: ConnectionState;
445
- StateReason?: string;
446
- AuthorizationType?: ConnectionAuthorizationType;
447
- SecretArn?: string;
448
- AuthParameters?: ConnectionAuthResponseParameters;
449
- CreationTime?: Date;
450
- LastModifiedTime?: Date;
451
- LastAuthorizedTime?: Date;
443
+ ConnectionArn?: string | undefined;
444
+ Name?: string | undefined;
445
+ Description?: string | undefined;
446
+ ConnectionState?: ConnectionState | undefined;
447
+ StateReason?: string | undefined;
448
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
449
+ SecretArn?: string | undefined;
450
+ AuthParameters?: ConnectionAuthResponseParameters | undefined;
451
+ CreationTime?: Date | undefined;
452
+ LastModifiedTime?: Date | undefined;
453
+ LastAuthorizedTime?: Date | undefined;
452
454
  }
453
455
  export interface DescribeEndpointRequest {
454
456
  Name: string | undefined;
455
- HomeRegion?: string;
457
+ HomeRegion?: string | undefined;
456
458
  }
457
459
  export interface DescribeEndpointResponse {
458
- Name?: string;
459
- Description?: string;
460
- Arn?: string;
461
- RoutingConfig?: RoutingConfig;
462
- ReplicationConfig?: ReplicationConfig;
463
- EventBuses?: EndpointEventBus[];
464
- RoleArn?: string;
465
- EndpointId?: string;
466
- EndpointUrl?: string;
467
- State?: EndpointState;
468
- StateReason?: string;
469
- CreationTime?: Date;
470
- LastModifiedTime?: Date;
460
+ Name?: string | undefined;
461
+ Description?: string | undefined;
462
+ Arn?: string | undefined;
463
+ RoutingConfig?: RoutingConfig | undefined;
464
+ ReplicationConfig?: ReplicationConfig | undefined;
465
+ EventBuses?: EndpointEventBus[] | undefined;
466
+ RoleArn?: string | undefined;
467
+ EndpointId?: string | undefined;
468
+ EndpointUrl?: string | undefined;
469
+ State?: EndpointState | undefined;
470
+ StateReason?: string | undefined;
471
+ CreationTime?: Date | undefined;
472
+ LastModifiedTime?: Date | undefined;
471
473
  }
472
474
  export interface DescribeEventBusRequest {
473
- Name?: string;
475
+ Name?: string | undefined;
474
476
  }
475
477
  export interface DescribeEventBusResponse {
476
- Name?: string;
477
- Arn?: string;
478
- Description?: string;
479
- KmsKeyIdentifier?: string;
480
- DeadLetterConfig?: DeadLetterConfig;
481
- Policy?: string;
482
- CreationTime?: Date;
483
- LastModifiedTime?: Date;
478
+ Name?: string | undefined;
479
+ Arn?: string | undefined;
480
+ Description?: string | undefined;
481
+ KmsKeyIdentifier?: string | undefined;
482
+ DeadLetterConfig?: DeadLetterConfig | undefined;
483
+ Policy?: string | undefined;
484
+ CreationTime?: Date | undefined;
485
+ LastModifiedTime?: Date | undefined;
484
486
  }
485
487
  export interface DescribeEventSourceRequest {
486
488
  Name: string | undefined;
@@ -493,44 +495,44 @@ export declare const EventSourceState: {
493
495
  export type EventSourceState =
494
496
  (typeof EventSourceState)[keyof typeof EventSourceState];
495
497
  export interface DescribeEventSourceResponse {
496
- Arn?: string;
497
- CreatedBy?: string;
498
- CreationTime?: Date;
499
- ExpirationTime?: Date;
500
- Name?: string;
501
- State?: EventSourceState;
498
+ Arn?: string | undefined;
499
+ CreatedBy?: string | undefined;
500
+ CreationTime?: Date | undefined;
501
+ ExpirationTime?: Date | undefined;
502
+ Name?: string | undefined;
503
+ State?: EventSourceState | undefined;
502
504
  }
503
505
  export interface DescribePartnerEventSourceRequest {
504
506
  Name: string | undefined;
505
507
  }
506
508
  export interface DescribePartnerEventSourceResponse {
507
- Arn?: string;
508
- Name?: string;
509
+ Arn?: string | undefined;
510
+ Name?: string | undefined;
509
511
  }
510
512
  export interface DescribeReplayRequest {
511
513
  ReplayName: string | undefined;
512
514
  }
513
515
  export interface ReplayDestination {
514
516
  Arn: string | undefined;
515
- FilterArns?: string[];
517
+ FilterArns?: string[] | undefined;
516
518
  }
517
519
  export interface DescribeReplayResponse {
518
- ReplayName?: string;
519
- ReplayArn?: string;
520
- Description?: string;
521
- State?: ReplayState;
522
- StateReason?: string;
523
- EventSourceArn?: string;
524
- Destination?: ReplayDestination;
525
- EventStartTime?: Date;
526
- EventEndTime?: Date;
527
- EventLastReplayedTime?: Date;
528
- ReplayStartTime?: Date;
529
- ReplayEndTime?: Date;
520
+ ReplayName?: string | undefined;
521
+ ReplayArn?: string | undefined;
522
+ Description?: string | undefined;
523
+ State?: ReplayState | undefined;
524
+ StateReason?: string | undefined;
525
+ EventSourceArn?: string | undefined;
526
+ Destination?: ReplayDestination | undefined;
527
+ EventStartTime?: Date | undefined;
528
+ EventEndTime?: Date | undefined;
529
+ EventLastReplayedTime?: Date | undefined;
530
+ ReplayStartTime?: Date | undefined;
531
+ ReplayEndTime?: Date | undefined;
530
532
  }
531
533
  export interface DescribeRuleRequest {
532
534
  Name: string | undefined;
533
- EventBusName?: string;
535
+ EventBusName?: string | undefined;
534
536
  }
535
537
  export declare const RuleState: {
536
538
  readonly DISABLED: "DISABLED";
@@ -539,234 +541,234 @@ export declare const RuleState: {
539
541
  };
540
542
  export type RuleState = (typeof RuleState)[keyof typeof RuleState];
541
543
  export interface DescribeRuleResponse {
542
- Name?: string;
543
- Arn?: string;
544
- EventPattern?: string;
545
- ScheduleExpression?: string;
546
- State?: RuleState;
547
- Description?: string;
548
- RoleArn?: string;
549
- ManagedBy?: string;
550
- EventBusName?: string;
551
- CreatedBy?: string;
544
+ Name?: string | undefined;
545
+ Arn?: string | undefined;
546
+ EventPattern?: string | undefined;
547
+ ScheduleExpression?: string | undefined;
548
+ State?: RuleState | undefined;
549
+ Description?: string | undefined;
550
+ RoleArn?: string | undefined;
551
+ ManagedBy?: string | undefined;
552
+ EventBusName?: string | undefined;
553
+ CreatedBy?: string | undefined;
552
554
  }
553
555
  export interface DisableRuleRequest {
554
556
  Name: string | undefined;
555
- EventBusName?: string;
557
+ EventBusName?: string | undefined;
556
558
  }
557
559
  export interface EnableRuleRequest {
558
560
  Name: string | undefined;
559
- EventBusName?: string;
561
+ EventBusName?: string | undefined;
560
562
  }
561
563
  export interface ListApiDestinationsRequest {
562
- NamePrefix?: string;
563
- ConnectionArn?: string;
564
- NextToken?: string;
565
- Limit?: number;
564
+ NamePrefix?: string | undefined;
565
+ ConnectionArn?: string | undefined;
566
+ NextToken?: string | undefined;
567
+ Limit?: number | undefined;
566
568
  }
567
569
  export interface ListApiDestinationsResponse {
568
- ApiDestinations?: ApiDestination[];
569
- NextToken?: string;
570
+ ApiDestinations?: ApiDestination[] | undefined;
571
+ NextToken?: string | undefined;
570
572
  }
571
573
  export interface ListArchivesRequest {
572
- NamePrefix?: string;
573
- EventSourceArn?: string;
574
- State?: ArchiveState;
575
- NextToken?: string;
576
- Limit?: number;
574
+ NamePrefix?: string | undefined;
575
+ EventSourceArn?: string | undefined;
576
+ State?: ArchiveState | undefined;
577
+ NextToken?: string | undefined;
578
+ Limit?: number | undefined;
577
579
  }
578
580
  export interface ListArchivesResponse {
579
- Archives?: Archive[];
580
- NextToken?: string;
581
+ Archives?: Archive[] | undefined;
582
+ NextToken?: string | undefined;
581
583
  }
582
584
  export interface ListConnectionsRequest {
583
- NamePrefix?: string;
584
- ConnectionState?: ConnectionState;
585
- NextToken?: string;
586
- Limit?: number;
585
+ NamePrefix?: string | undefined;
586
+ ConnectionState?: ConnectionState | undefined;
587
+ NextToken?: string | undefined;
588
+ Limit?: number | undefined;
587
589
  }
588
590
  export interface Connection {
589
- ConnectionArn?: string;
590
- Name?: string;
591
- ConnectionState?: ConnectionState;
592
- StateReason?: string;
593
- AuthorizationType?: ConnectionAuthorizationType;
594
- CreationTime?: Date;
595
- LastModifiedTime?: Date;
596
- LastAuthorizedTime?: Date;
591
+ ConnectionArn?: string | undefined;
592
+ Name?: string | undefined;
593
+ ConnectionState?: ConnectionState | undefined;
594
+ StateReason?: string | undefined;
595
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
596
+ CreationTime?: Date | undefined;
597
+ LastModifiedTime?: Date | undefined;
598
+ LastAuthorizedTime?: Date | undefined;
597
599
  }
598
600
  export interface ListConnectionsResponse {
599
- Connections?: Connection[];
600
- NextToken?: string;
601
+ Connections?: Connection[] | undefined;
602
+ NextToken?: string | undefined;
601
603
  }
602
604
  export interface ListEndpointsRequest {
603
- NamePrefix?: string;
604
- HomeRegion?: string;
605
- NextToken?: string;
606
- MaxResults?: number;
605
+ NamePrefix?: string | undefined;
606
+ HomeRegion?: string | undefined;
607
+ NextToken?: string | undefined;
608
+ MaxResults?: number | undefined;
607
609
  }
608
610
  export interface Endpoint {
609
- Name?: string;
610
- Description?: string;
611
- Arn?: string;
612
- RoutingConfig?: RoutingConfig;
613
- ReplicationConfig?: ReplicationConfig;
614
- EventBuses?: EndpointEventBus[];
615
- RoleArn?: string;
616
- EndpointId?: string;
617
- EndpointUrl?: string;
618
- State?: EndpointState;
619
- StateReason?: string;
620
- CreationTime?: Date;
621
- LastModifiedTime?: Date;
611
+ Name?: string | undefined;
612
+ Description?: string | undefined;
613
+ Arn?: string | undefined;
614
+ RoutingConfig?: RoutingConfig | undefined;
615
+ ReplicationConfig?: ReplicationConfig | undefined;
616
+ EventBuses?: EndpointEventBus[] | undefined;
617
+ RoleArn?: string | undefined;
618
+ EndpointId?: string | undefined;
619
+ EndpointUrl?: string | undefined;
620
+ State?: EndpointState | undefined;
621
+ StateReason?: string | undefined;
622
+ CreationTime?: Date | undefined;
623
+ LastModifiedTime?: Date | undefined;
622
624
  }
623
625
  export interface ListEndpointsResponse {
624
- Endpoints?: Endpoint[];
625
- NextToken?: string;
626
+ Endpoints?: Endpoint[] | undefined;
627
+ NextToken?: string | undefined;
626
628
  }
627
629
  export interface ListEventBusesRequest {
628
- NamePrefix?: string;
629
- NextToken?: string;
630
- Limit?: number;
630
+ NamePrefix?: string | undefined;
631
+ NextToken?: string | undefined;
632
+ Limit?: number | undefined;
631
633
  }
632
634
  export interface EventBus {
633
- Name?: string;
634
- Arn?: string;
635
- Description?: string;
636
- Policy?: string;
637
- CreationTime?: Date;
638
- LastModifiedTime?: Date;
635
+ Name?: string | undefined;
636
+ Arn?: string | undefined;
637
+ Description?: string | undefined;
638
+ Policy?: string | undefined;
639
+ CreationTime?: Date | undefined;
640
+ LastModifiedTime?: Date | undefined;
639
641
  }
640
642
  export interface ListEventBusesResponse {
641
- EventBuses?: EventBus[];
642
- NextToken?: string;
643
+ EventBuses?: EventBus[] | undefined;
644
+ NextToken?: string | undefined;
643
645
  }
644
646
  export interface ListEventSourcesRequest {
645
- NamePrefix?: string;
646
- NextToken?: string;
647
- Limit?: number;
647
+ NamePrefix?: string | undefined;
648
+ NextToken?: string | undefined;
649
+ Limit?: number | undefined;
648
650
  }
649
651
  export interface EventSource {
650
- Arn?: string;
651
- CreatedBy?: string;
652
- CreationTime?: Date;
653
- ExpirationTime?: Date;
654
- Name?: string;
655
- State?: EventSourceState;
652
+ Arn?: string | undefined;
653
+ CreatedBy?: string | undefined;
654
+ CreationTime?: Date | undefined;
655
+ ExpirationTime?: Date | undefined;
656
+ Name?: string | undefined;
657
+ State?: EventSourceState | undefined;
656
658
  }
657
659
  export interface ListEventSourcesResponse {
658
- EventSources?: EventSource[];
659
- NextToken?: string;
660
+ EventSources?: EventSource[] | undefined;
661
+ NextToken?: string | undefined;
660
662
  }
661
663
  export interface ListPartnerEventSourceAccountsRequest {
662
664
  EventSourceName: string | undefined;
663
- NextToken?: string;
664
- Limit?: number;
665
+ NextToken?: string | undefined;
666
+ Limit?: number | undefined;
665
667
  }
666
668
  export interface PartnerEventSourceAccount {
667
- Account?: string;
668
- CreationTime?: Date;
669
- ExpirationTime?: Date;
670
- State?: EventSourceState;
669
+ Account?: string | undefined;
670
+ CreationTime?: Date | undefined;
671
+ ExpirationTime?: Date | undefined;
672
+ State?: EventSourceState | undefined;
671
673
  }
672
674
  export interface ListPartnerEventSourceAccountsResponse {
673
- PartnerEventSourceAccounts?: PartnerEventSourceAccount[];
674
- NextToken?: string;
675
+ PartnerEventSourceAccounts?: PartnerEventSourceAccount[] | undefined;
676
+ NextToken?: string | undefined;
675
677
  }
676
678
  export interface ListPartnerEventSourcesRequest {
677
679
  NamePrefix: string | undefined;
678
- NextToken?: string;
679
- Limit?: number;
680
+ NextToken?: string | undefined;
681
+ Limit?: number | undefined;
680
682
  }
681
683
  export interface PartnerEventSource {
682
- Arn?: string;
683
- Name?: string;
684
+ Arn?: string | undefined;
685
+ Name?: string | undefined;
684
686
  }
685
687
  export interface ListPartnerEventSourcesResponse {
686
- PartnerEventSources?: PartnerEventSource[];
687
- NextToken?: string;
688
+ PartnerEventSources?: PartnerEventSource[] | undefined;
689
+ NextToken?: string | undefined;
688
690
  }
689
691
  export interface ListReplaysRequest {
690
- NamePrefix?: string;
691
- State?: ReplayState;
692
- EventSourceArn?: string;
693
- NextToken?: string;
694
- Limit?: number;
692
+ NamePrefix?: string | undefined;
693
+ State?: ReplayState | undefined;
694
+ EventSourceArn?: string | undefined;
695
+ NextToken?: string | undefined;
696
+ Limit?: number | undefined;
695
697
  }
696
698
  export interface Replay {
697
- ReplayName?: string;
698
- EventSourceArn?: string;
699
- State?: ReplayState;
700
- StateReason?: string;
701
- EventStartTime?: Date;
702
- EventEndTime?: Date;
703
- EventLastReplayedTime?: Date;
704
- ReplayStartTime?: Date;
705
- ReplayEndTime?: Date;
699
+ ReplayName?: string | undefined;
700
+ EventSourceArn?: string | undefined;
701
+ State?: ReplayState | undefined;
702
+ StateReason?: string | undefined;
703
+ EventStartTime?: Date | undefined;
704
+ EventEndTime?: Date | undefined;
705
+ EventLastReplayedTime?: Date | undefined;
706
+ ReplayStartTime?: Date | undefined;
707
+ ReplayEndTime?: Date | undefined;
706
708
  }
707
709
  export interface ListReplaysResponse {
708
- Replays?: Replay[];
709
- NextToken?: string;
710
+ Replays?: Replay[] | undefined;
711
+ NextToken?: string | undefined;
710
712
  }
711
713
  export interface ListRuleNamesByTargetRequest {
712
714
  TargetArn: string | undefined;
713
- EventBusName?: string;
714
- NextToken?: string;
715
- Limit?: number;
715
+ EventBusName?: string | undefined;
716
+ NextToken?: string | undefined;
717
+ Limit?: number | undefined;
716
718
  }
717
719
  export interface ListRuleNamesByTargetResponse {
718
- RuleNames?: string[];
719
- NextToken?: string;
720
+ RuleNames?: string[] | undefined;
721
+ NextToken?: string | undefined;
720
722
  }
721
723
  export interface ListRulesRequest {
722
- NamePrefix?: string;
723
- EventBusName?: string;
724
- NextToken?: string;
725
- Limit?: number;
724
+ NamePrefix?: string | undefined;
725
+ EventBusName?: string | undefined;
726
+ NextToken?: string | undefined;
727
+ Limit?: number | undefined;
726
728
  }
727
729
  export interface Rule {
728
- Name?: string;
729
- Arn?: string;
730
- EventPattern?: string;
731
- State?: RuleState;
732
- Description?: string;
733
- ScheduleExpression?: string;
734
- RoleArn?: string;
735
- ManagedBy?: string;
736
- EventBusName?: string;
730
+ Name?: string | undefined;
731
+ Arn?: string | undefined;
732
+ EventPattern?: string | undefined;
733
+ State?: RuleState | undefined;
734
+ Description?: string | undefined;
735
+ ScheduleExpression?: string | undefined;
736
+ RoleArn?: string | undefined;
737
+ ManagedBy?: string | undefined;
738
+ EventBusName?: string | undefined;
737
739
  }
738
740
  export interface ListRulesResponse {
739
- Rules?: Rule[];
740
- NextToken?: string;
741
+ Rules?: Rule[] | undefined;
742
+ NextToken?: string | undefined;
741
743
  }
742
744
  export interface ListTagsForResourceRequest {
743
745
  ResourceARN: string | undefined;
744
746
  }
745
747
  export interface ListTagsForResourceResponse {
746
- Tags?: Tag[];
748
+ Tags?: Tag[] | undefined;
747
749
  }
748
750
  export interface ListTargetsByRuleRequest {
749
751
  Rule: string | undefined;
750
- EventBusName?: string;
751
- NextToken?: string;
752
- Limit?: number;
752
+ EventBusName?: string | undefined;
753
+ NextToken?: string | undefined;
754
+ Limit?: number | undefined;
753
755
  }
754
756
  export interface BatchArrayProperties {
755
- Size?: number;
757
+ Size?: number | undefined;
756
758
  }
757
759
  export interface BatchRetryStrategy {
758
- Attempts?: number;
760
+ Attempts?: number | undefined;
759
761
  }
760
762
  export interface BatchParameters {
761
763
  JobDefinition: string | undefined;
762
764
  JobName: string | undefined;
763
- ArrayProperties?: BatchArrayProperties;
764
- RetryStrategy?: BatchRetryStrategy;
765
+ ArrayProperties?: BatchArrayProperties | undefined;
766
+ RetryStrategy?: BatchRetryStrategy | undefined;
765
767
  }
766
768
  export interface CapacityProviderStrategyItem {
767
769
  capacityProvider: string | undefined;
768
- weight?: number;
769
- base?: number;
770
+ weight?: number | undefined;
771
+ base?: number | undefined;
770
772
  }
771
773
  export declare const LaunchType: {
772
774
  readonly EC2: "EC2";
@@ -776,11 +778,11 @@ export declare const LaunchType: {
776
778
  export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
777
779
  export interface AwsVpcConfiguration {
778
780
  Subnets: string[] | undefined;
779
- SecurityGroups?: string[];
780
- AssignPublicIp?: AssignPublicIp;
781
+ SecurityGroups?: string[] | undefined;
782
+ AssignPublicIp?: AssignPublicIp | undefined;
781
783
  }
782
784
  export interface NetworkConfiguration {
783
- awsvpcConfiguration?: AwsVpcConfiguration;
785
+ awsvpcConfiguration?: AwsVpcConfiguration | undefined;
784
786
  }
785
787
  export declare const PlacementConstraintType: {
786
788
  readonly DISTINCT_INSTANCE: "distinctInstance";
@@ -789,8 +791,8 @@ export declare const PlacementConstraintType: {
789
791
  export type PlacementConstraintType =
790
792
  (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
791
793
  export interface PlacementConstraint {
792
- type?: PlacementConstraintType;
793
- expression?: string;
794
+ type?: PlacementConstraintType | undefined;
795
+ expression?: string | undefined;
794
796
  }
795
797
  export declare const PlacementStrategyType: {
796
798
  readonly BINPACK: "binpack";
@@ -800,8 +802,8 @@ export declare const PlacementStrategyType: {
800
802
  export type PlacementStrategyType =
801
803
  (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
802
804
  export interface PlacementStrategy {
803
- type?: PlacementStrategyType;
804
- field?: string;
805
+ type?: PlacementStrategyType | undefined;
806
+ field?: string | undefined;
805
807
  }
806
808
  export declare const PropagateTags: {
807
809
  readonly TASK_DEFINITION: "TASK_DEFINITION";
@@ -809,44 +811,44 @@ export declare const PropagateTags: {
809
811
  export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
810
812
  export interface EcsParameters {
811
813
  TaskDefinitionArn: string | undefined;
812
- TaskCount?: number;
813
- LaunchType?: LaunchType;
814
- NetworkConfiguration?: NetworkConfiguration;
815
- PlatformVersion?: string;
816
- Group?: string;
817
- CapacityProviderStrategy?: CapacityProviderStrategyItem[];
818
- EnableECSManagedTags?: boolean;
819
- EnableExecuteCommand?: boolean;
820
- PlacementConstraints?: PlacementConstraint[];
821
- PlacementStrategy?: PlacementStrategy[];
822
- PropagateTags?: PropagateTags;
823
- ReferenceId?: string;
824
- Tags?: Tag[];
814
+ TaskCount?: number | undefined;
815
+ LaunchType?: LaunchType | undefined;
816
+ NetworkConfiguration?: NetworkConfiguration | undefined;
817
+ PlatformVersion?: string | undefined;
818
+ Group?: string | undefined;
819
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
820
+ EnableECSManagedTags?: boolean | undefined;
821
+ EnableExecuteCommand?: boolean | undefined;
822
+ PlacementConstraints?: PlacementConstraint[] | undefined;
823
+ PlacementStrategy?: PlacementStrategy[] | undefined;
824
+ PropagateTags?: PropagateTags | undefined;
825
+ ReferenceId?: string | undefined;
826
+ Tags?: Tag[] | undefined;
825
827
  }
826
828
  export interface HttpParameters {
827
- PathParameterValues?: string[];
828
- HeaderParameters?: Record<string, string>;
829
- QueryStringParameters?: Record<string, string>;
829
+ PathParameterValues?: string[] | undefined;
830
+ HeaderParameters?: Record<string, string> | undefined;
831
+ QueryStringParameters?: Record<string, string> | undefined;
830
832
  }
831
833
  export interface InputTransformer {
832
- InputPathsMap?: Record<string, string>;
834
+ InputPathsMap?: Record<string, string> | undefined;
833
835
  InputTemplate: string | undefined;
834
836
  }
835
837
  export interface KinesisParameters {
836
838
  PartitionKeyPath: string | undefined;
837
839
  }
838
840
  export interface RedshiftDataParameters {
839
- SecretManagerArn?: string;
841
+ SecretManagerArn?: string | undefined;
840
842
  Database: string | undefined;
841
- DbUser?: string;
842
- Sql?: string;
843
- StatementName?: string;
844
- WithEvent?: boolean;
845
- Sqls?: string[];
843
+ DbUser?: string | undefined;
844
+ Sql?: string | undefined;
845
+ StatementName?: string | undefined;
846
+ WithEvent?: boolean | undefined;
847
+ Sqls?: string[] | undefined;
846
848
  }
847
849
  export interface RetryPolicy {
848
- MaximumRetryAttempts?: number;
849
- MaximumEventAgeInSeconds?: number;
850
+ MaximumRetryAttempts?: number | undefined;
851
+ MaximumEventAgeInSeconds?: number | undefined;
850
852
  }
851
853
  export interface RunCommandTarget {
852
854
  Key: string | undefined;
@@ -860,74 +862,74 @@ export interface SageMakerPipelineParameter {
860
862
  Value: string | undefined;
861
863
  }
862
864
  export interface SageMakerPipelineParameters {
863
- PipelineParameterList?: SageMakerPipelineParameter[];
865
+ PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
864
866
  }
865
867
  export interface SqsParameters {
866
- MessageGroupId?: string;
868
+ MessageGroupId?: string | undefined;
867
869
  }
868
870
  export interface Target {
869
871
  Id: string | undefined;
870
872
  Arn: string | undefined;
871
- RoleArn?: string;
872
- Input?: string;
873
- InputPath?: string;
874
- InputTransformer?: InputTransformer;
875
- KinesisParameters?: KinesisParameters;
876
- RunCommandParameters?: RunCommandParameters;
877
- EcsParameters?: EcsParameters;
878
- BatchParameters?: BatchParameters;
879
- SqsParameters?: SqsParameters;
880
- HttpParameters?: HttpParameters;
881
- RedshiftDataParameters?: RedshiftDataParameters;
882
- SageMakerPipelineParameters?: SageMakerPipelineParameters;
883
- DeadLetterConfig?: DeadLetterConfig;
884
- RetryPolicy?: RetryPolicy;
885
- AppSyncParameters?: AppSyncParameters;
873
+ RoleArn?: string | undefined;
874
+ Input?: string | undefined;
875
+ InputPath?: string | undefined;
876
+ InputTransformer?: InputTransformer | undefined;
877
+ KinesisParameters?: KinesisParameters | undefined;
878
+ RunCommandParameters?: RunCommandParameters | undefined;
879
+ EcsParameters?: EcsParameters | undefined;
880
+ BatchParameters?: BatchParameters | undefined;
881
+ SqsParameters?: SqsParameters | undefined;
882
+ HttpParameters?: HttpParameters | undefined;
883
+ RedshiftDataParameters?: RedshiftDataParameters | undefined;
884
+ SageMakerPipelineParameters?: SageMakerPipelineParameters | undefined;
885
+ DeadLetterConfig?: DeadLetterConfig | undefined;
886
+ RetryPolicy?: RetryPolicy | undefined;
887
+ AppSyncParameters?: AppSyncParameters | undefined;
886
888
  }
887
889
  export interface ListTargetsByRuleResponse {
888
- Targets?: Target[];
889
- NextToken?: string;
890
+ Targets?: Target[] | undefined;
891
+ NextToken?: string | undefined;
890
892
  }
891
893
  export interface PutEventsRequestEntry {
892
- Time?: Date;
893
- Source?: string;
894
- Resources?: string[];
895
- DetailType?: string;
896
- Detail?: string;
897
- EventBusName?: string;
898
- TraceHeader?: string;
894
+ Time?: Date | undefined;
895
+ Source?: string | undefined;
896
+ Resources?: string[] | undefined;
897
+ DetailType?: string | undefined;
898
+ Detail?: string | undefined;
899
+ EventBusName?: string | undefined;
900
+ TraceHeader?: string | undefined;
899
901
  }
900
902
  export interface PutEventsRequest {
901
903
  Entries: PutEventsRequestEntry[] | undefined;
902
- EndpointId?: string;
904
+ EndpointId?: string | undefined;
903
905
  }
904
906
  export interface PutEventsResultEntry {
905
- EventId?: string;
906
- ErrorCode?: string;
907
- ErrorMessage?: string;
907
+ EventId?: string | undefined;
908
+ ErrorCode?: string | undefined;
909
+ ErrorMessage?: string | undefined;
908
910
  }
909
911
  export interface PutEventsResponse {
910
- FailedEntryCount?: number;
911
- Entries?: PutEventsResultEntry[];
912
+ FailedEntryCount?: number | undefined;
913
+ Entries?: PutEventsResultEntry[] | undefined;
912
914
  }
913
915
  export interface PutPartnerEventsRequestEntry {
914
- Time?: Date;
915
- Source?: string;
916
- Resources?: string[];
917
- DetailType?: string;
918
- Detail?: string;
916
+ Time?: Date | undefined;
917
+ Source?: string | undefined;
918
+ Resources?: string[] | undefined;
919
+ DetailType?: string | undefined;
920
+ Detail?: string | undefined;
919
921
  }
920
922
  export interface PutPartnerEventsRequest {
921
923
  Entries: PutPartnerEventsRequestEntry[] | undefined;
922
924
  }
923
925
  export interface PutPartnerEventsResultEntry {
924
- EventId?: string;
925
- ErrorCode?: string;
926
- ErrorMessage?: string;
926
+ EventId?: string | undefined;
927
+ ErrorCode?: string | undefined;
928
+ ErrorMessage?: string | undefined;
927
929
  }
928
930
  export interface PutPartnerEventsResponse {
929
- FailedEntryCount?: number;
930
- Entries?: PutPartnerEventsResultEntry[];
931
+ FailedEntryCount?: number | undefined;
932
+ Entries?: PutPartnerEventsResultEntry[] | undefined;
931
933
  }
932
934
  export declare class PolicyLengthExceededException extends __BaseException {
933
935
  readonly name: "PolicyLengthExceededException";
@@ -942,73 +944,73 @@ export interface Condition {
942
944
  Value: string | undefined;
943
945
  }
944
946
  export interface PutPermissionRequest {
945
- EventBusName?: string;
946
- Action?: string;
947
- Principal?: string;
948
- StatementId?: string;
949
- Condition?: Condition;
950
- Policy?: string;
947
+ EventBusName?: string | undefined;
948
+ Action?: string | undefined;
949
+ Principal?: string | undefined;
950
+ StatementId?: string | undefined;
951
+ Condition?: Condition | undefined;
952
+ Policy?: string | undefined;
951
953
  }
952
954
  export interface PutRuleRequest {
953
955
  Name: string | undefined;
954
- ScheduleExpression?: string;
955
- EventPattern?: string;
956
- State?: RuleState;
957
- Description?: string;
958
- RoleArn?: string;
959
- Tags?: Tag[];
960
- EventBusName?: string;
956
+ ScheduleExpression?: string | undefined;
957
+ EventPattern?: string | undefined;
958
+ State?: RuleState | undefined;
959
+ Description?: string | undefined;
960
+ RoleArn?: string | undefined;
961
+ Tags?: Tag[] | undefined;
962
+ EventBusName?: string | undefined;
961
963
  }
962
964
  export interface PutRuleResponse {
963
- RuleArn?: string;
965
+ RuleArn?: string | undefined;
964
966
  }
965
967
  export interface PutTargetsRequest {
966
968
  Rule: string | undefined;
967
- EventBusName?: string;
969
+ EventBusName?: string | undefined;
968
970
  Targets: Target[] | undefined;
969
971
  }
970
972
  export interface PutTargetsResultEntry {
971
- TargetId?: string;
972
- ErrorCode?: string;
973
- ErrorMessage?: string;
973
+ TargetId?: string | undefined;
974
+ ErrorCode?: string | undefined;
975
+ ErrorMessage?: string | undefined;
974
976
  }
975
977
  export interface PutTargetsResponse {
976
- FailedEntryCount?: number;
977
- FailedEntries?: PutTargetsResultEntry[];
978
+ FailedEntryCount?: number | undefined;
979
+ FailedEntries?: PutTargetsResultEntry[] | undefined;
978
980
  }
979
981
  export interface RemovePermissionRequest {
980
- StatementId?: string;
981
- RemoveAllPermissions?: boolean;
982
- EventBusName?: string;
982
+ StatementId?: string | undefined;
983
+ RemoveAllPermissions?: boolean | undefined;
984
+ EventBusName?: string | undefined;
983
985
  }
984
986
  export interface RemoveTargetsRequest {
985
987
  Rule: string | undefined;
986
- EventBusName?: string;
988
+ EventBusName?: string | undefined;
987
989
  Ids: string[] | undefined;
988
- Force?: boolean;
990
+ Force?: boolean | undefined;
989
991
  }
990
992
  export interface RemoveTargetsResultEntry {
991
- TargetId?: string;
992
- ErrorCode?: string;
993
- ErrorMessage?: string;
993
+ TargetId?: string | undefined;
994
+ ErrorCode?: string | undefined;
995
+ ErrorMessage?: string | undefined;
994
996
  }
995
997
  export interface RemoveTargetsResponse {
996
- FailedEntryCount?: number;
997
- FailedEntries?: RemoveTargetsResultEntry[];
998
+ FailedEntryCount?: number | undefined;
999
+ FailedEntries?: RemoveTargetsResultEntry[] | undefined;
998
1000
  }
999
1001
  export interface StartReplayRequest {
1000
1002
  ReplayName: string | undefined;
1001
- Description?: string;
1003
+ Description?: string | undefined;
1002
1004
  EventSourceArn: string | undefined;
1003
1005
  EventStartTime: Date | undefined;
1004
1006
  EventEndTime: Date | undefined;
1005
1007
  Destination: ReplayDestination | undefined;
1006
1008
  }
1007
1009
  export interface StartReplayResponse {
1008
- ReplayArn?: string;
1009
- State?: ReplayState;
1010
- StateReason?: string;
1011
- ReplayStartTime?: Date;
1010
+ ReplayArn?: string | undefined;
1011
+ State?: ReplayState | undefined;
1012
+ StateReason?: string | undefined;
1013
+ ReplayStartTime?: Date | undefined;
1012
1014
  }
1013
1015
  export interface TagResourceRequest {
1014
1016
  ResourceARN: string | undefined;
@@ -1020,7 +1022,7 @@ export interface TestEventPatternRequest {
1020
1022
  Event: string | undefined;
1021
1023
  }
1022
1024
  export interface TestEventPatternResponse {
1023
- Result?: boolean;
1025
+ Result?: boolean | undefined;
1024
1026
  }
1025
1027
  export interface UntagResourceRequest {
1026
1028
  ResourceARN: string | undefined;
@@ -1029,98 +1031,100 @@ export interface UntagResourceRequest {
1029
1031
  export interface UntagResourceResponse {}
1030
1032
  export interface UpdateApiDestinationRequest {
1031
1033
  Name: string | undefined;
1032
- Description?: string;
1033
- ConnectionArn?: string;
1034
- InvocationEndpoint?: string;
1035
- HttpMethod?: ApiDestinationHttpMethod;
1036
- InvocationRateLimitPerSecond?: number;
1034
+ Description?: string | undefined;
1035
+ ConnectionArn?: string | undefined;
1036
+ InvocationEndpoint?: string | undefined;
1037
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
1038
+ InvocationRateLimitPerSecond?: number | undefined;
1037
1039
  }
1038
1040
  export interface UpdateApiDestinationResponse {
1039
- ApiDestinationArn?: string;
1040
- ApiDestinationState?: ApiDestinationState;
1041
- CreationTime?: Date;
1042
- LastModifiedTime?: Date;
1041
+ ApiDestinationArn?: string | undefined;
1042
+ ApiDestinationState?: ApiDestinationState | undefined;
1043
+ CreationTime?: Date | undefined;
1044
+ LastModifiedTime?: Date | undefined;
1043
1045
  }
1044
1046
  export interface UpdateArchiveRequest {
1045
1047
  ArchiveName: string | undefined;
1046
- Description?: string;
1047
- EventPattern?: string;
1048
- RetentionDays?: number;
1048
+ Description?: string | undefined;
1049
+ EventPattern?: string | undefined;
1050
+ RetentionDays?: number | undefined;
1049
1051
  }
1050
1052
  export interface UpdateArchiveResponse {
1051
- ArchiveArn?: string;
1052
- State?: ArchiveState;
1053
- StateReason?: string;
1054
- CreationTime?: Date;
1053
+ ArchiveArn?: string | undefined;
1054
+ State?: ArchiveState | undefined;
1055
+ StateReason?: string | undefined;
1056
+ CreationTime?: Date | undefined;
1055
1057
  }
1056
1058
  export interface UpdateConnectionApiKeyAuthRequestParameters {
1057
- ApiKeyName?: string;
1058
- ApiKeyValue?: string;
1059
+ ApiKeyName?: string | undefined;
1060
+ ApiKeyValue?: string | undefined;
1059
1061
  }
1060
1062
  export interface UpdateConnectionBasicAuthRequestParameters {
1061
- Username?: string;
1062
- Password?: string;
1063
+ Username?: string | undefined;
1064
+ Password?: string | undefined;
1063
1065
  }
1064
1066
  export interface UpdateConnectionOAuthClientRequestParameters {
1065
- ClientID?: string;
1066
- ClientSecret?: string;
1067
+ ClientID?: string | undefined;
1068
+ ClientSecret?: string | undefined;
1067
1069
  }
1068
1070
  export interface UpdateConnectionOAuthRequestParameters {
1069
- ClientParameters?: UpdateConnectionOAuthClientRequestParameters;
1070
- AuthorizationEndpoint?: string;
1071
- HttpMethod?: ConnectionOAuthHttpMethod;
1072
- OAuthHttpParameters?: ConnectionHttpParameters;
1071
+ ClientParameters?: UpdateConnectionOAuthClientRequestParameters | undefined;
1072
+ AuthorizationEndpoint?: string | undefined;
1073
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
1074
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
1073
1075
  }
1074
1076
  export interface UpdateConnectionAuthRequestParameters {
1075
- BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters;
1076
- OAuthParameters?: UpdateConnectionOAuthRequestParameters;
1077
- ApiKeyAuthParameters?: UpdateConnectionApiKeyAuthRequestParameters;
1078
- InvocationHttpParameters?: ConnectionHttpParameters;
1077
+ BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters | undefined;
1078
+ OAuthParameters?: UpdateConnectionOAuthRequestParameters | undefined;
1079
+ ApiKeyAuthParameters?:
1080
+ | UpdateConnectionApiKeyAuthRequestParameters
1081
+ | undefined;
1082
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
1079
1083
  }
1080
1084
  export interface UpdateConnectionRequest {
1081
1085
  Name: string | undefined;
1082
- Description?: string;
1083
- AuthorizationType?: ConnectionAuthorizationType;
1084
- AuthParameters?: UpdateConnectionAuthRequestParameters;
1086
+ Description?: string | undefined;
1087
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
1088
+ AuthParameters?: UpdateConnectionAuthRequestParameters | undefined;
1085
1089
  }
1086
1090
  export interface UpdateConnectionResponse {
1087
- ConnectionArn?: string;
1088
- ConnectionState?: ConnectionState;
1089
- CreationTime?: Date;
1090
- LastModifiedTime?: Date;
1091
- LastAuthorizedTime?: Date;
1091
+ ConnectionArn?: string | undefined;
1092
+ ConnectionState?: ConnectionState | undefined;
1093
+ CreationTime?: Date | undefined;
1094
+ LastModifiedTime?: Date | undefined;
1095
+ LastAuthorizedTime?: Date | undefined;
1092
1096
  }
1093
1097
  export interface UpdateEndpointRequest {
1094
1098
  Name: string | undefined;
1095
- Description?: string;
1096
- RoutingConfig?: RoutingConfig;
1097
- ReplicationConfig?: ReplicationConfig;
1098
- EventBuses?: EndpointEventBus[];
1099
- RoleArn?: string;
1099
+ Description?: string | undefined;
1100
+ RoutingConfig?: RoutingConfig | undefined;
1101
+ ReplicationConfig?: ReplicationConfig | undefined;
1102
+ EventBuses?: EndpointEventBus[] | undefined;
1103
+ RoleArn?: string | undefined;
1100
1104
  }
1101
1105
  export interface UpdateEndpointResponse {
1102
- Name?: string;
1103
- Arn?: string;
1104
- RoutingConfig?: RoutingConfig;
1105
- ReplicationConfig?: ReplicationConfig;
1106
- EventBuses?: EndpointEventBus[];
1107
- RoleArn?: string;
1108
- EndpointId?: string;
1109
- EndpointUrl?: string;
1110
- State?: EndpointState;
1106
+ Name?: string | undefined;
1107
+ Arn?: string | undefined;
1108
+ RoutingConfig?: RoutingConfig | undefined;
1109
+ ReplicationConfig?: ReplicationConfig | undefined;
1110
+ EventBuses?: EndpointEventBus[] | undefined;
1111
+ RoleArn?: string | undefined;
1112
+ EndpointId?: string | undefined;
1113
+ EndpointUrl?: string | undefined;
1114
+ State?: EndpointState | undefined;
1111
1115
  }
1112
1116
  export interface UpdateEventBusRequest {
1113
- Name?: string;
1114
- KmsKeyIdentifier?: string;
1115
- Description?: string;
1116
- DeadLetterConfig?: DeadLetterConfig;
1117
+ Name?: string | undefined;
1118
+ KmsKeyIdentifier?: string | undefined;
1119
+ Description?: string | undefined;
1120
+ DeadLetterConfig?: DeadLetterConfig | undefined;
1117
1121
  }
1118
1122
  export interface UpdateEventBusResponse {
1119
- Arn?: string;
1120
- Name?: string;
1121
- KmsKeyIdentifier?: string;
1122
- Description?: string;
1123
- DeadLetterConfig?: DeadLetterConfig;
1123
+ Arn?: string | undefined;
1124
+ Name?: string | undefined;
1125
+ KmsKeyIdentifier?: string | undefined;
1126
+ Description?: string | undefined;
1127
+ DeadLetterConfig?: DeadLetterConfig | undefined;
1124
1128
  }
1125
1129
  export declare const AppSyncParametersFilterSensitiveLog: (
1126
1130
  obj: AppSyncParameters