@aws-sdk/client-eventbridge 3.686.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.
@@ -108,47 +108,47 @@ export interface ApiDestination {
108
108
  * <p>The ARN of the API destination.</p>
109
109
  * @public
110
110
  */
111
- ApiDestinationArn?: string;
111
+ ApiDestinationArn?: string | undefined;
112
112
  /**
113
113
  * <p>The name of the API destination.</p>
114
114
  * @public
115
115
  */
116
- Name?: string;
116
+ Name?: string | undefined;
117
117
  /**
118
118
  * <p>The state of the API destination.</p>
119
119
  * @public
120
120
  */
121
- ApiDestinationState?: ApiDestinationState;
121
+ ApiDestinationState?: ApiDestinationState | undefined;
122
122
  /**
123
123
  * <p>The ARN of the connection specified for the API destination.</p>
124
124
  * @public
125
125
  */
126
- ConnectionArn?: string;
126
+ ConnectionArn?: string | undefined;
127
127
  /**
128
128
  * <p>The URL to the endpoint for the API destination.</p>
129
129
  * @public
130
130
  */
131
- InvocationEndpoint?: string;
131
+ InvocationEndpoint?: string | undefined;
132
132
  /**
133
133
  * <p>The method to use to connect to the HTTP endpoint.</p>
134
134
  * @public
135
135
  */
136
- HttpMethod?: ApiDestinationHttpMethod;
136
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
137
137
  /**
138
138
  * <p>The maximum number of invocations per second to send to the HTTP endpoint.</p>
139
139
  * @public
140
140
  */
141
- InvocationRateLimitPerSecond?: number;
141
+ InvocationRateLimitPerSecond?: number | undefined;
142
142
  /**
143
143
  * <p>A time stamp for the time that the API destination was created.</p>
144
144
  * @public
145
145
  */
146
- CreationTime?: Date;
146
+ CreationTime?: Date | undefined;
147
147
  /**
148
148
  * <p>A time stamp for the time that the API destination was last modified.</p>
149
149
  * @public
150
150
  */
151
- LastModifiedTime?: Date;
151
+ LastModifiedTime?: Date | undefined;
152
152
  }
153
153
  /**
154
154
  * <p>Contains the GraphQL operation to be parsed and executed, if the event target is an
@@ -162,7 +162,7 @@ export interface AppSyncParameters {
162
162
  * <p>For more information, see <a href="https://docs.aws.amazon.com/appsync/latest/devguide/graphql-architecture.html#graphql-operations">Operations</a> in the <i>AppSync User Guide</i>.</p>
163
163
  * @public
164
164
  */
165
- GraphQLOperation?: string;
165
+ GraphQLOperation?: string | undefined;
166
166
  }
167
167
  /**
168
168
  * @public
@@ -189,43 +189,43 @@ export interface Archive {
189
189
  * <p>The name of the archive.</p>
190
190
  * @public
191
191
  */
192
- ArchiveName?: string;
192
+ ArchiveName?: string | undefined;
193
193
  /**
194
194
  * <p>The ARN of the event bus associated with the archive. Only events from this event bus are
195
195
  * sent to the archive.</p>
196
196
  * @public
197
197
  */
198
- EventSourceArn?: string;
198
+ EventSourceArn?: string | undefined;
199
199
  /**
200
200
  * <p>The current state of the archive.</p>
201
201
  * @public
202
202
  */
203
- State?: ArchiveState;
203
+ State?: ArchiveState | undefined;
204
204
  /**
205
205
  * <p>A description for the reason that the archive is in the current state.</p>
206
206
  * @public
207
207
  */
208
- StateReason?: string;
208
+ StateReason?: string | undefined;
209
209
  /**
210
210
  * <p>The number of days to retain events in the archive before they are deleted.</p>
211
211
  * @public
212
212
  */
213
- RetentionDays?: number;
213
+ RetentionDays?: number | undefined;
214
214
  /**
215
215
  * <p>The size of the archive, in bytes.</p>
216
216
  * @public
217
217
  */
218
- SizeBytes?: number;
218
+ SizeBytes?: number | undefined;
219
219
  /**
220
220
  * <p>The number of events in the archive.</p>
221
221
  * @public
222
222
  */
223
- EventCount?: number;
223
+ EventCount?: number | undefined;
224
224
  /**
225
225
  * <p>The time stamp for the time that the archive was created.</p>
226
226
  * @public
227
227
  */
228
- CreationTime?: Date;
228
+ CreationTime?: Date | undefined;
229
229
  }
230
230
  /**
231
231
  * @public
@@ -273,17 +273,17 @@ export interface CancelReplayResponse {
273
273
  * <p>The ARN of the replay to cancel.</p>
274
274
  * @public
275
275
  */
276
- ReplayArn?: string;
276
+ ReplayArn?: string | undefined;
277
277
  /**
278
278
  * <p>The current state of the replay.</p>
279
279
  * @public
280
280
  */
281
- State?: ReplayState;
281
+ State?: ReplayState | undefined;
282
282
  /**
283
283
  * <p>The reason that the replay is in the current state.</p>
284
284
  * @public
285
285
  */
286
- StateReason?: string;
286
+ StateReason?: string | undefined;
287
287
  }
288
288
  /**
289
289
  * <p>An error occurred because a replay can be canceled only when the state is Running or
@@ -311,7 +311,7 @@ export interface CreateApiDestinationRequest {
311
311
  * <p>A description for the API destination to create.</p>
312
312
  * @public
313
313
  */
314
- Description?: string;
314
+ Description?: string | undefined;
315
315
  /**
316
316
  * <p>The ARN of the connection to use for the API destination. The destination endpoint must
317
317
  * support the authorization type specified for the connection.</p>
@@ -332,7 +332,7 @@ export interface CreateApiDestinationRequest {
332
332
  * <p>The maximum number of requests per second to send to the HTTP invocation endpoint.</p>
333
333
  * @public
334
334
  */
335
- InvocationRateLimitPerSecond?: number;
335
+ InvocationRateLimitPerSecond?: number | undefined;
336
336
  }
337
337
  /**
338
338
  * @public
@@ -342,22 +342,22 @@ export interface CreateApiDestinationResponse {
342
342
  * <p>The ARN of the API destination that was created by the request.</p>
343
343
  * @public
344
344
  */
345
- ApiDestinationArn?: string;
345
+ ApiDestinationArn?: string | undefined;
346
346
  /**
347
347
  * <p>The state of the API destination that was created by the request.</p>
348
348
  * @public
349
349
  */
350
- ApiDestinationState?: ApiDestinationState;
350
+ ApiDestinationState?: ApiDestinationState | undefined;
351
351
  /**
352
352
  * <p>A time stamp indicating the time that the API destination was created.</p>
353
353
  * @public
354
354
  */
355
- CreationTime?: Date;
355
+ CreationTime?: Date | undefined;
356
356
  /**
357
357
  * <p>A time stamp indicating the time that the API destination was last modified.</p>
358
358
  * @public
359
359
  */
360
- LastModifiedTime?: Date;
360
+ LastModifiedTime?: Date | undefined;
361
361
  }
362
362
  /**
363
363
  * <p>The request failed because it attempted to create resource beyond the allowed service
@@ -402,18 +402,18 @@ export interface CreateArchiveRequest {
402
402
  * <p>A description for the archive.</p>
403
403
  * @public
404
404
  */
405
- Description?: string;
405
+ Description?: string | undefined;
406
406
  /**
407
407
  * <p>An event pattern to use to filter events sent to the archive.</p>
408
408
  * @public
409
409
  */
410
- EventPattern?: string;
410
+ EventPattern?: string | undefined;
411
411
  /**
412
412
  * <p>The number of days to retain events for. Default value is 0. If set to 0, events are
413
413
  * retained indefinitely</p>
414
414
  * @public
415
415
  */
416
- RetentionDays?: number;
416
+ RetentionDays?: number | undefined;
417
417
  }
418
418
  /**
419
419
  * @public
@@ -423,22 +423,22 @@ export interface CreateArchiveResponse {
423
423
  * <p>The ARN of the archive that was created.</p>
424
424
  * @public
425
425
  */
426
- ArchiveArn?: string;
426
+ ArchiveArn?: string | undefined;
427
427
  /**
428
428
  * <p>The state of the archive that was created.</p>
429
429
  * @public
430
430
  */
431
- State?: ArchiveState;
431
+ State?: ArchiveState | undefined;
432
432
  /**
433
433
  * <p>The reason that the archive is in the state.</p>
434
434
  * @public
435
435
  */
436
- StateReason?: string;
436
+ StateReason?: string | undefined;
437
437
  /**
438
438
  * <p>The time at which the archive was created.</p>
439
439
  * @public
440
440
  */
441
- CreationTime?: Date;
441
+ CreationTime?: Date | undefined;
442
442
  }
443
443
  /**
444
444
  * <p>The event pattern is not valid.</p>
@@ -507,17 +507,17 @@ export interface ConnectionBodyParameter {
507
507
  * <p>The key for the parameter.</p>
508
508
  * @public
509
509
  */
510
- Key?: string;
510
+ Key?: string | undefined;
511
511
  /**
512
512
  * <p>The value associated with the key.</p>
513
513
  * @public
514
514
  */
515
- Value?: string;
515
+ Value?: string | undefined;
516
516
  /**
517
517
  * <p>Specified whether the value is secret.</p>
518
518
  * @public
519
519
  */
520
- IsValueSecret?: boolean;
520
+ IsValueSecret?: boolean | undefined;
521
521
  }
522
522
  /**
523
523
  * <p>Additional parameter included in the header. You can include up to 100 additional header
@@ -529,17 +529,17 @@ export interface ConnectionHeaderParameter {
529
529
  * <p>The key for the parameter.</p>
530
530
  * @public
531
531
  */
532
- Key?: string;
532
+ Key?: string | undefined;
533
533
  /**
534
534
  * <p>The value associated with the key.</p>
535
535
  * @public
536
536
  */
537
- Value?: string;
537
+ Value?: string | undefined;
538
538
  /**
539
539
  * <p>Specified whether the value is a secret.</p>
540
540
  * @public
541
541
  */
542
- IsValueSecret?: boolean;
542
+ IsValueSecret?: boolean | undefined;
543
543
  }
544
544
  /**
545
545
  * <p>Additional query string parameter for the connection. You can include up to 100 additional
@@ -552,17 +552,17 @@ export interface ConnectionQueryStringParameter {
552
552
  * <p>The key for a query string parameter.</p>
553
553
  * @public
554
554
  */
555
- Key?: string;
555
+ Key?: string | undefined;
556
556
  /**
557
557
  * <p>The value associated with the key for the query string parameter.</p>
558
558
  * @public
559
559
  */
560
- Value?: string;
560
+ Value?: string | undefined;
561
561
  /**
562
562
  * <p>Specifies whether the value is secret.</p>
563
563
  * @public
564
564
  */
565
- IsValueSecret?: boolean;
565
+ IsValueSecret?: boolean | undefined;
566
566
  }
567
567
  /**
568
568
  * <p>Contains additional parameters for the connection.</p>
@@ -573,17 +573,17 @@ export interface ConnectionHttpParameters {
573
573
  * <p>Contains additional header parameters for the connection.</p>
574
574
  * @public
575
575
  */
576
- HeaderParameters?: ConnectionHeaderParameter[];
576
+ HeaderParameters?: ConnectionHeaderParameter[] | undefined;
577
577
  /**
578
578
  * <p>Contains additional query string parameters for the connection.</p>
579
579
  * @public
580
580
  */
581
- QueryStringParameters?: ConnectionQueryStringParameter[];
581
+ QueryStringParameters?: ConnectionQueryStringParameter[] | undefined;
582
582
  /**
583
583
  * <p>Contains additional body string parameters for the connection.</p>
584
584
  * @public
585
585
  */
586
- BodyParameters?: ConnectionBodyParameter[];
586
+ BodyParameters?: ConnectionBodyParameter[] | undefined;
587
587
  }
588
588
  /**
589
589
  * <p>Contains the Basic authorization parameters to use for the connection.</p>
@@ -642,7 +642,7 @@ export interface CreateConnectionOAuthRequestParameters {
642
642
  * parameters to use for the connection.</p>
643
643
  * @public
644
644
  */
645
- OAuthHttpParameters?: ConnectionHttpParameters;
645
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
646
646
  }
647
647
  /**
648
648
  * <p>Contains the authorization parameters for the connection.</p>
@@ -654,19 +654,19 @@ export interface CreateConnectionAuthRequestParameters {
654
654
  * authorization parameters to use for the connection.</p>
655
655
  * @public
656
656
  */
657
- BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters;
657
+ BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters | undefined;
658
658
  /**
659
659
  * <p>A <code>CreateConnectionOAuthRequestParameters</code> object that contains the OAuth
660
660
  * authorization parameters to use for the connection.</p>
661
661
  * @public
662
662
  */
663
- OAuthParameters?: CreateConnectionOAuthRequestParameters;
663
+ OAuthParameters?: CreateConnectionOAuthRequestParameters | undefined;
664
664
  /**
665
665
  * <p>A <code>CreateConnectionApiKeyAuthRequestParameters</code> object that contains the API
666
666
  * key authorization parameters to use for the connection.</p>
667
667
  * @public
668
668
  */
669
- ApiKeyAuthParameters?: CreateConnectionApiKeyAuthRequestParameters;
669
+ ApiKeyAuthParameters?: CreateConnectionApiKeyAuthRequestParameters | undefined;
670
670
  /**
671
671
  * <p>A <code>ConnectionHttpParameters</code> object that contains the API key authorization
672
672
  * parameters to use for the connection. Note that if you include additional parameters for the
@@ -674,7 +674,7 @@ export interface CreateConnectionAuthRequestParameters {
674
674
  * added for the connection take precedence.</p>
675
675
  * @public
676
676
  */
677
- InvocationHttpParameters?: ConnectionHttpParameters;
677
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
678
678
  }
679
679
  /**
680
680
  * @public
@@ -689,7 +689,7 @@ export interface CreateConnectionRequest {
689
689
  * <p>A description for the connection to create.</p>
690
690
  * @public
691
691
  */
692
- Description?: string;
692
+ Description?: string | undefined;
693
693
  /**
694
694
  * <p>The type of authorization to use for the connection.</p>
695
695
  * <note>
@@ -730,22 +730,22 @@ export interface CreateConnectionResponse {
730
730
  * <p>The ARN of the connection that was created by the request.</p>
731
731
  * @public
732
732
  */
733
- ConnectionArn?: string;
733
+ ConnectionArn?: string | undefined;
734
734
  /**
735
735
  * <p>The state of the connection that was created by the request.</p>
736
736
  * @public
737
737
  */
738
- ConnectionState?: ConnectionState;
738
+ ConnectionState?: ConnectionState | undefined;
739
739
  /**
740
740
  * <p>A time stamp for the time that the connection was created.</p>
741
741
  * @public
742
742
  */
743
- CreationTime?: Date;
743
+ CreationTime?: Date | undefined;
744
744
  /**
745
745
  * <p>A time stamp for the time that the connection was last updated.</p>
746
746
  * @public
747
747
  */
748
- LastModifiedTime?: Date;
748
+ LastModifiedTime?: Date | undefined;
749
749
  }
750
750
  /**
751
751
  * <p>The event buses the endpoint is associated with.</p>
@@ -779,7 +779,7 @@ export interface ReplicationConfig {
779
779
  * <p>The state of event replication.</p>
780
780
  * @public
781
781
  */
782
- State?: ReplicationState;
782
+ State?: ReplicationState | undefined;
783
783
  }
784
784
  /**
785
785
  * <p>The primary Region of the endpoint.</p>
@@ -849,7 +849,7 @@ export interface CreateEndpointRequest {
849
849
  * <p>A description of the global endpoint.</p>
850
850
  * @public
851
851
  */
852
- Description?: string;
852
+ Description?: string | undefined;
853
853
  /**
854
854
  * <p>Configure the routing policy, including the health check and secondary Region..</p>
855
855
  * @public
@@ -861,7 +861,7 @@ export interface CreateEndpointRequest {
861
861
  * want event replication enabled, set the state to <code>DISABLED</code>.</p>
862
862
  * @public
863
863
  */
864
- ReplicationConfig?: ReplicationConfig;
864
+ ReplicationConfig?: ReplicationConfig | undefined;
865
865
  /**
866
866
  * <p>Define the event buses used. </p>
867
867
  * <important>
@@ -874,7 +874,7 @@ export interface CreateEndpointRequest {
874
874
  * <p>The ARN of the role used for replication.</p>
875
875
  * @public
876
876
  */
877
- RoleArn?: string;
877
+ RoleArn?: string | undefined;
878
878
  }
879
879
  /**
880
880
  * @public
@@ -901,37 +901,37 @@ export interface CreateEndpointResponse {
901
901
  * <p>The name of the endpoint that was created by this request.</p>
902
902
  * @public
903
903
  */
904
- Name?: string;
904
+ Name?: string | undefined;
905
905
  /**
906
906
  * <p>The ARN of the endpoint that was created by this request.</p>
907
907
  * @public
908
908
  */
909
- Arn?: string;
909
+ Arn?: string | undefined;
910
910
  /**
911
911
  * <p>The routing configuration defined by this request.</p>
912
912
  * @public
913
913
  */
914
- RoutingConfig?: RoutingConfig;
914
+ RoutingConfig?: RoutingConfig | undefined;
915
915
  /**
916
916
  * <p>Whether event replication was enabled or disabled by this request.</p>
917
917
  * @public
918
918
  */
919
- ReplicationConfig?: ReplicationConfig;
919
+ ReplicationConfig?: ReplicationConfig | undefined;
920
920
  /**
921
921
  * <p>The event buses used by this request.</p>
922
922
  * @public
923
923
  */
924
- EventBuses?: EndpointEventBus[];
924
+ EventBuses?: EndpointEventBus[] | undefined;
925
925
  /**
926
926
  * <p>The ARN of the role used by event replication for this request.</p>
927
927
  * @public
928
928
  */
929
- RoleArn?: string;
929
+ RoleArn?: string | undefined;
930
930
  /**
931
931
  * <p>The state of the endpoint that was created by this request.</p>
932
932
  * @public
933
933
  */
934
- State?: EndpointState;
934
+ State?: EndpointState | undefined;
935
935
  }
936
936
  /**
937
937
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
@@ -946,7 +946,7 @@ export interface DeadLetterConfig {
946
946
  * <p>The ARN of the SQS queue specified as the target for the dead-letter queue.</p>
947
947
  * @public
948
948
  */
949
- Arn?: string;
949
+ Arn?: string | undefined;
950
950
  }
951
951
  /**
952
952
  * <p>A key-value pair associated with an Amazon Web Services resource. In EventBridge,
@@ -986,12 +986,12 @@ export interface CreateEventBusRequest {
986
986
  * new event bus will be matched with.</p>
987
987
  * @public
988
988
  */
989
- EventSourceName?: string;
989
+ EventSourceName?: string | undefined;
990
990
  /**
991
991
  * <p>The event bus description.</p>
992
992
  * @public
993
993
  */
994
- Description?: string;
994
+ Description?: string | undefined;
995
995
  /**
996
996
  * <p>The identifier of the KMS
997
997
  * customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt events on this event bus. The identifier can be the key
@@ -1025,7 +1025,7 @@ export interface CreateEventBusRequest {
1025
1025
  * </note>
1026
1026
  * @public
1027
1027
  */
1028
- KmsKeyIdentifier?: string;
1028
+ KmsKeyIdentifier?: string | undefined;
1029
1029
  /**
1030
1030
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
1031
1031
  * dead-letter queue (DLQ).</p>
@@ -1034,12 +1034,12 @@ export interface CreateEventBusRequest {
1034
1034
  * Guide</i>.</p>
1035
1035
  * @public
1036
1036
  */
1037
- DeadLetterConfig?: DeadLetterConfig;
1037
+ DeadLetterConfig?: DeadLetterConfig | undefined;
1038
1038
  /**
1039
1039
  * <p>Tags to associate with the event bus.</p>
1040
1040
  * @public
1041
1041
  */
1042
- Tags?: Tag[];
1042
+ Tags?: Tag[] | undefined;
1043
1043
  }
1044
1044
  /**
1045
1045
  * @public
@@ -1049,19 +1049,19 @@ export interface CreateEventBusResponse {
1049
1049
  * <p>The ARN of the new event bus.</p>
1050
1050
  * @public
1051
1051
  */
1052
- EventBusArn?: string;
1052
+ EventBusArn?: string | undefined;
1053
1053
  /**
1054
1054
  * <p>The event bus description.</p>
1055
1055
  * @public
1056
1056
  */
1057
- Description?: string;
1057
+ Description?: string | undefined;
1058
1058
  /**
1059
1059
  * <p>The identifier of the KMS
1060
1060
  * customer managed key for EventBridge to use to encrypt events on this event bus, if one has been specified.</p>
1061
1061
  * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html">Data encryption in EventBridge</a> in the <i>Amazon EventBridge User Guide</i>.</p>
1062
1062
  * @public
1063
1063
  */
1064
- KmsKeyIdentifier?: string;
1064
+ KmsKeyIdentifier?: string | undefined;
1065
1065
  /**
1066
1066
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
1067
1067
  * dead-letter queue (DLQ).</p>
@@ -1070,7 +1070,7 @@ export interface CreateEventBusResponse {
1070
1070
  * Guide</i>.</p>
1071
1071
  * @public
1072
1072
  */
1073
- DeadLetterConfig?: DeadLetterConfig;
1073
+ DeadLetterConfig?: DeadLetterConfig | undefined;
1074
1074
  }
1075
1075
  /**
1076
1076
  * @public
@@ -1101,7 +1101,7 @@ export interface CreatePartnerEventSourceResponse {
1101
1101
  * <p>The ARN of the partner event source.</p>
1102
1102
  * @public
1103
1103
  */
1104
- EventSourceArn?: string;
1104
+ EventSourceArn?: string | undefined;
1105
1105
  }
1106
1106
  /**
1107
1107
  * @public
@@ -1131,27 +1131,27 @@ export interface DeauthorizeConnectionResponse {
1131
1131
  * <p>The ARN of the connection that authorization was removed from.</p>
1132
1132
  * @public
1133
1133
  */
1134
- ConnectionArn?: string;
1134
+ ConnectionArn?: string | undefined;
1135
1135
  /**
1136
1136
  * <p>The state of the connection.</p>
1137
1137
  * @public
1138
1138
  */
1139
- ConnectionState?: ConnectionState;
1139
+ ConnectionState?: ConnectionState | undefined;
1140
1140
  /**
1141
1141
  * <p>A time stamp for the time that the connection was created.</p>
1142
1142
  * @public
1143
1143
  */
1144
- CreationTime?: Date;
1144
+ CreationTime?: Date | undefined;
1145
1145
  /**
1146
1146
  * <p>A time stamp for the time that the connection was last updated.</p>
1147
1147
  * @public
1148
1148
  */
1149
- LastModifiedTime?: Date;
1149
+ LastModifiedTime?: Date | undefined;
1150
1150
  /**
1151
1151
  * <p>A time stamp for the time that the connection was last authorized.</p>
1152
1152
  * @public
1153
1153
  */
1154
- LastAuthorizedTime?: Date;
1154
+ LastAuthorizedTime?: Date | undefined;
1155
1155
  }
1156
1156
  /**
1157
1157
  * @public
@@ -1201,29 +1201,29 @@ export interface DeleteConnectionResponse {
1201
1201
  * <p>The ARN of the connection that was deleted.</p>
1202
1202
  * @public
1203
1203
  */
1204
- ConnectionArn?: string;
1204
+ ConnectionArn?: string | undefined;
1205
1205
  /**
1206
1206
  * <p>The state of the connection before it was deleted.</p>
1207
1207
  * @public
1208
1208
  */
1209
- ConnectionState?: ConnectionState;
1209
+ ConnectionState?: ConnectionState | undefined;
1210
1210
  /**
1211
1211
  * <p>A time stamp for the time that the connection was created.</p>
1212
1212
  * @public
1213
1213
  */
1214
- CreationTime?: Date;
1214
+ CreationTime?: Date | undefined;
1215
1215
  /**
1216
1216
  * <p>A time stamp for the time that the connection was last modified before it was
1217
1217
  * deleted.</p>
1218
1218
  * @public
1219
1219
  */
1220
- LastModifiedTime?: Date;
1220
+ LastModifiedTime?: Date | undefined;
1221
1221
  /**
1222
1222
  * <p>A time stamp for the time that the connection was last authorized before it wa
1223
1223
  * deleted.</p>
1224
1224
  * @public
1225
1225
  */
1226
- LastAuthorizedTime?: Date;
1226
+ LastAuthorizedTime?: Date | undefined;
1227
1227
  }
1228
1228
  /**
1229
1229
  * @public
@@ -1281,7 +1281,7 @@ export interface DeleteRuleRequest {
1281
1281
  * event bus is used.</p>
1282
1282
  * @public
1283
1283
  */
1284
- EventBusName?: string;
1284
+ EventBusName?: string | undefined;
1285
1285
  /**
1286
1286
  * <p>If this is a managed rule, created by an Amazon Web Services service on your behalf, you
1287
1287
  * must specify <code>Force</code> as <code>True</code> to delete the rule. This parameter is
@@ -1290,7 +1290,7 @@ export interface DeleteRuleRequest {
1290
1290
  * <code>ManagedBy</code> field of the response.</p>
1291
1291
  * @public
1292
1292
  */
1293
- Force?: boolean;
1293
+ Force?: boolean | undefined;
1294
1294
  }
1295
1295
  /**
1296
1296
  * <p>This rule was created by an Amazon Web Services service on behalf of your account. It is
@@ -1327,37 +1327,37 @@ export interface DescribeApiDestinationResponse {
1327
1327
  * <p>The ARN of the API destination retrieved.</p>
1328
1328
  * @public
1329
1329
  */
1330
- ApiDestinationArn?: string;
1330
+ ApiDestinationArn?: string | undefined;
1331
1331
  /**
1332
1332
  * <p>The name of the API destination retrieved.</p>
1333
1333
  * @public
1334
1334
  */
1335
- Name?: string;
1335
+ Name?: string | undefined;
1336
1336
  /**
1337
1337
  * <p>The description for the API destination retrieved.</p>
1338
1338
  * @public
1339
1339
  */
1340
- Description?: string;
1340
+ Description?: string | undefined;
1341
1341
  /**
1342
1342
  * <p>The state of the API destination retrieved.</p>
1343
1343
  * @public
1344
1344
  */
1345
- ApiDestinationState?: ApiDestinationState;
1345
+ ApiDestinationState?: ApiDestinationState | undefined;
1346
1346
  /**
1347
1347
  * <p>The ARN of the connection specified for the API destination retrieved.</p>
1348
1348
  * @public
1349
1349
  */
1350
- ConnectionArn?: string;
1350
+ ConnectionArn?: string | undefined;
1351
1351
  /**
1352
1352
  * <p>The URL to use to connect to the HTTP endpoint.</p>
1353
1353
  * @public
1354
1354
  */
1355
- InvocationEndpoint?: string;
1355
+ InvocationEndpoint?: string | undefined;
1356
1356
  /**
1357
1357
  * <p>The method to use to connect to the HTTP endpoint.</p>
1358
1358
  * @public
1359
1359
  */
1360
- HttpMethod?: ApiDestinationHttpMethod;
1360
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
1361
1361
  /**
1362
1362
  * <p>The maximum number of invocations per second to specified for the API destination. Note
1363
1363
  * that if you set the invocation rate maximum to a value lower the rate necessary to send all
@@ -1367,17 +1367,17 @@ export interface DescribeApiDestinationResponse {
1367
1367
  * 24 hours.</p>
1368
1368
  * @public
1369
1369
  */
1370
- InvocationRateLimitPerSecond?: number;
1370
+ InvocationRateLimitPerSecond?: number | undefined;
1371
1371
  /**
1372
1372
  * <p>A time stamp for the time that the API destination was created.</p>
1373
1373
  * @public
1374
1374
  */
1375
- CreationTime?: Date;
1375
+ CreationTime?: Date | undefined;
1376
1376
  /**
1377
1377
  * <p>A time stamp for the time that the API destination was last modified.</p>
1378
1378
  * @public
1379
1379
  */
1380
- LastModifiedTime?: Date;
1380
+ LastModifiedTime?: Date | undefined;
1381
1381
  }
1382
1382
  /**
1383
1383
  * @public
@@ -1397,57 +1397,57 @@ export interface DescribeArchiveResponse {
1397
1397
  * <p>The ARN of the archive.</p>
1398
1398
  * @public
1399
1399
  */
1400
- ArchiveArn?: string;
1400
+ ArchiveArn?: string | undefined;
1401
1401
  /**
1402
1402
  * <p>The name of the archive.</p>
1403
1403
  * @public
1404
1404
  */
1405
- ArchiveName?: string;
1405
+ ArchiveName?: string | undefined;
1406
1406
  /**
1407
1407
  * <p>The ARN of the event source associated with the archive.</p>
1408
1408
  * @public
1409
1409
  */
1410
- EventSourceArn?: string;
1410
+ EventSourceArn?: string | undefined;
1411
1411
  /**
1412
1412
  * <p>The description of the archive.</p>
1413
1413
  * @public
1414
1414
  */
1415
- Description?: string;
1415
+ Description?: string | undefined;
1416
1416
  /**
1417
1417
  * <p>The event pattern used to filter events sent to the archive.</p>
1418
1418
  * @public
1419
1419
  */
1420
- EventPattern?: string;
1420
+ EventPattern?: string | undefined;
1421
1421
  /**
1422
1422
  * <p>The state of the archive.</p>
1423
1423
  * @public
1424
1424
  */
1425
- State?: ArchiveState;
1425
+ State?: ArchiveState | undefined;
1426
1426
  /**
1427
1427
  * <p>The reason that the archive is in the state.</p>
1428
1428
  * @public
1429
1429
  */
1430
- StateReason?: string;
1430
+ StateReason?: string | undefined;
1431
1431
  /**
1432
1432
  * <p>The number of days to retain events for in the archive.</p>
1433
1433
  * @public
1434
1434
  */
1435
- RetentionDays?: number;
1435
+ RetentionDays?: number | undefined;
1436
1436
  /**
1437
1437
  * <p>The size of the archive in bytes.</p>
1438
1438
  * @public
1439
1439
  */
1440
- SizeBytes?: number;
1440
+ SizeBytes?: number | undefined;
1441
1441
  /**
1442
1442
  * <p>The number of events in the archive.</p>
1443
1443
  * @public
1444
1444
  */
1445
- EventCount?: number;
1445
+ EventCount?: number | undefined;
1446
1446
  /**
1447
1447
  * <p>The time at which the archive was created.</p>
1448
1448
  * @public
1449
1449
  */
1450
- CreationTime?: Date;
1450
+ CreationTime?: Date | undefined;
1451
1451
  }
1452
1452
  /**
1453
1453
  * @public
@@ -1470,7 +1470,7 @@ export interface ConnectionApiKeyAuthResponseParameters {
1470
1470
  * authorization.</p>
1471
1471
  * @public
1472
1472
  */
1473
- ApiKeyName?: string;
1473
+ ApiKeyName?: string | undefined;
1474
1474
  }
1475
1475
  /**
1476
1476
  * <p>Contains the authorization parameters for the connection if Basic is specified as the
@@ -1482,7 +1482,7 @@ export interface ConnectionBasicAuthResponseParameters {
1482
1482
  * <p>The user name to use for Basic authorization.</p>
1483
1483
  * @public
1484
1484
  */
1485
- Username?: string;
1485
+ Username?: string | undefined;
1486
1486
  }
1487
1487
  /**
1488
1488
  * <p>Contains the client response parameters for the connection when OAuth is specified as the
@@ -1494,7 +1494,7 @@ export interface ConnectionOAuthClientResponseParameters {
1494
1494
  * <p>The client ID associated with the response to the connection request.</p>
1495
1495
  * @public
1496
1496
  */
1497
- ClientID?: string;
1497
+ ClientID?: string | undefined;
1498
1498
  }
1499
1499
  /**
1500
1500
  * <p>Contains the response parameters when OAuth is specified as the authorization type.</p>
@@ -1506,22 +1506,22 @@ export interface ConnectionOAuthResponseParameters {
1506
1506
  * the client parameters returned when OAuth is specified as the authorization type.</p>
1507
1507
  * @public
1508
1508
  */
1509
- ClientParameters?: ConnectionOAuthClientResponseParameters;
1509
+ ClientParameters?: ConnectionOAuthClientResponseParameters | undefined;
1510
1510
  /**
1511
1511
  * <p>The URL to the HTTP endpoint that authorized the request.</p>
1512
1512
  * @public
1513
1513
  */
1514
- AuthorizationEndpoint?: string;
1514
+ AuthorizationEndpoint?: string | undefined;
1515
1515
  /**
1516
1516
  * <p>The method used to connect to the HTTP endpoint.</p>
1517
1517
  * @public
1518
1518
  */
1519
- HttpMethod?: ConnectionOAuthHttpMethod;
1519
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
1520
1520
  /**
1521
1521
  * <p>The additional HTTP parameters used for the OAuth authorization request.</p>
1522
1522
  * @public
1523
1523
  */
1524
- OAuthHttpParameters?: ConnectionHttpParameters;
1524
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
1525
1525
  }
1526
1526
  /**
1527
1527
  * <p>Contains the authorization parameters to use for the connection.</p>
@@ -1532,23 +1532,23 @@ export interface ConnectionAuthResponseParameters {
1532
1532
  * <p>The authorization parameters for Basic authorization.</p>
1533
1533
  * @public
1534
1534
  */
1535
- BasicAuthParameters?: ConnectionBasicAuthResponseParameters;
1535
+ BasicAuthParameters?: ConnectionBasicAuthResponseParameters | undefined;
1536
1536
  /**
1537
1537
  * <p>The OAuth parameters to use for authorization.</p>
1538
1538
  * @public
1539
1539
  */
1540
- OAuthParameters?: ConnectionOAuthResponseParameters;
1540
+ OAuthParameters?: ConnectionOAuthResponseParameters | undefined;
1541
1541
  /**
1542
1542
  * <p>The API Key parameters to use for authorization.</p>
1543
1543
  * @public
1544
1544
  */
1545
- ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters;
1545
+ ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters | undefined;
1546
1546
  /**
1547
1547
  * <p>Additional parameters for the connection that are passed through with every invocation to
1548
1548
  * the HTTP endpoint.</p>
1549
1549
  * @public
1550
1550
  */
1551
- InvocationHttpParameters?: ConnectionHttpParameters;
1551
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
1552
1552
  }
1553
1553
  /**
1554
1554
  * @public
@@ -1558,58 +1558,58 @@ export interface DescribeConnectionResponse {
1558
1558
  * <p>The ARN of the connection retrieved.</p>
1559
1559
  * @public
1560
1560
  */
1561
- ConnectionArn?: string;
1561
+ ConnectionArn?: string | undefined;
1562
1562
  /**
1563
1563
  * <p>The name of the connection retrieved.</p>
1564
1564
  * @public
1565
1565
  */
1566
- Name?: string;
1566
+ Name?: string | undefined;
1567
1567
  /**
1568
1568
  * <p>The description for the connection retrieved.</p>
1569
1569
  * @public
1570
1570
  */
1571
- Description?: string;
1571
+ Description?: string | undefined;
1572
1572
  /**
1573
1573
  * <p>The state of the connection retrieved.</p>
1574
1574
  * @public
1575
1575
  */
1576
- ConnectionState?: ConnectionState;
1576
+ ConnectionState?: ConnectionState | undefined;
1577
1577
  /**
1578
1578
  * <p>The reason that the connection is in the current connection state.</p>
1579
1579
  * @public
1580
1580
  */
1581
- StateReason?: string;
1581
+ StateReason?: string | undefined;
1582
1582
  /**
1583
1583
  * <p>The type of authorization specified for the connection.</p>
1584
1584
  * @public
1585
1585
  */
1586
- AuthorizationType?: ConnectionAuthorizationType;
1586
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
1587
1587
  /**
1588
1588
  * <p>The ARN of the secret created from the authorization parameters specified for the
1589
1589
  * connection.</p>
1590
1590
  * @public
1591
1591
  */
1592
- SecretArn?: string;
1592
+ SecretArn?: string | undefined;
1593
1593
  /**
1594
1594
  * <p>The parameters to use for authorization for the connection.</p>
1595
1595
  * @public
1596
1596
  */
1597
- AuthParameters?: ConnectionAuthResponseParameters;
1597
+ AuthParameters?: ConnectionAuthResponseParameters | undefined;
1598
1598
  /**
1599
1599
  * <p>A time stamp for the time that the connection was created.</p>
1600
1600
  * @public
1601
1601
  */
1602
- CreationTime?: Date;
1602
+ CreationTime?: Date | undefined;
1603
1603
  /**
1604
1604
  * <p>A time stamp for the time that the connection was last modified.</p>
1605
1605
  * @public
1606
1606
  */
1607
- LastModifiedTime?: Date;
1607
+ LastModifiedTime?: Date | undefined;
1608
1608
  /**
1609
1609
  * <p>A time stamp for the time that the connection was last authorized.</p>
1610
1610
  * @public
1611
1611
  */
1612
- LastAuthorizedTime?: Date;
1612
+ LastAuthorizedTime?: Date | undefined;
1613
1613
  }
1614
1614
  /**
1615
1615
  * @public
@@ -1626,7 +1626,7 @@ export interface DescribeEndpointRequest {
1626
1626
  * <code>"HomeRegion": "us-east-1"</code>.</p>
1627
1627
  * @public
1628
1628
  */
1629
- HomeRegion?: string;
1629
+ HomeRegion?: string | undefined;
1630
1630
  }
1631
1631
  /**
1632
1632
  * @public
@@ -1636,68 +1636,68 @@ export interface DescribeEndpointResponse {
1636
1636
  * <p>The name of the endpoint you asked for information about.</p>
1637
1637
  * @public
1638
1638
  */
1639
- Name?: string;
1639
+ Name?: string | undefined;
1640
1640
  /**
1641
1641
  * <p>The description of the endpoint you asked for information about.</p>
1642
1642
  * @public
1643
1643
  */
1644
- Description?: string;
1644
+ Description?: string | undefined;
1645
1645
  /**
1646
1646
  * <p>The ARN of the endpoint you asked for information about.</p>
1647
1647
  * @public
1648
1648
  */
1649
- Arn?: string;
1649
+ Arn?: string | undefined;
1650
1650
  /**
1651
1651
  * <p>The routing configuration of the endpoint you asked for information about.</p>
1652
1652
  * @public
1653
1653
  */
1654
- RoutingConfig?: RoutingConfig;
1654
+ RoutingConfig?: RoutingConfig | undefined;
1655
1655
  /**
1656
1656
  * <p>Whether replication is enabled or disabled for the endpoint you asked for information
1657
1657
  * about.</p>
1658
1658
  * @public
1659
1659
  */
1660
- ReplicationConfig?: ReplicationConfig;
1660
+ ReplicationConfig?: ReplicationConfig | undefined;
1661
1661
  /**
1662
1662
  * <p>The event buses being used by the endpoint you asked for information about.</p>
1663
1663
  * @public
1664
1664
  */
1665
- EventBuses?: EndpointEventBus[];
1665
+ EventBuses?: EndpointEventBus[] | undefined;
1666
1666
  /**
1667
1667
  * <p>The ARN of the role used by the endpoint you asked for information about.</p>
1668
1668
  * @public
1669
1669
  */
1670
- RoleArn?: string;
1670
+ RoleArn?: string | undefined;
1671
1671
  /**
1672
1672
  * <p>The ID of the endpoint you asked for information about.</p>
1673
1673
  * @public
1674
1674
  */
1675
- EndpointId?: string;
1675
+ EndpointId?: string | undefined;
1676
1676
  /**
1677
1677
  * <p>The URL of the endpoint you asked for information about.</p>
1678
1678
  * @public
1679
1679
  */
1680
- EndpointUrl?: string;
1680
+ EndpointUrl?: string | undefined;
1681
1681
  /**
1682
1682
  * <p>The current state of the endpoint you asked for information about.</p>
1683
1683
  * @public
1684
1684
  */
1685
- State?: EndpointState;
1685
+ State?: EndpointState | undefined;
1686
1686
  /**
1687
1687
  * <p>The reason the endpoint you asked for information about is in its current state.</p>
1688
1688
  * @public
1689
1689
  */
1690
- StateReason?: string;
1690
+ StateReason?: string | undefined;
1691
1691
  /**
1692
1692
  * <p>The time the endpoint you asked for information about was created.</p>
1693
1693
  * @public
1694
1694
  */
1695
- CreationTime?: Date;
1695
+ CreationTime?: Date | undefined;
1696
1696
  /**
1697
1697
  * <p>The last time the endpoint you asked for information about was modified.</p>
1698
1698
  * @public
1699
1699
  */
1700
- LastModifiedTime?: Date;
1700
+ LastModifiedTime?: Date | undefined;
1701
1701
  }
1702
1702
  /**
1703
1703
  * @public
@@ -1708,7 +1708,7 @@ export interface DescribeEventBusRequest {
1708
1708
  * bus is displayed.</p>
1709
1709
  * @public
1710
1710
  */
1711
- Name?: string;
1711
+ Name?: string | undefined;
1712
1712
  }
1713
1713
  /**
1714
1714
  * @public
@@ -1718,24 +1718,24 @@ export interface DescribeEventBusResponse {
1718
1718
  * <p>The name of the event bus. Currently, this is always <code>default</code>.</p>
1719
1719
  * @public
1720
1720
  */
1721
- Name?: string;
1721
+ Name?: string | undefined;
1722
1722
  /**
1723
1723
  * <p>The Amazon Resource Name (ARN) of the account permitted to write events to the current account.</p>
1724
1724
  * @public
1725
1725
  */
1726
- Arn?: string;
1726
+ Arn?: string | undefined;
1727
1727
  /**
1728
1728
  * <p>The event bus description.</p>
1729
1729
  * @public
1730
1730
  */
1731
- Description?: string;
1731
+ Description?: string | undefined;
1732
1732
  /**
1733
1733
  * <p>The identifier of the KMS
1734
1734
  * customer managed key for EventBridge to use to encrypt events on this event bus, if one has been specified.</p>
1735
1735
  * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html">Data encryption in EventBridge</a> in the <i>Amazon EventBridge User Guide</i>.</p>
1736
1736
  * @public
1737
1737
  */
1738
- KmsKeyIdentifier?: string;
1738
+ KmsKeyIdentifier?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
1741
1741
  * dead-letter queue (DLQ).</p>
@@ -1744,22 +1744,22 @@ export interface DescribeEventBusResponse {
1744
1744
  * Guide</i>.</p>
1745
1745
  * @public
1746
1746
  */
1747
- DeadLetterConfig?: DeadLetterConfig;
1747
+ DeadLetterConfig?: DeadLetterConfig | undefined;
1748
1748
  /**
1749
1749
  * <p>The policy that enables the external account to send events to your account.</p>
1750
1750
  * @public
1751
1751
  */
1752
- Policy?: string;
1752
+ Policy?: string | undefined;
1753
1753
  /**
1754
1754
  * <p>The time the event bus was created.</p>
1755
1755
  * @public
1756
1756
  */
1757
- CreationTime?: Date;
1757
+ CreationTime?: Date | undefined;
1758
1758
  /**
1759
1759
  * <p>The time the event bus was last modified.</p>
1760
1760
  * @public
1761
1761
  */
1762
- LastModifiedTime?: Date;
1762
+ LastModifiedTime?: Date | undefined;
1763
1763
  }
1764
1764
  /**
1765
1765
  * @public
@@ -1792,28 +1792,28 @@ export interface DescribeEventSourceResponse {
1792
1792
  * <p>The ARN of the partner event source.</p>
1793
1793
  * @public
1794
1794
  */
1795
- Arn?: string;
1795
+ Arn?: string | undefined;
1796
1796
  /**
1797
1797
  * <p>The name of the SaaS partner that created the event source.</p>
1798
1798
  * @public
1799
1799
  */
1800
- CreatedBy?: string;
1800
+ CreatedBy?: string | undefined;
1801
1801
  /**
1802
1802
  * <p>The date and time that the event source was created.</p>
1803
1803
  * @public
1804
1804
  */
1805
- CreationTime?: Date;
1805
+ CreationTime?: Date | undefined;
1806
1806
  /**
1807
1807
  * <p>The date and time that the event source will expire if you do not create a matching event
1808
1808
  * bus.</p>
1809
1809
  * @public
1810
1810
  */
1811
- ExpirationTime?: Date;
1811
+ ExpirationTime?: Date | undefined;
1812
1812
  /**
1813
1813
  * <p>The name of the partner event source.</p>
1814
1814
  * @public
1815
1815
  */
1816
- Name?: string;
1816
+ Name?: string | undefined;
1817
1817
  /**
1818
1818
  * <p>The state of the event source. If it is ACTIVE, you have already created a matching event
1819
1819
  * bus for this event source, and that event bus is active. If it is PENDING, either you haven't
@@ -1821,7 +1821,7 @@ export interface DescribeEventSourceResponse {
1821
1821
  * created a matching event bus, but the event source has since been deleted.</p>
1822
1822
  * @public
1823
1823
  */
1824
- State?: EventSourceState;
1824
+ State?: EventSourceState | undefined;
1825
1825
  }
1826
1826
  /**
1827
1827
  * @public
@@ -1841,12 +1841,12 @@ export interface DescribePartnerEventSourceResponse {
1841
1841
  * <p>The ARN of the event source.</p>
1842
1842
  * @public
1843
1843
  */
1844
- Arn?: string;
1844
+ Arn?: string | undefined;
1845
1845
  /**
1846
1846
  * <p>The name of the event source.</p>
1847
1847
  * @public
1848
1848
  */
1849
- Name?: string;
1849
+ Name?: string | undefined;
1850
1850
  }
1851
1851
  /**
1852
1852
  * @public
@@ -1873,7 +1873,7 @@ export interface ReplayDestination {
1873
1873
  * <p>A list of ARNs for rules to replay events to.</p>
1874
1874
  * @public
1875
1875
  */
1876
- FilterArns?: string[];
1876
+ FilterArns?: string[] | undefined;
1877
1877
  }
1878
1878
  /**
1879
1879
  * @public
@@ -1883,62 +1883,62 @@ export interface DescribeReplayResponse {
1883
1883
  * <p>The name of the replay.</p>
1884
1884
  * @public
1885
1885
  */
1886
- ReplayName?: string;
1886
+ ReplayName?: string | undefined;
1887
1887
  /**
1888
1888
  * <p>The ARN of the replay.</p>
1889
1889
  * @public
1890
1890
  */
1891
- ReplayArn?: string;
1891
+ ReplayArn?: string | undefined;
1892
1892
  /**
1893
1893
  * <p>The description of the replay.</p>
1894
1894
  * @public
1895
1895
  */
1896
- Description?: string;
1896
+ Description?: string | undefined;
1897
1897
  /**
1898
1898
  * <p>The current state of the replay.</p>
1899
1899
  * @public
1900
1900
  */
1901
- State?: ReplayState;
1901
+ State?: ReplayState | undefined;
1902
1902
  /**
1903
1903
  * <p>The reason that the replay is in the current state.</p>
1904
1904
  * @public
1905
1905
  */
1906
- StateReason?: string;
1906
+ StateReason?: string | undefined;
1907
1907
  /**
1908
1908
  * <p>The ARN of the archive events were replayed from.</p>
1909
1909
  * @public
1910
1910
  */
1911
- EventSourceArn?: string;
1911
+ EventSourceArn?: string | undefined;
1912
1912
  /**
1913
1913
  * <p>A <code>ReplayDestination</code> object that contains details about the replay.</p>
1914
1914
  * @public
1915
1915
  */
1916
- Destination?: ReplayDestination;
1916
+ Destination?: ReplayDestination | undefined;
1917
1917
  /**
1918
1918
  * <p>The time stamp of the first event that was last replayed from the archive.</p>
1919
1919
  * @public
1920
1920
  */
1921
- EventStartTime?: Date;
1921
+ EventStartTime?: Date | undefined;
1922
1922
  /**
1923
1923
  * <p>The time stamp for the last event that was replayed from the archive.</p>
1924
1924
  * @public
1925
1925
  */
1926
- EventEndTime?: Date;
1926
+ EventEndTime?: Date | undefined;
1927
1927
  /**
1928
1928
  * <p>The time that the event was last replayed.</p>
1929
1929
  * @public
1930
1930
  */
1931
- EventLastReplayedTime?: Date;
1931
+ EventLastReplayedTime?: Date | undefined;
1932
1932
  /**
1933
1933
  * <p>A time stamp for the time that the replay started.</p>
1934
1934
  * @public
1935
1935
  */
1936
- ReplayStartTime?: Date;
1936
+ ReplayStartTime?: Date | undefined;
1937
1937
  /**
1938
1938
  * <p>A time stamp for the time that the replay stopped.</p>
1939
1939
  * @public
1940
1940
  */
1941
- ReplayEndTime?: Date;
1941
+ ReplayEndTime?: Date | undefined;
1942
1942
  }
1943
1943
  /**
1944
1944
  * @public
@@ -1954,7 +1954,7 @@ export interface DescribeRuleRequest {
1954
1954
  * event bus is used.</p>
1955
1955
  * @public
1956
1956
  */
1957
- EventBusName?: string;
1957
+ EventBusName?: string | undefined;
1958
1958
  }
1959
1959
  /**
1960
1960
  * @public
@@ -1977,12 +1977,12 @@ export interface DescribeRuleResponse {
1977
1977
  * <p>The name of the rule.</p>
1978
1978
  * @public
1979
1979
  */
1980
- Name?: string;
1980
+ Name?: string | undefined;
1981
1981
  /**
1982
1982
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
1983
1983
  * @public
1984
1984
  */
1985
- Arn?: string;
1985
+ Arn?: string | undefined;
1986
1986
  /**
1987
1987
  * <p>The event pattern. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html">Events and Event
1988
1988
  * Patterns</a> in the <i>
@@ -1990,39 +1990,39 @@ export interface DescribeRuleResponse {
1990
1990
  * </i>.</p>
1991
1991
  * @public
1992
1992
  */
1993
- EventPattern?: string;
1993
+ EventPattern?: string | undefined;
1994
1994
  /**
1995
1995
  * <p>The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5 minutes)".</p>
1996
1996
  * @public
1997
1997
  */
1998
- ScheduleExpression?: string;
1998
+ ScheduleExpression?: string | undefined;
1999
1999
  /**
2000
2000
  * <p>Specifies whether the rule is enabled or disabled.</p>
2001
2001
  * @public
2002
2002
  */
2003
- State?: RuleState;
2003
+ State?: RuleState | undefined;
2004
2004
  /**
2005
2005
  * <p>The description of the rule.</p>
2006
2006
  * @public
2007
2007
  */
2008
- Description?: string;
2008
+ Description?: string | undefined;
2009
2009
  /**
2010
2010
  * <p>The Amazon Resource Name (ARN) of the IAM role associated with the rule.</p>
2011
2011
  * @public
2012
2012
  */
2013
- RoleArn?: string;
2013
+ RoleArn?: string | undefined;
2014
2014
  /**
2015
2015
  * <p>If this is a managed rule, created by an Amazon Web Services service on your behalf, this
2016
2016
  * field displays the principal name of the Amazon Web Services service that created the
2017
2017
  * rule.</p>
2018
2018
  * @public
2019
2019
  */
2020
- ManagedBy?: string;
2020
+ ManagedBy?: string | undefined;
2021
2021
  /**
2022
2022
  * <p>The name of the event bus associated with the rule.</p>
2023
2023
  * @public
2024
2024
  */
2025
- EventBusName?: string;
2025
+ EventBusName?: string | undefined;
2026
2026
  /**
2027
2027
  * <p>The account ID of the user that created the rule. If you use <code>PutRule</code> to put a
2028
2028
  * rule on an event bus in another account, the other account is the owner of the rule, and the
@@ -2031,7 +2031,7 @@ export interface DescribeRuleResponse {
2031
2031
  * account.</p>
2032
2032
  * @public
2033
2033
  */
2034
- CreatedBy?: string;
2034
+ CreatedBy?: string | undefined;
2035
2035
  }
2036
2036
  /**
2037
2037
  * @public
@@ -2047,7 +2047,7 @@ export interface DisableRuleRequest {
2047
2047
  * event bus is used.</p>
2048
2048
  * @public
2049
2049
  */
2050
- EventBusName?: string;
2050
+ EventBusName?: string | undefined;
2051
2051
  }
2052
2052
  /**
2053
2053
  * @public
@@ -2063,7 +2063,7 @@ export interface EnableRuleRequest {
2063
2063
  * event bus is used.</p>
2064
2064
  * @public
2065
2065
  */
2066
- EventBusName?: string;
2066
+ EventBusName?: string | undefined;
2067
2067
  }
2068
2068
  /**
2069
2069
  * @public
@@ -2074,22 +2074,22 @@ export interface ListApiDestinationsRequest {
2074
2074
  * with the prefix are returned.</p>
2075
2075
  * @public
2076
2076
  */
2077
- NamePrefix?: string;
2077
+ NamePrefix?: string | undefined;
2078
2078
  /**
2079
2079
  * <p>The ARN of the connection specified for the API destination.</p>
2080
2080
  * @public
2081
2081
  */
2082
- ConnectionArn?: string;
2082
+ ConnectionArn?: string | undefined;
2083
2083
  /**
2084
2084
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2085
2085
  * @public
2086
2086
  */
2087
- NextToken?: string;
2087
+ NextToken?: string | undefined;
2088
2088
  /**
2089
2089
  * <p>The maximum number of API destinations to include in the response.</p>
2090
2090
  * @public
2091
2091
  */
2092
- Limit?: number;
2092
+ Limit?: number | undefined;
2093
2093
  }
2094
2094
  /**
2095
2095
  * @public
@@ -2100,12 +2100,12 @@ export interface ListApiDestinationsResponse {
2100
2100
  * destination.</p>
2101
2101
  * @public
2102
2102
  */
2103
- ApiDestinations?: ApiDestination[];
2103
+ ApiDestinations?: ApiDestination[] | undefined;
2104
2104
  /**
2105
2105
  * <p>A token you can use in a subsequent request to retrieve the next set of results.</p>
2106
2106
  * @public
2107
2107
  */
2108
- NextToken?: string;
2108
+ NextToken?: string | undefined;
2109
2109
  }
2110
2110
  /**
2111
2111
  * @public
@@ -2116,27 +2116,27 @@ export interface ListArchivesRequest {
2116
2116
  * prefix are returned.</p>
2117
2117
  * @public
2118
2118
  */
2119
- NamePrefix?: string;
2119
+ NamePrefix?: string | undefined;
2120
2120
  /**
2121
2121
  * <p>The ARN of the event source associated with the archive.</p>
2122
2122
  * @public
2123
2123
  */
2124
- EventSourceArn?: string;
2124
+ EventSourceArn?: string | undefined;
2125
2125
  /**
2126
2126
  * <p>The state of the archive.</p>
2127
2127
  * @public
2128
2128
  */
2129
- State?: ArchiveState;
2129
+ State?: ArchiveState | undefined;
2130
2130
  /**
2131
2131
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2132
2132
  * @public
2133
2133
  */
2134
- NextToken?: string;
2134
+ NextToken?: string | undefined;
2135
2135
  /**
2136
2136
  * <p>The maximum number of results to return.</p>
2137
2137
  * @public
2138
2138
  */
2139
- Limit?: number;
2139
+ Limit?: number | undefined;
2140
2140
  }
2141
2141
  /**
2142
2142
  * @public
@@ -2146,12 +2146,12 @@ export interface ListArchivesResponse {
2146
2146
  * <p>An array of <code>Archive</code> objects that include details about an archive.</p>
2147
2147
  * @public
2148
2148
  */
2149
- Archives?: Archive[];
2149
+ Archives?: Archive[] | undefined;
2150
2150
  /**
2151
2151
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2152
2152
  * @public
2153
2153
  */
2154
- NextToken?: string;
2154
+ NextToken?: string | undefined;
2155
2155
  }
2156
2156
  /**
2157
2157
  * @public
@@ -2162,22 +2162,22 @@ export interface ListConnectionsRequest {
2162
2162
  * the prefix are returned.</p>
2163
2163
  * @public
2164
2164
  */
2165
- NamePrefix?: string;
2165
+ NamePrefix?: string | undefined;
2166
2166
  /**
2167
2167
  * <p>The state of the connection.</p>
2168
2168
  * @public
2169
2169
  */
2170
- ConnectionState?: ConnectionState;
2170
+ ConnectionState?: ConnectionState | undefined;
2171
2171
  /**
2172
2172
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2173
2173
  * @public
2174
2174
  */
2175
- NextToken?: string;
2175
+ NextToken?: string | undefined;
2176
2176
  /**
2177
2177
  * <p>The maximum number of connections to return.</p>
2178
2178
  * @public
2179
2179
  */
2180
- Limit?: number;
2180
+ Limit?: number | undefined;
2181
2181
  }
2182
2182
  /**
2183
2183
  * <p>Contains information about a connection.</p>
@@ -2188,22 +2188,22 @@ export interface Connection {
2188
2188
  * <p>The ARN of the connection.</p>
2189
2189
  * @public
2190
2190
  */
2191
- ConnectionArn?: string;
2191
+ ConnectionArn?: string | undefined;
2192
2192
  /**
2193
2193
  * <p>The name of the connection.</p>
2194
2194
  * @public
2195
2195
  */
2196
- Name?: string;
2196
+ Name?: string | undefined;
2197
2197
  /**
2198
2198
  * <p>The state of the connection.</p>
2199
2199
  * @public
2200
2200
  */
2201
- ConnectionState?: ConnectionState;
2201
+ ConnectionState?: ConnectionState | undefined;
2202
2202
  /**
2203
2203
  * <p>The reason that the connection is in the connection state.</p>
2204
2204
  * @public
2205
2205
  */
2206
- StateReason?: string;
2206
+ StateReason?: string | undefined;
2207
2207
  /**
2208
2208
  * <p>The authorization type specified for the connection.</p>
2209
2209
  * <note>
@@ -2211,22 +2211,22 @@ export interface Connection {
2211
2211
  * </note>
2212
2212
  * @public
2213
2213
  */
2214
- AuthorizationType?: ConnectionAuthorizationType;
2214
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
2215
2215
  /**
2216
2216
  * <p>A time stamp for the time that the connection was created.</p>
2217
2217
  * @public
2218
2218
  */
2219
- CreationTime?: Date;
2219
+ CreationTime?: Date | undefined;
2220
2220
  /**
2221
2221
  * <p>A time stamp for the time that the connection was last modified.</p>
2222
2222
  * @public
2223
2223
  */
2224
- LastModifiedTime?: Date;
2224
+ LastModifiedTime?: Date | undefined;
2225
2225
  /**
2226
2226
  * <p>A time stamp for the time that the connection was last authorized.</p>
2227
2227
  * @public
2228
2228
  */
2229
- LastAuthorizedTime?: Date;
2229
+ LastAuthorizedTime?: Date | undefined;
2230
2230
  }
2231
2231
  /**
2232
2232
  * @public
@@ -2236,12 +2236,12 @@ export interface ListConnectionsResponse {
2236
2236
  * <p>An array of connections objects that include details about the connections.</p>
2237
2237
  * @public
2238
2238
  */
2239
- Connections?: Connection[];
2239
+ Connections?: Connection[] | undefined;
2240
2240
  /**
2241
2241
  * <p>A token you can use in a subsequent request to retrieve the next set of results.</p>
2242
2242
  * @public
2243
2243
  */
2244
- NextToken?: string;
2244
+ NextToken?: string | undefined;
2245
2245
  }
2246
2246
  /**
2247
2247
  * @public
@@ -2253,13 +2253,13 @@ export interface ListEndpointsRequest {
2253
2253
  * name.</p>
2254
2254
  * @public
2255
2255
  */
2256
- NamePrefix?: string;
2256
+ NamePrefix?: string | undefined;
2257
2257
  /**
2258
2258
  * <p>The primary Region of the endpoints associated with this account. For example
2259
2259
  * <code>"HomeRegion": "us-east-1"</code>.</p>
2260
2260
  * @public
2261
2261
  */
2262
- HomeRegion?: string;
2262
+ HomeRegion?: string | undefined;
2263
2263
  /**
2264
2264
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
2265
2265
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again using
@@ -2268,12 +2268,12 @@ export interface ListEndpointsRequest {
2268
2268
  * 400 InvalidToken error.</p>
2269
2269
  * @public
2270
2270
  */
2271
- NextToken?: string;
2271
+ NextToken?: string | undefined;
2272
2272
  /**
2273
2273
  * <p>The maximum number of results returned by the call.</p>
2274
2274
  * @public
2275
2275
  */
2276
- MaxResults?: number;
2276
+ MaxResults?: number | undefined;
2277
2277
  }
2278
2278
  /**
2279
2279
  * <p>A global endpoint used to improve your application's availability by making it
@@ -2289,22 +2289,22 @@ export interface Endpoint {
2289
2289
  * <p>The name of the endpoint.</p>
2290
2290
  * @public
2291
2291
  */
2292
- Name?: string;
2292
+ Name?: string | undefined;
2293
2293
  /**
2294
2294
  * <p>A description for the endpoint.</p>
2295
2295
  * @public
2296
2296
  */
2297
- Description?: string;
2297
+ Description?: string | undefined;
2298
2298
  /**
2299
2299
  * <p>The ARN of the endpoint.</p>
2300
2300
  * @public
2301
2301
  */
2302
- Arn?: string;
2302
+ Arn?: string | undefined;
2303
2303
  /**
2304
2304
  * <p>The routing configuration of the endpoint.</p>
2305
2305
  * @public
2306
2306
  */
2307
- RoutingConfig?: RoutingConfig;
2307
+ RoutingConfig?: RoutingConfig | undefined;
2308
2308
  /**
2309
2309
  * <p>Whether event replication was enabled or disabled for this endpoint. The default state is
2310
2310
  * <code>ENABLED</code> which means you must supply a <code>RoleArn</code>. If you don't have a
@@ -2312,49 +2312,49 @@ export interface Endpoint {
2312
2312
  * <code>DISABLED</code>.</p>
2313
2313
  * @public
2314
2314
  */
2315
- ReplicationConfig?: ReplicationConfig;
2315
+ ReplicationConfig?: ReplicationConfig | undefined;
2316
2316
  /**
2317
2317
  * <p>The event buses being used by the endpoint.</p>
2318
2318
  * @public
2319
2319
  */
2320
- EventBuses?: EndpointEventBus[];
2320
+ EventBuses?: EndpointEventBus[] | undefined;
2321
2321
  /**
2322
2322
  * <p>The ARN of the role used by event replication for the endpoint.</p>
2323
2323
  * @public
2324
2324
  */
2325
- RoleArn?: string;
2325
+ RoleArn?: string | undefined;
2326
2326
  /**
2327
2327
  * <p>The URL subdomain of the endpoint. For example, if the URL for Endpoint is
2328
2328
  * https://abcde.veo.endpoints.event.amazonaws.com, then the EndpointId is
2329
2329
  * <code>abcde.veo</code>.</p>
2330
2330
  * @public
2331
2331
  */
2332
- EndpointId?: string;
2332
+ EndpointId?: string | undefined;
2333
2333
  /**
2334
2334
  * <p>The URL of the endpoint.</p>
2335
2335
  * @public
2336
2336
  */
2337
- EndpointUrl?: string;
2337
+ EndpointUrl?: string | undefined;
2338
2338
  /**
2339
2339
  * <p>The current state of the endpoint.</p>
2340
2340
  * @public
2341
2341
  */
2342
- State?: EndpointState;
2342
+ State?: EndpointState | undefined;
2343
2343
  /**
2344
2344
  * <p>The reason the endpoint is in its current state.</p>
2345
2345
  * @public
2346
2346
  */
2347
- StateReason?: string;
2347
+ StateReason?: string | undefined;
2348
2348
  /**
2349
2349
  * <p>The time the endpoint was created.</p>
2350
2350
  * @public
2351
2351
  */
2352
- CreationTime?: Date;
2352
+ CreationTime?: Date | undefined;
2353
2353
  /**
2354
2354
  * <p>The last time the endpoint was modified.</p>
2355
2355
  * @public
2356
2356
  */
2357
- LastModifiedTime?: Date;
2357
+ LastModifiedTime?: Date | undefined;
2358
2358
  }
2359
2359
  /**
2360
2360
  * @public
@@ -2364,7 +2364,7 @@ export interface ListEndpointsResponse {
2364
2364
  * <p>The endpoints returned by the call.</p>
2365
2365
  * @public
2366
2366
  */
2367
- Endpoints?: Endpoint[];
2367
+ Endpoints?: Endpoint[] | undefined;
2368
2368
  /**
2369
2369
  * <p>If <code>nextToken</code> is returned, there are more results available. The value of
2370
2370
  * <code>nextToken</code> is a unique pagination token for each page. Make the call again using
@@ -2373,7 +2373,7 @@ export interface ListEndpointsResponse {
2373
2373
  * 400 InvalidToken error.</p>
2374
2374
  * @public
2375
2375
  */
2376
- NextToken?: string;
2376
+ NextToken?: string | undefined;
2377
2377
  }
2378
2378
  /**
2379
2379
  * @public
@@ -2384,19 +2384,19 @@ export interface ListEventBusesRequest {
2384
2384
  * the specified prefix.</p>
2385
2385
  * @public
2386
2386
  */
2387
- NamePrefix?: string;
2387
+ NamePrefix?: string | undefined;
2388
2388
  /**
2389
2389
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2390
2390
  * @public
2391
2391
  */
2392
- NextToken?: string;
2392
+ NextToken?: string | undefined;
2393
2393
  /**
2394
2394
  * <p>Specifying this limits the number of results returned by this operation. The operation
2395
2395
  * also returns a NextToken which you can use in a subsequent operation to retrieve the next set
2396
2396
  * of results.</p>
2397
2397
  * @public
2398
2398
  */
2399
- Limit?: number;
2399
+ Limit?: number | undefined;
2400
2400
  }
2401
2401
  /**
2402
2402
  * <p>An event bus receives events from a source, uses rules to evaluate them, applies any
@@ -2412,33 +2412,33 @@ export interface EventBus {
2412
2412
  * <p>The name of the event bus.</p>
2413
2413
  * @public
2414
2414
  */
2415
- Name?: string;
2415
+ Name?: string | undefined;
2416
2416
  /**
2417
2417
  * <p>The ARN of the event bus.</p>
2418
2418
  * @public
2419
2419
  */
2420
- Arn?: string;
2420
+ Arn?: string | undefined;
2421
2421
  /**
2422
2422
  * <p>The event bus description.</p>
2423
2423
  * @public
2424
2424
  */
2425
- Description?: string;
2425
+ Description?: string | undefined;
2426
2426
  /**
2427
2427
  * <p>The permissions policy of the event bus, describing which other Amazon Web Services
2428
2428
  * accounts can write events to this event bus.</p>
2429
2429
  * @public
2430
2430
  */
2431
- Policy?: string;
2431
+ Policy?: string | undefined;
2432
2432
  /**
2433
2433
  * <p>The time the event bus was created.</p>
2434
2434
  * @public
2435
2435
  */
2436
- CreationTime?: Date;
2436
+ CreationTime?: Date | undefined;
2437
2437
  /**
2438
2438
  * <p>The time the event bus was last modified.</p>
2439
2439
  * @public
2440
2440
  */
2441
- LastModifiedTime?: Date;
2441
+ LastModifiedTime?: Date | undefined;
2442
2442
  }
2443
2443
  /**
2444
2444
  * @public
@@ -2448,12 +2448,12 @@ export interface ListEventBusesResponse {
2448
2448
  * <p>This list of event buses.</p>
2449
2449
  * @public
2450
2450
  */
2451
- EventBuses?: EventBus[];
2451
+ EventBuses?: EventBus[] | undefined;
2452
2452
  /**
2453
2453
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2454
2454
  * @public
2455
2455
  */
2456
- NextToken?: string;
2456
+ NextToken?: string | undefined;
2457
2457
  }
2458
2458
  /**
2459
2459
  * @public
@@ -2464,19 +2464,19 @@ export interface ListEventSourcesRequest {
2464
2464
  * start with the specified prefix.</p>
2465
2465
  * @public
2466
2466
  */
2467
- NamePrefix?: string;
2467
+ NamePrefix?: string | undefined;
2468
2468
  /**
2469
2469
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2470
2470
  * @public
2471
2471
  */
2472
- NextToken?: string;
2472
+ NextToken?: string | undefined;
2473
2473
  /**
2474
2474
  * <p>Specifying this limits the number of results returned by this operation. The operation
2475
2475
  * also returns a NextToken which you can use in a subsequent operation to retrieve the next set
2476
2476
  * of results.</p>
2477
2477
  * @public
2478
2478
  */
2479
- Limit?: number;
2479
+ Limit?: number | undefined;
2480
2480
  }
2481
2481
  /**
2482
2482
  * <p>A partner event source is created by an SaaS partner. If a customer creates a partner
@@ -2489,28 +2489,28 @@ export interface EventSource {
2489
2489
  * <p>The ARN of the event source.</p>
2490
2490
  * @public
2491
2491
  */
2492
- Arn?: string;
2492
+ Arn?: string | undefined;
2493
2493
  /**
2494
2494
  * <p>The name of the partner that created the event source.</p>
2495
2495
  * @public
2496
2496
  */
2497
- CreatedBy?: string;
2497
+ CreatedBy?: string | undefined;
2498
2498
  /**
2499
2499
  * <p>The date and time the event source was created.</p>
2500
2500
  * @public
2501
2501
  */
2502
- CreationTime?: Date;
2502
+ CreationTime?: Date | undefined;
2503
2503
  /**
2504
2504
  * <p>The date and time that the event source will expire, if the Amazon Web Services account
2505
2505
  * doesn't create a matching event bus for it.</p>
2506
2506
  * @public
2507
2507
  */
2508
- ExpirationTime?: Date;
2508
+ ExpirationTime?: Date | undefined;
2509
2509
  /**
2510
2510
  * <p>The name of the event source.</p>
2511
2511
  * @public
2512
2512
  */
2513
- Name?: string;
2513
+ Name?: string | undefined;
2514
2514
  /**
2515
2515
  * <p>The state of the event source. If it is ACTIVE, you have already created a matching event
2516
2516
  * bus for this event source, and that event bus is active. If it is PENDING, either you haven't
@@ -2518,7 +2518,7 @@ export interface EventSource {
2518
2518
  * created a matching event bus, but the event source has since been deleted.</p>
2519
2519
  * @public
2520
2520
  */
2521
- State?: EventSourceState;
2521
+ State?: EventSourceState | undefined;
2522
2522
  }
2523
2523
  /**
2524
2524
  * @public
@@ -2528,12 +2528,12 @@ export interface ListEventSourcesResponse {
2528
2528
  * <p>The list of event sources.</p>
2529
2529
  * @public
2530
2530
  */
2531
- EventSources?: EventSource[];
2531
+ EventSources?: EventSource[] | undefined;
2532
2532
  /**
2533
2533
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2534
2534
  * @public
2535
2535
  */
2536
- NextToken?: string;
2536
+ NextToken?: string | undefined;
2537
2537
  }
2538
2538
  /**
2539
2539
  * @public
@@ -2549,14 +2549,14 @@ export interface ListPartnerEventSourceAccountsRequest {
2549
2549
  * next set of results.</p>
2550
2550
  * @public
2551
2551
  */
2552
- NextToken?: string;
2552
+ NextToken?: string | undefined;
2553
2553
  /**
2554
2554
  * <p>Specifying this limits the number of results returned by this operation. The operation
2555
2555
  * also returns a NextToken which you can use in a subsequent operation to retrieve the next set
2556
2556
  * of results.</p>
2557
2557
  * @public
2558
2558
  */
2559
- Limit?: number;
2559
+ Limit?: number | undefined;
2560
2560
  }
2561
2561
  /**
2562
2562
  * <p>The Amazon Web Services account that a partner event source has been offered to.</p>
@@ -2567,18 +2567,18 @@ export interface PartnerEventSourceAccount {
2567
2567
  * <p>The Amazon Web Services account ID that the partner event source was offered to.</p>
2568
2568
  * @public
2569
2569
  */
2570
- Account?: string;
2570
+ Account?: string | undefined;
2571
2571
  /**
2572
2572
  * <p>The date and time the event source was created.</p>
2573
2573
  * @public
2574
2574
  */
2575
- CreationTime?: Date;
2575
+ CreationTime?: Date | undefined;
2576
2576
  /**
2577
2577
  * <p>The date and time that the event source will expire, if the Amazon Web Services account
2578
2578
  * doesn't create a matching event bus for it.</p>
2579
2579
  * @public
2580
2580
  */
2581
- ExpirationTime?: Date;
2581
+ ExpirationTime?: Date | undefined;
2582
2582
  /**
2583
2583
  * <p>The state of the event source. If it is ACTIVE, you have already created a matching event
2584
2584
  * bus for this event source, and that event bus is active. If it is PENDING, either you haven't
@@ -2586,7 +2586,7 @@ export interface PartnerEventSourceAccount {
2586
2586
  * created a matching event bus, but the event source has since been deleted.</p>
2587
2587
  * @public
2588
2588
  */
2589
- State?: EventSourceState;
2589
+ State?: EventSourceState | undefined;
2590
2590
  }
2591
2591
  /**
2592
2592
  * @public
@@ -2596,12 +2596,12 @@ export interface ListPartnerEventSourceAccountsResponse {
2596
2596
  * <p>The list of partner event sources returned by the operation.</p>
2597
2597
  * @public
2598
2598
  */
2599
- PartnerEventSourceAccounts?: PartnerEventSourceAccount[];
2599
+ PartnerEventSourceAccounts?: PartnerEventSourceAccount[] | undefined;
2600
2600
  /**
2601
2601
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2602
2602
  * @public
2603
2603
  */
2604
- NextToken?: string;
2604
+ NextToken?: string | undefined;
2605
2605
  }
2606
2606
  /**
2607
2607
  * @public
@@ -2618,14 +2618,14 @@ export interface ListPartnerEventSourcesRequest {
2618
2618
  * next set of results.</p>
2619
2619
  * @public
2620
2620
  */
2621
- NextToken?: string;
2621
+ NextToken?: string | undefined;
2622
2622
  /**
2623
2623
  * <p>pecifying this limits the number of results returned by this operation. The operation also
2624
2624
  * returns a NextToken which you can use in a subsequent operation to retrieve the next set of
2625
2625
  * results.</p>
2626
2626
  * @public
2627
2627
  */
2628
- Limit?: number;
2628
+ Limit?: number | undefined;
2629
2629
  }
2630
2630
  /**
2631
2631
  * <p>A partner event source is created by an SaaS partner. If a customer creates a partner
@@ -2638,12 +2638,12 @@ export interface PartnerEventSource {
2638
2638
  * <p>The ARN of the partner event source.</p>
2639
2639
  * @public
2640
2640
  */
2641
- Arn?: string;
2641
+ Arn?: string | undefined;
2642
2642
  /**
2643
2643
  * <p>The name of the partner event source.</p>
2644
2644
  * @public
2645
2645
  */
2646
- Name?: string;
2646
+ Name?: string | undefined;
2647
2647
  }
2648
2648
  /**
2649
2649
  * @public
@@ -2653,12 +2653,12 @@ export interface ListPartnerEventSourcesResponse {
2653
2653
  * <p>The list of partner event sources returned by the operation.</p>
2654
2654
  * @public
2655
2655
  */
2656
- PartnerEventSources?: PartnerEventSource[];
2656
+ PartnerEventSources?: PartnerEventSource[] | undefined;
2657
2657
  /**
2658
2658
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2659
2659
  * @public
2660
2660
  */
2661
- NextToken?: string;
2661
+ NextToken?: string | undefined;
2662
2662
  }
2663
2663
  /**
2664
2664
  * @public
@@ -2669,27 +2669,27 @@ export interface ListReplaysRequest {
2669
2669
  * are returned.</p>
2670
2670
  * @public
2671
2671
  */
2672
- NamePrefix?: string;
2672
+ NamePrefix?: string | undefined;
2673
2673
  /**
2674
2674
  * <p>The state of the replay.</p>
2675
2675
  * @public
2676
2676
  */
2677
- State?: ReplayState;
2677
+ State?: ReplayState | undefined;
2678
2678
  /**
2679
2679
  * <p>The ARN of the archive from which the events are replayed.</p>
2680
2680
  * @public
2681
2681
  */
2682
- EventSourceArn?: string;
2682
+ EventSourceArn?: string | undefined;
2683
2683
  /**
2684
2684
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2685
2685
  * @public
2686
2686
  */
2687
- NextToken?: string;
2687
+ NextToken?: string | undefined;
2688
2688
  /**
2689
2689
  * <p>The maximum number of replays to retrieve.</p>
2690
2690
  * @public
2691
2691
  */
2692
- Limit?: number;
2692
+ Limit?: number | undefined;
2693
2693
  }
2694
2694
  /**
2695
2695
  * <p>A <code>Replay</code> object that contains details about a replay.</p>
@@ -2700,49 +2700,49 @@ export interface Replay {
2700
2700
  * <p>The name of the replay.</p>
2701
2701
  * @public
2702
2702
  */
2703
- ReplayName?: string;
2703
+ ReplayName?: string | undefined;
2704
2704
  /**
2705
2705
  * <p>The ARN of the archive to replay event from.</p>
2706
2706
  * @public
2707
2707
  */
2708
- EventSourceArn?: string;
2708
+ EventSourceArn?: string | undefined;
2709
2709
  /**
2710
2710
  * <p>The current state of the replay.</p>
2711
2711
  * @public
2712
2712
  */
2713
- State?: ReplayState;
2713
+ State?: ReplayState | undefined;
2714
2714
  /**
2715
2715
  * <p>A description of why the replay is in the current state.</p>
2716
2716
  * @public
2717
2717
  */
2718
- StateReason?: string;
2718
+ StateReason?: string | undefined;
2719
2719
  /**
2720
2720
  * <p>A time stamp for the time to start replaying events. This is determined by the time in the
2721
2721
  * event as described in <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEventsRequestEntry.html#eventbridge-Type-PutEventsRequestEntry-Time">Time</a>.</p>
2722
2722
  * @public
2723
2723
  */
2724
- EventStartTime?: Date;
2724
+ EventStartTime?: Date | undefined;
2725
2725
  /**
2726
2726
  * <p>A time stamp for the time to start replaying events. Any event with a creation time prior
2727
2727
  * to the <code>EventEndTime</code> specified is replayed.</p>
2728
2728
  * @public
2729
2729
  */
2730
- EventEndTime?: Date;
2730
+ EventEndTime?: Date | undefined;
2731
2731
  /**
2732
2732
  * <p>A time stamp for the time that the last event was replayed.</p>
2733
2733
  * @public
2734
2734
  */
2735
- EventLastReplayedTime?: Date;
2735
+ EventLastReplayedTime?: Date | undefined;
2736
2736
  /**
2737
2737
  * <p>A time stamp for the time that the replay started.</p>
2738
2738
  * @public
2739
2739
  */
2740
- ReplayStartTime?: Date;
2740
+ ReplayStartTime?: Date | undefined;
2741
2741
  /**
2742
2742
  * <p>A time stamp for the time that the replay completed.</p>
2743
2743
  * @public
2744
2744
  */
2745
- ReplayEndTime?: Date;
2745
+ ReplayEndTime?: Date | undefined;
2746
2746
  }
2747
2747
  /**
2748
2748
  * @public
@@ -2752,12 +2752,12 @@ export interface ListReplaysResponse {
2752
2752
  * <p>An array of <code>Replay</code> objects that contain information about the replay.</p>
2753
2753
  * @public
2754
2754
  */
2755
- Replays?: Replay[];
2755
+ Replays?: Replay[] | undefined;
2756
2756
  /**
2757
2757
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2758
2758
  * @public
2759
2759
  */
2760
- NextToken?: string;
2760
+ NextToken?: string | undefined;
2761
2761
  }
2762
2762
  /**
2763
2763
  * @public
@@ -2773,17 +2773,17 @@ export interface ListRuleNamesByTargetRequest {
2773
2773
  * bus is used.</p>
2774
2774
  * @public
2775
2775
  */
2776
- EventBusName?: string;
2776
+ EventBusName?: string | undefined;
2777
2777
  /**
2778
2778
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2779
2779
  * @public
2780
2780
  */
2781
- NextToken?: string;
2781
+ NextToken?: string | undefined;
2782
2782
  /**
2783
2783
  * <p>The maximum number of results to return.</p>
2784
2784
  * @public
2785
2785
  */
2786
- Limit?: number;
2786
+ Limit?: number | undefined;
2787
2787
  }
2788
2788
  /**
2789
2789
  * @public
@@ -2793,13 +2793,13 @@ export interface ListRuleNamesByTargetResponse {
2793
2793
  * <p>The names of the rules that can invoke the given target.</p>
2794
2794
  * @public
2795
2795
  */
2796
- RuleNames?: string[];
2796
+ RuleNames?: string[] | undefined;
2797
2797
  /**
2798
2798
  * <p>Indicates whether there are additional results to retrieve. If there are no more results,
2799
2799
  * the value is null.</p>
2800
2800
  * @public
2801
2801
  */
2802
- NextToken?: string;
2802
+ NextToken?: string | undefined;
2803
2803
  }
2804
2804
  /**
2805
2805
  * @public
@@ -2809,23 +2809,23 @@ export interface ListRulesRequest {
2809
2809
  * <p>The prefix matching the rule name.</p>
2810
2810
  * @public
2811
2811
  */
2812
- NamePrefix?: string;
2812
+ NamePrefix?: string | undefined;
2813
2813
  /**
2814
2814
  * <p>The name or ARN of the event bus to list the rules for. If you omit this, the default
2815
2815
  * event bus is used.</p>
2816
2816
  * @public
2817
2817
  */
2818
- EventBusName?: string;
2818
+ EventBusName?: string | undefined;
2819
2819
  /**
2820
2820
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2821
2821
  * @public
2822
2822
  */
2823
- NextToken?: string;
2823
+ NextToken?: string | undefined;
2824
2824
  /**
2825
2825
  * <p>The maximum number of results to return.</p>
2826
2826
  * @public
2827
2827
  */
2828
- Limit?: number;
2828
+ Limit?: number | undefined;
2829
2829
  }
2830
2830
  /**
2831
2831
  * <p>Contains information about a rule in Amazon EventBridge.</p>
@@ -2836,12 +2836,12 @@ export interface Rule {
2836
2836
  * <p>The name of the rule.</p>
2837
2837
  * @public
2838
2838
  */
2839
- Name?: string;
2839
+ Name?: string | undefined;
2840
2840
  /**
2841
2841
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
2842
2842
  * @public
2843
2843
  */
2844
- Arn?: string;
2844
+ Arn?: string | undefined;
2845
2845
  /**
2846
2846
  * <p>The event pattern of the rule. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eventbridge-and-event-patterns.html">Events and Event
2847
2847
  * Patterns</a> in the <i>
@@ -2849,7 +2849,7 @@ export interface Rule {
2849
2849
  * </i>.</p>
2850
2850
  * @public
2851
2851
  */
2852
- EventPattern?: string;
2852
+ EventPattern?: string | undefined;
2853
2853
  /**
2854
2854
  * <p>The state of the rule.</p>
2855
2855
  * <p>Valid values include:</p>
@@ -2881,19 +2881,19 @@ export interface Rule {
2881
2881
  * </ul>
2882
2882
  * @public
2883
2883
  */
2884
- State?: RuleState;
2884
+ State?: RuleState | undefined;
2885
2885
  /**
2886
2886
  * <p>The description of the rule.</p>
2887
2887
  * @public
2888
2888
  */
2889
- Description?: string;
2889
+ Description?: string | undefined;
2890
2890
  /**
2891
2891
  * <p>The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5 minutes)". For more
2892
2892
  * information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-create-rule-schedule.html">Creating an Amazon EventBridge rule
2893
2893
  * that runs on a schedule</a>.</p>
2894
2894
  * @public
2895
2895
  */
2896
- ScheduleExpression?: string;
2896
+ ScheduleExpression?: string | undefined;
2897
2897
  /**
2898
2898
  * <p>The Amazon Resource Name (ARN) of the role that is used for target invocation.</p>
2899
2899
  * <p>If you're setting an event bus in another account as the target and that account granted
@@ -2902,19 +2902,19 @@ export interface Rule {
2902
2902
  * structure, instead of here in this parameter.</p>
2903
2903
  * @public
2904
2904
  */
2905
- RoleArn?: string;
2905
+ RoleArn?: string | undefined;
2906
2906
  /**
2907
2907
  * <p>If the rule was created on behalf of your account by an Amazon Web Services service, this
2908
2908
  * field displays the principal name of the service that created the rule.</p>
2909
2909
  * @public
2910
2910
  */
2911
- ManagedBy?: string;
2911
+ ManagedBy?: string | undefined;
2912
2912
  /**
2913
2913
  * <p>The name or ARN of the event bus associated with the rule. If you omit this, the default
2914
2914
  * event bus is used.</p>
2915
2915
  * @public
2916
2916
  */
2917
- EventBusName?: string;
2917
+ EventBusName?: string | undefined;
2918
2918
  }
2919
2919
  /**
2920
2920
  * @public
@@ -2924,13 +2924,13 @@ export interface ListRulesResponse {
2924
2924
  * <p>The rules that match the specified criteria.</p>
2925
2925
  * @public
2926
2926
  */
2927
- Rules?: Rule[];
2927
+ Rules?: Rule[] | undefined;
2928
2928
  /**
2929
2929
  * <p>Indicates whether there are additional results to retrieve. If there are no more results,
2930
2930
  * the value is null.</p>
2931
2931
  * @public
2932
2932
  */
2933
- NextToken?: string;
2933
+ NextToken?: string | undefined;
2934
2934
  }
2935
2935
  /**
2936
2936
  * @public
@@ -2950,7 +2950,7 @@ export interface ListTagsForResourceResponse {
2950
2950
  * <p>The list of tag keys and values associated with the resource you specified</p>
2951
2951
  * @public
2952
2952
  */
2953
- Tags?: Tag[];
2953
+ Tags?: Tag[] | undefined;
2954
2954
  }
2955
2955
  /**
2956
2956
  * @public
@@ -2966,17 +2966,17 @@ export interface ListTargetsByRuleRequest {
2966
2966
  * event bus is used.</p>
2967
2967
  * @public
2968
2968
  */
2969
- EventBusName?: string;
2969
+ EventBusName?: string | undefined;
2970
2970
  /**
2971
2971
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2972
2972
  * @public
2973
2973
  */
2974
- NextToken?: string;
2974
+ NextToken?: string | undefined;
2975
2975
  /**
2976
2976
  * <p>The maximum number of results to return.</p>
2977
2977
  * @public
2978
2978
  */
2979
- Limit?: number;
2979
+ Limit?: number | undefined;
2980
2980
  }
2981
2981
  /**
2982
2982
  * <p>The array properties for the submitted job, such as the size of the array. The array size
@@ -2990,7 +2990,7 @@ export interface BatchArrayProperties {
2990
2990
  * and 10,000.</p>
2991
2991
  * @public
2992
2992
  */
2993
- Size?: number;
2993
+ Size?: number | undefined;
2994
2994
  }
2995
2995
  /**
2996
2996
  * <p>The retry strategy to use for failed jobs, if the target is an Batch job.
@@ -3003,7 +3003,7 @@ export interface BatchRetryStrategy {
3003
3003
  * <p>The number of times to attempt to retry, if the job fails. Valid values are 1–10.</p>
3004
3004
  * @public
3005
3005
  */
3006
- Attempts?: number;
3006
+ Attempts?: number | undefined;
3007
3007
  }
3008
3008
  /**
3009
3009
  * <p>The custom parameters to be used when the target is an Batch job.</p>
@@ -3027,7 +3027,7 @@ export interface BatchParameters {
3027
3027
  * job. This parameter is used only if the target is an Batch job.</p>
3028
3028
  * @public
3029
3029
  */
3030
- ArrayProperties?: BatchArrayProperties;
3030
+ ArrayProperties?: BatchArrayProperties | undefined;
3031
3031
  /**
3032
3032
  * <p>The retry strategy to use for failed jobs, if the target is an Batch job.
3033
3033
  * The retry strategy is the number of times to retry the failed job execution. Valid values are
@@ -3035,7 +3035,7 @@ export interface BatchParameters {
3035
3035
  * job definition.</p>
3036
3036
  * @public
3037
3037
  */
3038
- RetryStrategy?: BatchRetryStrategy;
3038
+ RetryStrategy?: BatchRetryStrategy | undefined;
3039
3039
  }
3040
3040
  /**
3041
3041
  * <p>The details of a capacity provider strategy. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_CapacityProviderStrategyItem.html">CapacityProviderStrategyItem</a> in the Amazon ECS API Reference.</p>
@@ -3053,14 +3053,14 @@ export interface CapacityProviderStrategyItem {
3053
3053
  * after the base value, if defined, is satisfied.</p>
3054
3054
  * @public
3055
3055
  */
3056
- weight?: number;
3056
+ weight?: number | undefined;
3057
3057
  /**
3058
3058
  * <p>The base value designates how many tasks, at a minimum, to run on the specified capacity
3059
3059
  * provider. Only one capacity provider in a capacity provider strategy can have a base defined.
3060
3060
  * If no value is specified, the default value of 0 is used. </p>
3061
3061
  * @public
3062
3062
  */
3063
- base?: number;
3063
+ base?: number | undefined;
3064
3064
  }
3065
3065
  /**
3066
3066
  * @public
@@ -3094,14 +3094,14 @@ export interface AwsVpcConfiguration {
3094
3094
  * security group, the default security group for the VPC is used.</p>
3095
3095
  * @public
3096
3096
  */
3097
- SecurityGroups?: string[];
3097
+ SecurityGroups?: string[] | undefined;
3098
3098
  /**
3099
3099
  * <p>Specifies whether the task's elastic network interface receives a public IP address. You
3100
3100
  * can specify <code>ENABLED</code> only when <code>LaunchType</code> in
3101
3101
  * <code>EcsParameters</code> is set to <code>FARGATE</code>.</p>
3102
3102
  * @public
3103
3103
  */
3104
- AssignPublicIp?: AssignPublicIp;
3104
+ AssignPublicIp?: AssignPublicIp | undefined;
3105
3105
  }
3106
3106
  /**
3107
3107
  * <p>This structure specifies the network configuration for an ECS task.</p>
@@ -3114,7 +3114,7 @@ export interface NetworkConfiguration {
3114
3114
  * use the <code>awsvpc</code> network mode.</p>
3115
3115
  * @public
3116
3116
  */
3117
- awsvpcConfiguration?: AwsVpcConfiguration;
3117
+ awsvpcConfiguration?: AwsVpcConfiguration | undefined;
3118
3118
  }
3119
3119
  /**
3120
3120
  * @public
@@ -3139,13 +3139,13 @@ export interface PlacementConstraint {
3139
3139
  * a group of valid candidates. </p>
3140
3140
  * @public
3141
3141
  */
3142
- type?: PlacementConstraintType;
3142
+ type?: PlacementConstraintType | undefined;
3143
3143
  /**
3144
3144
  * <p>A cluster query language expression to apply to the constraint. You cannot specify an
3145
3145
  * expression if the constraint type is <code>distinctInstance</code>. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/cluster-query-language.html">Cluster Query Language</a> in the Amazon Elastic Container Service Developer Guide. </p>
3146
3146
  * @public
3147
3147
  */
3148
- expression?: string;
3148
+ expression?: string | undefined;
3149
3149
  }
3150
3150
  /**
3151
3151
  * @public
@@ -3175,7 +3175,7 @@ export interface PlacementStrategy {
3175
3175
  * the least amount of remaining memory (but still enough to run the task). </p>
3176
3176
  * @public
3177
3177
  */
3178
- type?: PlacementStrategyType;
3178
+ type?: PlacementStrategyType | undefined;
3179
3179
  /**
3180
3180
  * <p>The field to apply the placement strategy against. For the spread placement strategy,
3181
3181
  * valid values are instanceId (or host, which has the same effect), or any platform or custom
@@ -3184,7 +3184,7 @@ export interface PlacementStrategy {
3184
3184
  * strategy, this field is not used. </p>
3185
3185
  * @public
3186
3186
  */
3187
- field?: string;
3187
+ field?: string | undefined;
3188
3188
  }
3189
3189
  /**
3190
3190
  * @public
@@ -3212,7 +3212,7 @@ export interface EcsParameters {
3212
3212
  * 1.</p>
3213
3213
  * @public
3214
3214
  */
3215
- TaskCount?: number;
3215
+ TaskCount?: number | undefined;
3216
3216
  /**
3217
3217
  * <p>Specifies the launch type on which your task is running. The launch type that you specify
3218
3218
  * here must match one of the launch type (compatibilities) of the target task. The
@@ -3221,7 +3221,7 @@ export interface EcsParameters {
3221
3221
  * Guide</i>.</p>
3222
3222
  * @public
3223
3223
  */
3224
- LaunchType?: LaunchType;
3224
+ LaunchType?: LaunchType | undefined;
3225
3225
  /**
3226
3226
  * <p>Use this structure if the Amazon ECS task uses the <code>awsvpc</code> network
3227
3227
  * mode. This structure specifies the VPC subnets and security groups associated with the task,
@@ -3232,7 +3232,7 @@ export interface EcsParameters {
3232
3232
  * <code>awsvpc</code> network mode, the task fails.</p>
3233
3233
  * @public
3234
3234
  */
3235
- NetworkConfiguration?: NetworkConfiguration;
3235
+ NetworkConfiguration?: NetworkConfiguration | undefined;
3236
3236
  /**
3237
3237
  * <p>Specifies the platform version for the task. Specify only the numeric portion of the
3238
3238
  * platform version, such as <code>1.1.0</code>.</p>
@@ -3242,12 +3242,12 @@ export interface EcsParameters {
3242
3242
  * Guide</i>.</p>
3243
3243
  * @public
3244
3244
  */
3245
- PlatformVersion?: string;
3245
+ PlatformVersion?: string | undefined;
3246
3246
  /**
3247
3247
  * <p>Specifies an ECS task group for the task. The maximum length is 255 characters.</p>
3248
3248
  * @public
3249
3249
  */
3250
- Group?: string;
3250
+ Group?: string | undefined;
3251
3251
  /**
3252
3252
  * <p>The capacity provider strategy to use for the task.</p>
3253
3253
  * <p>If a <code>capacityProviderStrategy</code> is specified, the <code>launchType</code>
@@ -3255,52 +3255,52 @@ export interface EcsParameters {
3255
3255
  * specified, the <code>defaultCapacityProviderStrategy</code> for the cluster is used. </p>
3256
3256
  * @public
3257
3257
  */
3258
- CapacityProviderStrategy?: CapacityProviderStrategyItem[];
3258
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
3259
3259
  /**
3260
3260
  * <p>Specifies whether to enable Amazon ECS managed tags for the task. For more
3261
3261
  * information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html">Tagging Your Amazon ECS
3262
3262
  * Resources</a> in the Amazon Elastic Container Service Developer Guide. </p>
3263
3263
  * @public
3264
3264
  */
3265
- EnableECSManagedTags?: boolean;
3265
+ EnableECSManagedTags?: boolean | undefined;
3266
3266
  /**
3267
3267
  * <p>Whether or not to enable the execute command functionality for the containers in this
3268
3268
  * task. If true, this enables execute command functionality on all containers in the
3269
3269
  * task.</p>
3270
3270
  * @public
3271
3271
  */
3272
- EnableExecuteCommand?: boolean;
3272
+ EnableExecuteCommand?: boolean | undefined;
3273
3273
  /**
3274
3274
  * <p>An array of placement constraint objects to use for the task. You can specify up to 10
3275
3275
  * constraints per task (including constraints in the task definition and those specified at
3276
3276
  * runtime).</p>
3277
3277
  * @public
3278
3278
  */
3279
- PlacementConstraints?: PlacementConstraint[];
3279
+ PlacementConstraints?: PlacementConstraint[] | undefined;
3280
3280
  /**
3281
3281
  * <p>The placement strategy objects to use for the task. You can specify a maximum of five
3282
3282
  * strategy rules per task. </p>
3283
3283
  * @public
3284
3284
  */
3285
- PlacementStrategy?: PlacementStrategy[];
3285
+ PlacementStrategy?: PlacementStrategy[] | undefined;
3286
3286
  /**
3287
3287
  * <p>Specifies whether to propagate the tags from the task definition to the task. If no value
3288
3288
  * is specified, the tags are not propagated. Tags can only be propagated to the task during task
3289
3289
  * creation. To add tags to a task after task creation, use the TagResource API action. </p>
3290
3290
  * @public
3291
3291
  */
3292
- PropagateTags?: PropagateTags;
3292
+ PropagateTags?: PropagateTags | undefined;
3293
3293
  /**
3294
3294
  * <p>The reference ID to use for the task.</p>
3295
3295
  * @public
3296
3296
  */
3297
- ReferenceId?: string;
3297
+ ReferenceId?: string | undefined;
3298
3298
  /**
3299
3299
  * <p>The metadata that you apply to the task to help you categorize and organize them. Each tag
3300
3300
  * consists of a key and an optional value, both of which you define. To learn more, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/APIReference/API_RunTask.html#ECS-RunTask-request-tags">RunTask</a> in the Amazon ECS API Reference.</p>
3301
3301
  * @public
3302
3302
  */
3303
- Tags?: Tag[];
3303
+ Tags?: Tag[] | undefined;
3304
3304
  }
3305
3305
  /**
3306
3306
  * <p>These are custom parameter to be used when the target is an API Gateway APIs or
@@ -3314,18 +3314,18 @@ export interface HttpParameters {
3314
3314
  * <p>The path parameter values to be used to populate API Gateway API or EventBridge ApiDestination path wildcards ("*").</p>
3315
3315
  * @public
3316
3316
  */
3317
- PathParameterValues?: string[];
3317
+ PathParameterValues?: string[] | undefined;
3318
3318
  /**
3319
3319
  * <p>The headers that need to be sent as part of request invoking the API Gateway API or
3320
3320
  * EventBridge ApiDestination.</p>
3321
3321
  * @public
3322
3322
  */
3323
- HeaderParameters?: Record<string, string>;
3323
+ HeaderParameters?: Record<string, string> | undefined;
3324
3324
  /**
3325
3325
  * <p>The query string keys/values that need to be sent as part of request invoking the API Gateway API or EventBridge ApiDestination.</p>
3326
3326
  * @public
3327
3327
  */
3328
- QueryStringParameters?: Record<string, string>;
3328
+ QueryStringParameters?: Record<string, string> | undefined;
3329
3329
  }
3330
3330
  /**
3331
3331
  * <p>Contains the parameters needed for you to provide custom input to a target based on one or
@@ -3344,7 +3344,7 @@ export interface InputTransformer {
3344
3344
  * <p>The keys cannot start with "Amazon Web Services." </p>
3345
3345
  * @public
3346
3346
  */
3347
- InputPathsMap?: Record<string, string>;
3347
+ InputPathsMap?: Record<string, string> | undefined;
3348
3348
  /**
3349
3349
  * <p>Input template where you specify placeholders that will be filled with the values of the
3350
3350
  * keys from <code>InputPathsMap</code> to customize the data sent to the target. Enclose each
@@ -3443,7 +3443,7 @@ export interface RedshiftDataParameters {
3443
3443
  * authenticating using Amazon Web Services Secrets Manager.</p>
3444
3444
  * @public
3445
3445
  */
3446
- SecretManagerArn?: string;
3446
+ SecretManagerArn?: string | undefined;
3447
3447
  /**
3448
3448
  * <p>The name of the database. Required when authenticating using temporary credentials.</p>
3449
3449
  * @public
@@ -3453,24 +3453,24 @@ export interface RedshiftDataParameters {
3453
3453
  * <p>The database user name. Required when authenticating using temporary credentials.</p>
3454
3454
  * @public
3455
3455
  */
3456
- DbUser?: string;
3456
+ DbUser?: string | undefined;
3457
3457
  /**
3458
3458
  * <p>The SQL statement text to run.</p>
3459
3459
  * @public
3460
3460
  */
3461
- Sql?: string;
3461
+ Sql?: string | undefined;
3462
3462
  /**
3463
3463
  * <p>The name of the SQL statement. You can name the SQL statement when you create it to
3464
3464
  * identify the query.</p>
3465
3465
  * @public
3466
3466
  */
3467
- StatementName?: string;
3467
+ StatementName?: string | undefined;
3468
3468
  /**
3469
3469
  * <p>Indicates whether to send an event back to EventBridge after the SQL statement
3470
3470
  * runs.</p>
3471
3471
  * @public
3472
3472
  */
3473
- WithEvent?: boolean;
3473
+ WithEvent?: boolean | undefined;
3474
3474
  /**
3475
3475
  * <p>One or more SQL statements to run. The SQL statements are run as a single transaction.
3476
3476
  * They run serially in the order of the array. Subsequent SQL statements don't start until the
@@ -3478,7 +3478,7 @@ export interface RedshiftDataParameters {
3478
3478
  * run as one transaction, all work is rolled back.</p>
3479
3479
  * @public
3480
3480
  */
3481
- Sqls?: string[];
3481
+ Sqls?: string[] | undefined;
3482
3482
  }
3483
3483
  /**
3484
3484
  * <p>A <code>RetryPolicy</code> object that includes information about the retry policy
@@ -3492,12 +3492,12 @@ export interface RetryPolicy {
3492
3492
  * <code>MaximumEventAgeInSeconds</code> is met.</p>
3493
3493
  * @public
3494
3494
  */
3495
- MaximumRetryAttempts?: number;
3495
+ MaximumRetryAttempts?: number | undefined;
3496
3496
  /**
3497
3497
  * <p>The maximum amount of time, in seconds, to continue to make retry attempts.</p>
3498
3498
  * @public
3499
3499
  */
3500
- MaximumEventAgeInSeconds?: number;
3500
+ MaximumEventAgeInSeconds?: number | undefined;
3501
3501
  }
3502
3502
  /**
3503
3503
  * <p>Information about the EC2 instances that are to be sent the command, specified as
@@ -3565,7 +3565,7 @@ export interface SageMakerPipelineParameters {
3565
3565
  * execution.</p>
3566
3566
  * @public
3567
3567
  */
3568
- PipelineParameterList?: SageMakerPipelineParameter[];
3568
+ PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
3569
3569
  }
3570
3570
  /**
3571
3571
  * <p>This structure includes the custom parameter to be used when the target is an SQS FIFO
@@ -3577,7 +3577,7 @@ export interface SqsParameters {
3577
3577
  * <p>The FIFO message group ID to use as the target.</p>
3578
3578
  * @public
3579
3579
  */
3580
- MessageGroupId?: string;
3580
+ MessageGroupId?: string | undefined;
3581
3581
  }
3582
3582
  /**
3583
3583
  * <p>Targets are the resources to be invoked when a rule is triggered. For a complete list of
@@ -3606,40 +3606,40 @@ export interface Target {
3606
3606
  * one rule triggers multiple targets, you can use a different IAM role for each target.</p>
3607
3607
  * @public
3608
3608
  */
3609
- RoleArn?: string;
3609
+ RoleArn?: string | undefined;
3610
3610
  /**
3611
3611
  * <p>Valid JSON text passed to the target. In this case, nothing from the event itself is
3612
3612
  * passed to the target. For more information, see <a href="http://www.rfc-editor.org/rfc/rfc7159.txt">The JavaScript Object Notation (JSON) Data
3613
3613
  * Interchange Format</a>.</p>
3614
3614
  * @public
3615
3615
  */
3616
- Input?: string;
3616
+ Input?: string | undefined;
3617
3617
  /**
3618
3618
  * <p>The value of the JSONPath that is used for extracting part of the matched event when
3619
3619
  * passing it to the target. You may use JSON dot notation or bracket notation. For more
3620
3620
  * information about JSON paths, see <a href="http://goessner.net/articles/JsonPath/">JSONPath</a>.</p>
3621
3621
  * @public
3622
3622
  */
3623
- InputPath?: string;
3623
+ InputPath?: string | undefined;
3624
3624
  /**
3625
3625
  * <p>Settings to enable you to provide custom input to a target based on certain event data.
3626
3626
  * You can extract one or more key-value pairs from the event and then use that data to send
3627
3627
  * customized input to the target.</p>
3628
3628
  * @public
3629
3629
  */
3630
- InputTransformer?: InputTransformer;
3630
+ InputTransformer?: InputTransformer | undefined;
3631
3631
  /**
3632
3632
  * <p>The custom parameter you can use to control the shard assignment, when the target is a
3633
3633
  * Kinesis data stream. If you do not include this parameter, the default is to use the
3634
3634
  * <code>eventId</code> as the partition key.</p>
3635
3635
  * @public
3636
3636
  */
3637
- KinesisParameters?: KinesisParameters;
3637
+ KinesisParameters?: KinesisParameters | undefined;
3638
3638
  /**
3639
3639
  * <p>Parameters used when you are using the rule to invoke Amazon EC2 Run Command.</p>
3640
3640
  * @public
3641
3641
  */
3642
- RunCommandParameters?: RunCommandParameters;
3642
+ RunCommandParameters?: RunCommandParameters | undefined;
3643
3643
  /**
3644
3644
  * <p>Contains the Amazon ECS task definition and task count to be used, if the event target is
3645
3645
  * an Amazon ECS task. For more information about Amazon ECS tasks, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html">Task
@@ -3647,21 +3647,21 @@ export interface Target {
3647
3647
  * Guide</i>.</p>
3648
3648
  * @public
3649
3649
  */
3650
- EcsParameters?: EcsParameters;
3650
+ EcsParameters?: EcsParameters | undefined;
3651
3651
  /**
3652
3652
  * <p>If the event target is an Batch job, this contains the job definition, job
3653
3653
  * name, and other parameters. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/jobs.html">Jobs</a> in the <i>Batch
3654
3654
  * User Guide</i>.</p>
3655
3655
  * @public
3656
3656
  */
3657
- BatchParameters?: BatchParameters;
3657
+ BatchParameters?: BatchParameters | undefined;
3658
3658
  /**
3659
3659
  * <p>Contains the message group ID to use when the target is a FIFO queue.</p>
3660
3660
  * <p>If you specify an SQS FIFO queue as a target, the queue must have content-based
3661
3661
  * deduplication enabled.</p>
3662
3662
  * @public
3663
3663
  */
3664
- SqsParameters?: SqsParameters;
3664
+ SqsParameters?: SqsParameters | undefined;
3665
3665
  /**
3666
3666
  * <p>Contains the HTTP parameters to use when the target is a API Gateway endpoint or
3667
3667
  * EventBridge ApiDestination.</p>
@@ -3672,14 +3672,14 @@ export interface Target {
3672
3672
  * the Connection take precedence.</p>
3673
3673
  * @public
3674
3674
  */
3675
- HttpParameters?: HttpParameters;
3675
+ HttpParameters?: HttpParameters | undefined;
3676
3676
  /**
3677
3677
  * <p>Contains the Amazon Redshift Data API parameters to use when the target is a Amazon Redshift cluster.</p>
3678
3678
  * <p>If you specify a Amazon Redshift Cluster as a Target, you can use this to specify
3679
3679
  * parameters to invoke the Amazon Redshift Data API ExecuteStatement based on EventBridge events.</p>
3680
3680
  * @public
3681
3681
  */
3682
- RedshiftDataParameters?: RedshiftDataParameters;
3682
+ RedshiftDataParameters?: RedshiftDataParameters | undefined;
3683
3683
  /**
3684
3684
  * <p>Contains the SageMaker Model Building Pipeline parameters to start execution of a
3685
3685
  * SageMaker Model Building Pipeline.</p>
@@ -3687,25 +3687,25 @@ export interface Target {
3687
3687
  * to specify parameters to start a pipeline execution based on EventBridge events.</p>
3688
3688
  * @public
3689
3689
  */
3690
- SageMakerPipelineParameters?: SageMakerPipelineParameters;
3690
+ SageMakerPipelineParameters?: SageMakerPipelineParameters | undefined;
3691
3691
  /**
3692
3692
  * <p>The <code>DeadLetterConfig</code> that defines the target queue to send dead-letter queue
3693
3693
  * events to.</p>
3694
3694
  * @public
3695
3695
  */
3696
- DeadLetterConfig?: DeadLetterConfig;
3696
+ DeadLetterConfig?: DeadLetterConfig | undefined;
3697
3697
  /**
3698
3698
  * <p>The <code>RetryPolicy</code> object that contains the retry policy configuration to use
3699
3699
  * for the dead-letter queue.</p>
3700
3700
  * @public
3701
3701
  */
3702
- RetryPolicy?: RetryPolicy;
3702
+ RetryPolicy?: RetryPolicy | undefined;
3703
3703
  /**
3704
3704
  * <p>Contains the GraphQL operation to be parsed and executed, if the event target is an
3705
3705
  * AppSync API.</p>
3706
3706
  * @public
3707
3707
  */
3708
- AppSyncParameters?: AppSyncParameters;
3708
+ AppSyncParameters?: AppSyncParameters | undefined;
3709
3709
  }
3710
3710
  /**
3711
3711
  * @public
@@ -3715,13 +3715,13 @@ export interface ListTargetsByRuleResponse {
3715
3715
  * <p>The targets assigned to the rule.</p>
3716
3716
  * @public
3717
3717
  */
3718
- Targets?: Target[];
3718
+ Targets?: Target[] | undefined;
3719
3719
  /**
3720
3720
  * <p>Indicates whether there are additional results to retrieve. If there are no more results,
3721
3721
  * the value is null.</p>
3722
3722
  * @public
3723
3723
  */
3724
- NextToken?: string;
3724
+ NextToken?: string | undefined;
3725
3725
  }
3726
3726
  /**
3727
3727
  * <p>Represents an event to be submitted.</p>
@@ -3732,7 +3732,7 @@ export interface PutEventsRequestEntry {
3732
3732
  * <p>The time stamp of the event, per <a href="https://www.rfc-editor.org/rfc/rfc3339.txt">RFC3339</a>. If no time stamp is provided, the time stamp of the <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEvents.html">PutEvents</a> call is used.</p>
3733
3733
  * @public
3734
3734
  */
3735
- Time?: Date;
3735
+ Time?: Date | undefined;
3736
3736
  /**
3737
3737
  * <p>The source of the event.</p>
3738
3738
  * <note>
@@ -3744,13 +3744,13 @@ export interface PutEventsRequestEntry {
3744
3744
  * </note>
3745
3745
  * @public
3746
3746
  */
3747
- Source?: string;
3747
+ Source?: string | undefined;
3748
3748
  /**
3749
3749
  * <p>Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily concerns.
3750
3750
  * Any number, including zero, may be present.</p>
3751
3751
  * @public
3752
3752
  */
3753
- Resources?: string[];
3753
+ Resources?: string[] | undefined;
3754
3754
  /**
3755
3755
  * <p>Free-form string, with a maximum of 128 characters, used to decide what fields to expect
3756
3756
  * in the event detail.</p>
@@ -3763,7 +3763,7 @@ export interface PutEventsRequestEntry {
3763
3763
  * </note>
3764
3764
  * @public
3765
3765
  */
3766
- DetailType?: string;
3766
+ DetailType?: string | undefined;
3767
3767
  /**
3768
3768
  * <p>A valid JSON object. There is no other schema imposed. The JSON object may contain fields
3769
3769
  * and nested sub-objects.</p>
@@ -3776,7 +3776,7 @@ export interface PutEventsRequestEntry {
3776
3776
  * </note>
3777
3777
  * @public
3778
3778
  */
3779
- Detail?: string;
3779
+ Detail?: string | undefined;
3780
3780
  /**
3781
3781
  * <p>The name or ARN of the event bus to receive the event. Only the rules that are associated
3782
3782
  * with this event bus are used to match the event. If you omit this, the default event bus is
@@ -3789,7 +3789,7 @@ export interface PutEventsRequestEntry {
3789
3789
  * </note>
3790
3790
  * @public
3791
3791
  */
3792
- EventBusName?: string;
3792
+ EventBusName?: string | undefined;
3793
3793
  /**
3794
3794
  * <p>An X-Ray trace header, which is an http header (X-Amzn-Trace-Id) that
3795
3795
  * contains the trace-id associated with the event.</p>
@@ -3797,7 +3797,7 @@ export interface PutEventsRequestEntry {
3797
3797
  * header</a> in the X-Ray Developer Guide.</p>
3798
3798
  * @public
3799
3799
  */
3800
- TraceHeader?: string;
3800
+ TraceHeader?: string | undefined;
3801
3801
  }
3802
3802
  /**
3803
3803
  * @public
@@ -3819,7 +3819,7 @@ export interface PutEventsRequest {
3819
3819
  * </important>
3820
3820
  * @public
3821
3821
  */
3822
- EndpointId?: string;
3822
+ EndpointId?: string | undefined;
3823
3823
  }
3824
3824
  /**
3825
3825
  * <p>Represents the results of an event submitted to an event bus.</p>
@@ -3834,7 +3834,7 @@ export interface PutEventsResultEntry {
3834
3834
  * <p>The ID of the event.</p>
3835
3835
  * @public
3836
3836
  */
3837
- EventId?: string;
3837
+ EventId?: string | undefined;
3838
3838
  /**
3839
3839
  * <p>The error code that indicates why the event submission failed.</p>
3840
3840
  * <p>Retryable errors include:</p>
@@ -3908,12 +3908,12 @@ export interface PutEventsResultEntry {
3908
3908
  * </ul>
3909
3909
  * @public
3910
3910
  */
3911
- ErrorCode?: string;
3911
+ ErrorCode?: string | undefined;
3912
3912
  /**
3913
3913
  * <p>The error message that explains why the event submission failed.</p>
3914
3914
  * @public
3915
3915
  */
3916
- ErrorMessage?: string;
3916
+ ErrorMessage?: string | undefined;
3917
3917
  }
3918
3918
  /**
3919
3919
  * @public
@@ -3923,7 +3923,7 @@ export interface PutEventsResponse {
3923
3923
  * <p>The number of failed entries.</p>
3924
3924
  * @public
3925
3925
  */
3926
- FailedEntryCount?: number;
3926
+ FailedEntryCount?: number | undefined;
3927
3927
  /**
3928
3928
  * <p>The successfully and unsuccessfully ingested events results. If the ingestion was
3929
3929
  * successful, the entry has the event ID in it. Otherwise, you can use the error code and error
@@ -3932,7 +3932,7 @@ export interface PutEventsResponse {
3932
3932
  * array.</p>
3933
3933
  * @public
3934
3934
  */
3935
- Entries?: PutEventsResultEntry[];
3935
+ Entries?: PutEventsResultEntry[] | undefined;
3936
3936
  }
3937
3937
  /**
3938
3938
  * <p>The details about an event generated by an SaaS partner.</p>
@@ -3943,7 +3943,7 @@ export interface PutPartnerEventsRequestEntry {
3943
3943
  * <p>The date and time of the event.</p>
3944
3944
  * @public
3945
3945
  */
3946
- Time?: Date;
3946
+ Time?: Date | undefined;
3947
3947
  /**
3948
3948
  * <p>The event source that is generating the entry.</p>
3949
3949
  * <note>
@@ -3955,13 +3955,13 @@ export interface PutPartnerEventsRequestEntry {
3955
3955
  * </note>
3956
3956
  * @public
3957
3957
  */
3958
- Source?: string;
3958
+ Source?: string | undefined;
3959
3959
  /**
3960
3960
  * <p>Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily concerns.
3961
3961
  * Any number, including zero, may be present.</p>
3962
3962
  * @public
3963
3963
  */
3964
- Resources?: string[];
3964
+ Resources?: string[] | undefined;
3965
3965
  /**
3966
3966
  * <p>A free-form string, with a maximum of 128 characters, used to decide what fields to expect
3967
3967
  * in the event detail.</p>
@@ -3974,7 +3974,7 @@ export interface PutPartnerEventsRequestEntry {
3974
3974
  * </note>
3975
3975
  * @public
3976
3976
  */
3977
- DetailType?: string;
3977
+ DetailType?: string | undefined;
3978
3978
  /**
3979
3979
  * <p>A valid JSON string. There is no other schema imposed. The JSON string may contain fields
3980
3980
  * and nested sub-objects.</p>
@@ -3987,7 +3987,7 @@ export interface PutPartnerEventsRequestEntry {
3987
3987
  * </note>
3988
3988
  * @public
3989
3989
  */
3990
- Detail?: string;
3990
+ Detail?: string | undefined;
3991
3991
  }
3992
3992
  /**
3993
3993
  * @public
@@ -4010,17 +4010,17 @@ export interface PutPartnerEventsResultEntry {
4010
4010
  * <p>The ID of the event.</p>
4011
4011
  * @public
4012
4012
  */
4013
- EventId?: string;
4013
+ EventId?: string | undefined;
4014
4014
  /**
4015
4015
  * <p>The error code that indicates why the event submission failed.</p>
4016
4016
  * @public
4017
4017
  */
4018
- ErrorCode?: string;
4018
+ ErrorCode?: string | undefined;
4019
4019
  /**
4020
4020
  * <p>The error message that explains why the event submission failed.</p>
4021
4021
  * @public
4022
4022
  */
4023
- ErrorMessage?: string;
4023
+ ErrorMessage?: string | undefined;
4024
4024
  }
4025
4025
  /**
4026
4026
  * @public
@@ -4031,7 +4031,7 @@ export interface PutPartnerEventsResponse {
4031
4031
  * bus.</p>
4032
4032
  * @public
4033
4033
  */
4034
- FailedEntryCount?: number;
4034
+ FailedEntryCount?: number | undefined;
4035
4035
  /**
4036
4036
  * <p>The results for each event entry the partner submitted in this request. If the event was
4037
4037
  * successfully submitted, the entry has the event ID in it. Otherwise, you can use the error
@@ -4040,7 +4040,7 @@ export interface PutPartnerEventsResponse {
4040
4040
  * array.</p>
4041
4041
  * @public
4042
4042
  */
4043
- Entries?: PutPartnerEventsResultEntry[];
4043
+ Entries?: PutPartnerEventsResultEntry[] | undefined;
4044
4044
  }
4045
4045
  /**
4046
4046
  * <p>The event bus policy is too long. For more information, see the limits.</p>
@@ -4096,12 +4096,12 @@ export interface PutPermissionRequest {
4096
4096
  * bus is used.</p>
4097
4097
  * @public
4098
4098
  */
4099
- EventBusName?: string;
4099
+ EventBusName?: string | undefined;
4100
4100
  /**
4101
4101
  * <p>The action that you are enabling the other account to perform.</p>
4102
4102
  * @public
4103
4103
  */
4104
- Action?: string;
4104
+ Action?: string | undefined;
4105
4105
  /**
4106
4106
  * <p>The 12-digit Amazon Web Services account ID that you are permitting to put events to your
4107
4107
  * default event bus. Specify "*" to permit any account to put events to your default event
@@ -4113,7 +4113,7 @@ export interface PutPermissionRequest {
4113
4113
  * accounts.</p>
4114
4114
  * @public
4115
4115
  */
4116
- Principal?: string;
4116
+ Principal?: string | undefined;
4117
4117
  /**
4118
4118
  * <p>An identifier string for the external account that you are granting permissions to. If you
4119
4119
  * later want to revoke the permission for this external account, specify this
@@ -4123,7 +4123,7 @@ export interface PutPermissionRequest {
4123
4123
  * </note>
4124
4124
  * @public
4125
4125
  */
4126
- StatementId?: string;
4126
+ StatementId?: string | undefined;
4127
4127
  /**
4128
4128
  * <p>This parameter enables you to limit the permission to accounts that fulfill a certain
4129
4129
  * condition, such as being a member of a certain Amazon Web Services organization. For more
@@ -4137,14 +4137,14 @@ export interface PutPermissionRequest {
4137
4137
  * <code>Key</code>, and <code>Value</code> fields.</p>
4138
4138
  * @public
4139
4139
  */
4140
- Condition?: Condition;
4140
+ Condition?: Condition | undefined;
4141
4141
  /**
4142
4142
  * <p>A JSON string that describes the permission policy statement. You can include a
4143
4143
  * <code>Policy</code> parameter in the request instead of using the <code>StatementId</code>,
4144
4144
  * <code>Action</code>, <code>Principal</code>, or <code>Condition</code> parameters.</p>
4145
4145
  * @public
4146
4146
  */
4147
- Policy?: string;
4147
+ Policy?: string | undefined;
4148
4148
  }
4149
4149
  /**
4150
4150
  * @public
@@ -4159,7 +4159,7 @@ export interface PutRuleRequest {
4159
4159
  * <p>The scheduling expression. For example, "cron(0 20 * * ? *)" or "rate(5 minutes)".</p>
4160
4160
  * @public
4161
4161
  */
4162
- ScheduleExpression?: string;
4162
+ ScheduleExpression?: string | undefined;
4163
4163
  /**
4164
4164
  * <p>The event pattern. For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-patterns.html">Amazon EventBridge event
4165
4165
  * patterns</a> in the <i>
@@ -4167,7 +4167,7 @@ export interface PutRuleRequest {
4167
4167
  * </i>.</p>
4168
4168
  * @public
4169
4169
  */
4170
- EventPattern?: string;
4170
+ EventPattern?: string | undefined;
4171
4171
  /**
4172
4172
  * <p>The state of the rule.</p>
4173
4173
  * <p>Valid values include:</p>
@@ -4199,12 +4199,12 @@ export interface PutRuleRequest {
4199
4199
  * </ul>
4200
4200
  * @public
4201
4201
  */
4202
- State?: RuleState;
4202
+ State?: RuleState | undefined;
4203
4203
  /**
4204
4204
  * <p>A description of the rule.</p>
4205
4205
  * @public
4206
4206
  */
4207
- Description?: string;
4207
+ Description?: string | undefined;
4208
4208
  /**
4209
4209
  * <p>The Amazon Resource Name (ARN) of the IAM role associated with the rule.</p>
4210
4210
  * <p>If you're setting an event bus in another account as the target and that account granted
@@ -4213,18 +4213,18 @@ export interface PutRuleRequest {
4213
4213
  * structure, instead of here in this parameter.</p>
4214
4214
  * @public
4215
4215
  */
4216
- RoleArn?: string;
4216
+ RoleArn?: string | undefined;
4217
4217
  /**
4218
4218
  * <p>The list of key-value pairs to associate with the rule.</p>
4219
4219
  * @public
4220
4220
  */
4221
- Tags?: Tag[];
4221
+ Tags?: Tag[] | undefined;
4222
4222
  /**
4223
4223
  * <p>The name or ARN of the event bus to associate with this rule. If you omit this, the
4224
4224
  * default event bus is used.</p>
4225
4225
  * @public
4226
4226
  */
4227
- EventBusName?: string;
4227
+ EventBusName?: string | undefined;
4228
4228
  }
4229
4229
  /**
4230
4230
  * @public
@@ -4234,7 +4234,7 @@ export interface PutRuleResponse {
4234
4234
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
4235
4235
  * @public
4236
4236
  */
4237
- RuleArn?: string;
4237
+ RuleArn?: string | undefined;
4238
4238
  }
4239
4239
  /**
4240
4240
  * @public
@@ -4250,7 +4250,7 @@ export interface PutTargetsRequest {
4250
4250
  * event bus is used.</p>
4251
4251
  * @public
4252
4252
  */
4253
- EventBusName?: string;
4253
+ EventBusName?: string | undefined;
4254
4254
  /**
4255
4255
  * <p>The targets to update or add to the rule.</p>
4256
4256
  * @public
@@ -4266,19 +4266,19 @@ export interface PutTargetsResultEntry {
4266
4266
  * <p>The ID of the target.</p>
4267
4267
  * @public
4268
4268
  */
4269
- TargetId?: string;
4269
+ TargetId?: string | undefined;
4270
4270
  /**
4271
4271
  * <p>The error code that indicates why the target addition failed. If the value is
4272
4272
  * <code>ConcurrentModificationException</code>, too many requests were made at the same
4273
4273
  * time.</p>
4274
4274
  * @public
4275
4275
  */
4276
- ErrorCode?: string;
4276
+ ErrorCode?: string | undefined;
4277
4277
  /**
4278
4278
  * <p>The error message that explains why the target addition failed.</p>
4279
4279
  * @public
4280
4280
  */
4281
- ErrorMessage?: string;
4281
+ ErrorMessage?: string | undefined;
4282
4282
  }
4283
4283
  /**
4284
4284
  * @public
@@ -4288,12 +4288,12 @@ export interface PutTargetsResponse {
4288
4288
  * <p>The number of failed entries.</p>
4289
4289
  * @public
4290
4290
  */
4291
- FailedEntryCount?: number;
4291
+ FailedEntryCount?: number | undefined;
4292
4292
  /**
4293
4293
  * <p>The failed target entries.</p>
4294
4294
  * @public
4295
4295
  */
4296
- FailedEntries?: PutTargetsResultEntry[];
4296
+ FailedEntries?: PutTargetsResultEntry[] | undefined;
4297
4297
  }
4298
4298
  /**
4299
4299
  * @public
@@ -4304,18 +4304,18 @@ export interface RemovePermissionRequest {
4304
4304
  * the default event bus.</p>
4305
4305
  * @public
4306
4306
  */
4307
- StatementId?: string;
4307
+ StatementId?: string | undefined;
4308
4308
  /**
4309
4309
  * <p>Specifies whether to remove all permissions.</p>
4310
4310
  * @public
4311
4311
  */
4312
- RemoveAllPermissions?: boolean;
4312
+ RemoveAllPermissions?: boolean | undefined;
4313
4313
  /**
4314
4314
  * <p>The name of the event bus to revoke permissions for. If you omit this, the default event
4315
4315
  * bus is used.</p>
4316
4316
  * @public
4317
4317
  */
4318
- EventBusName?: string;
4318
+ EventBusName?: string | undefined;
4319
4319
  }
4320
4320
  /**
4321
4321
  * @public
@@ -4331,7 +4331,7 @@ export interface RemoveTargetsRequest {
4331
4331
  * event bus is used.</p>
4332
4332
  * @public
4333
4333
  */
4334
- EventBusName?: string;
4334
+ EventBusName?: string | undefined;
4335
4335
  /**
4336
4336
  * <p>The IDs of the targets to remove from the rule.</p>
4337
4337
  * @public
@@ -4345,7 +4345,7 @@ export interface RemoveTargetsRequest {
4345
4345
  * <code>ManagedBy</code> field of the response.</p>
4346
4346
  * @public
4347
4347
  */
4348
- Force?: boolean;
4348
+ Force?: boolean | undefined;
4349
4349
  }
4350
4350
  /**
4351
4351
  * <p>Represents a target that failed to be removed from a rule.</p>
@@ -4356,19 +4356,19 @@ export interface RemoveTargetsResultEntry {
4356
4356
  * <p>The ID of the target.</p>
4357
4357
  * @public
4358
4358
  */
4359
- TargetId?: string;
4359
+ TargetId?: string | undefined;
4360
4360
  /**
4361
4361
  * <p>The error code that indicates why the target removal failed. If the value is
4362
4362
  * <code>ConcurrentModificationException</code>, too many requests were made at the same
4363
4363
  * time.</p>
4364
4364
  * @public
4365
4365
  */
4366
- ErrorCode?: string;
4366
+ ErrorCode?: string | undefined;
4367
4367
  /**
4368
4368
  * <p>The error message that explains why the target removal failed.</p>
4369
4369
  * @public
4370
4370
  */
4371
- ErrorMessage?: string;
4371
+ ErrorMessage?: string | undefined;
4372
4372
  }
4373
4373
  /**
4374
4374
  * @public
@@ -4378,12 +4378,12 @@ export interface RemoveTargetsResponse {
4378
4378
  * <p>The number of failed entries.</p>
4379
4379
  * @public
4380
4380
  */
4381
- FailedEntryCount?: number;
4381
+ FailedEntryCount?: number | undefined;
4382
4382
  /**
4383
4383
  * <p>The failed target entries.</p>
4384
4384
  * @public
4385
4385
  */
4386
- FailedEntries?: RemoveTargetsResultEntry[];
4386
+ FailedEntries?: RemoveTargetsResultEntry[] | undefined;
4387
4387
  }
4388
4388
  /**
4389
4389
  * @public
@@ -4398,7 +4398,7 @@ export interface StartReplayRequest {
4398
4398
  * <p>A description for the replay to start.</p>
4399
4399
  * @public
4400
4400
  */
4401
- Description?: string;
4401
+ Description?: string | undefined;
4402
4402
  /**
4403
4403
  * <p>The ARN of the archive to replay events from.</p>
4404
4404
  * @public
@@ -4431,22 +4431,22 @@ export interface StartReplayResponse {
4431
4431
  * <p>The ARN of the replay.</p>
4432
4432
  * @public
4433
4433
  */
4434
- ReplayArn?: string;
4434
+ ReplayArn?: string | undefined;
4435
4435
  /**
4436
4436
  * <p>The state of the replay.</p>
4437
4437
  * @public
4438
4438
  */
4439
- State?: ReplayState;
4439
+ State?: ReplayState | undefined;
4440
4440
  /**
4441
4441
  * <p>The reason that the replay is in the state.</p>
4442
4442
  * @public
4443
4443
  */
4444
- StateReason?: string;
4444
+ StateReason?: string | undefined;
4445
4445
  /**
4446
4446
  * <p>The time at which the replay started.</p>
4447
4447
  * @public
4448
4448
  */
4449
- ReplayStartTime?: Date;
4449
+ ReplayStartTime?: Date | undefined;
4450
4450
  }
4451
4451
  /**
4452
4452
  * @public
@@ -4533,7 +4533,7 @@ export interface TestEventPatternResponse {
4533
4533
  * <p>Indicates whether the event matches the event pattern.</p>
4534
4534
  * @public
4535
4535
  */
4536
- Result?: boolean;
4536
+ Result?: boolean | undefined;
4537
4537
  }
4538
4538
  /**
4539
4539
  * @public
@@ -4568,27 +4568,27 @@ export interface UpdateApiDestinationRequest {
4568
4568
  * <p>The name of the API destination to update.</p>
4569
4569
  * @public
4570
4570
  */
4571
- Description?: string;
4571
+ Description?: string | undefined;
4572
4572
  /**
4573
4573
  * <p>The ARN of the connection to use for the API destination.</p>
4574
4574
  * @public
4575
4575
  */
4576
- ConnectionArn?: string;
4576
+ ConnectionArn?: string | undefined;
4577
4577
  /**
4578
4578
  * <p>The URL to the endpoint to use for the API destination.</p>
4579
4579
  * @public
4580
4580
  */
4581
- InvocationEndpoint?: string;
4581
+ InvocationEndpoint?: string | undefined;
4582
4582
  /**
4583
4583
  * <p>The method to use for the API destination.</p>
4584
4584
  * @public
4585
4585
  */
4586
- HttpMethod?: ApiDestinationHttpMethod;
4586
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
4587
4587
  /**
4588
4588
  * <p>The maximum number of invocations per second to send to the API destination.</p>
4589
4589
  * @public
4590
4590
  */
4591
- InvocationRateLimitPerSecond?: number;
4591
+ InvocationRateLimitPerSecond?: number | undefined;
4592
4592
  }
4593
4593
  /**
4594
4594
  * @public
@@ -4598,22 +4598,22 @@ export interface UpdateApiDestinationResponse {
4598
4598
  * <p>The ARN of the API destination that was updated.</p>
4599
4599
  * @public
4600
4600
  */
4601
- ApiDestinationArn?: string;
4601
+ ApiDestinationArn?: string | undefined;
4602
4602
  /**
4603
4603
  * <p>The state of the API destination that was updated.</p>
4604
4604
  * @public
4605
4605
  */
4606
- ApiDestinationState?: ApiDestinationState;
4606
+ ApiDestinationState?: ApiDestinationState | undefined;
4607
4607
  /**
4608
4608
  * <p>A time stamp for the time that the API destination was created.</p>
4609
4609
  * @public
4610
4610
  */
4611
- CreationTime?: Date;
4611
+ CreationTime?: Date | undefined;
4612
4612
  /**
4613
4613
  * <p>A time stamp for the time that the API destination was last modified.</p>
4614
4614
  * @public
4615
4615
  */
4616
- LastModifiedTime?: Date;
4616
+ LastModifiedTime?: Date | undefined;
4617
4617
  }
4618
4618
  /**
4619
4619
  * @public
@@ -4628,17 +4628,17 @@ export interface UpdateArchiveRequest {
4628
4628
  * <p>The description for the archive.</p>
4629
4629
  * @public
4630
4630
  */
4631
- Description?: string;
4631
+ Description?: string | undefined;
4632
4632
  /**
4633
4633
  * <p>The event pattern to use to filter events sent to the archive.</p>
4634
4634
  * @public
4635
4635
  */
4636
- EventPattern?: string;
4636
+ EventPattern?: string | undefined;
4637
4637
  /**
4638
4638
  * <p>The number of days to retain events in the archive.</p>
4639
4639
  * @public
4640
4640
  */
4641
- RetentionDays?: number;
4641
+ RetentionDays?: number | undefined;
4642
4642
  }
4643
4643
  /**
4644
4644
  * @public
@@ -4648,22 +4648,22 @@ export interface UpdateArchiveResponse {
4648
4648
  * <p>The ARN of the archive.</p>
4649
4649
  * @public
4650
4650
  */
4651
- ArchiveArn?: string;
4651
+ ArchiveArn?: string | undefined;
4652
4652
  /**
4653
4653
  * <p>The state of the archive.</p>
4654
4654
  * @public
4655
4655
  */
4656
- State?: ArchiveState;
4656
+ State?: ArchiveState | undefined;
4657
4657
  /**
4658
4658
  * <p>The reason that the archive is in the current state.</p>
4659
4659
  * @public
4660
4660
  */
4661
- StateReason?: string;
4661
+ StateReason?: string | undefined;
4662
4662
  /**
4663
4663
  * <p>The time at which the archive was updated.</p>
4664
4664
  * @public
4665
4665
  */
4666
- CreationTime?: Date;
4666
+ CreationTime?: Date | undefined;
4667
4667
  }
4668
4668
  /**
4669
4669
  * <p>Contains the API key authorization parameters to use to update the connection.</p>
@@ -4674,12 +4674,12 @@ export interface UpdateConnectionApiKeyAuthRequestParameters {
4674
4674
  * <p>The name of the API key to use for authorization.</p>
4675
4675
  * @public
4676
4676
  */
4677
- ApiKeyName?: string;
4677
+ ApiKeyName?: string | undefined;
4678
4678
  /**
4679
4679
  * <p>The value associated with teh API key to use for authorization.</p>
4680
4680
  * @public
4681
4681
  */
4682
- ApiKeyValue?: string;
4682
+ ApiKeyValue?: string | undefined;
4683
4683
  }
4684
4684
  /**
4685
4685
  * <p>Contains the Basic authorization parameters for the connection.</p>
@@ -4690,12 +4690,12 @@ export interface UpdateConnectionBasicAuthRequestParameters {
4690
4690
  * <p>The user name to use for Basic authorization.</p>
4691
4691
  * @public
4692
4692
  */
4693
- Username?: string;
4693
+ Username?: string | undefined;
4694
4694
  /**
4695
4695
  * <p>The password associated with the user name to use for Basic authorization.</p>
4696
4696
  * @public
4697
4697
  */
4698
- Password?: string;
4698
+ Password?: string | undefined;
4699
4699
  }
4700
4700
  /**
4701
4701
  * <p>Contains the OAuth authorization parameters to use for the connection.</p>
@@ -4706,12 +4706,12 @@ export interface UpdateConnectionOAuthClientRequestParameters {
4706
4706
  * <p>The client ID to use for OAuth authorization.</p>
4707
4707
  * @public
4708
4708
  */
4709
- ClientID?: string;
4709
+ ClientID?: string | undefined;
4710
4710
  /**
4711
4711
  * <p>The client secret assciated with the client ID to use for OAuth authorization.</p>
4712
4712
  * @public
4713
4713
  */
4714
- ClientSecret?: string;
4714
+ ClientSecret?: string | undefined;
4715
4715
  }
4716
4716
  /**
4717
4717
  * <p>Contains the OAuth request parameters to use for the connection.</p>
@@ -4724,23 +4724,23 @@ export interface UpdateConnectionOAuthRequestParameters {
4724
4724
  * type.</p>
4725
4725
  * @public
4726
4726
  */
4727
- ClientParameters?: UpdateConnectionOAuthClientRequestParameters;
4727
+ ClientParameters?: UpdateConnectionOAuthClientRequestParameters | undefined;
4728
4728
  /**
4729
4729
  * <p>The URL to the authorization endpoint when OAuth is specified as the authorization
4730
4730
  * type.</p>
4731
4731
  * @public
4732
4732
  */
4733
- AuthorizationEndpoint?: string;
4733
+ AuthorizationEndpoint?: string | undefined;
4734
4734
  /**
4735
4735
  * <p>The method used to connect to the HTTP endpoint.</p>
4736
4736
  * @public
4737
4737
  */
4738
- HttpMethod?: ConnectionOAuthHttpMethod;
4738
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
4739
4739
  /**
4740
4740
  * <p>The additional HTTP parameters used for the OAuth authorization request.</p>
4741
4741
  * @public
4742
4742
  */
4743
- OAuthHttpParameters?: ConnectionHttpParameters;
4743
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
4744
4744
  }
4745
4745
  /**
4746
4746
  * <p>Contains the additional parameters to use for the connection.</p>
@@ -4752,25 +4752,25 @@ export interface UpdateConnectionAuthRequestParameters {
4752
4752
  * authorization parameters for Basic authorization.</p>
4753
4753
  * @public
4754
4754
  */
4755
- BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters;
4755
+ BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters | undefined;
4756
4756
  /**
4757
4757
  * <p>A <code>UpdateConnectionOAuthRequestParameters</code> object that contains the
4758
4758
  * authorization parameters for OAuth authorization.</p>
4759
4759
  * @public
4760
4760
  */
4761
- OAuthParameters?: UpdateConnectionOAuthRequestParameters;
4761
+ OAuthParameters?: UpdateConnectionOAuthRequestParameters | undefined;
4762
4762
  /**
4763
4763
  * <p>A <code>UpdateConnectionApiKeyAuthRequestParameters</code> object that contains the
4764
4764
  * authorization parameters for API key authorization.</p>
4765
4765
  * @public
4766
4766
  */
4767
- ApiKeyAuthParameters?: UpdateConnectionApiKeyAuthRequestParameters;
4767
+ ApiKeyAuthParameters?: UpdateConnectionApiKeyAuthRequestParameters | undefined;
4768
4768
  /**
4769
4769
  * <p>A <code>ConnectionHttpParameters</code> object that contains the additional parameters to
4770
4770
  * use for the connection.</p>
4771
4771
  * @public
4772
4772
  */
4773
- InvocationHttpParameters?: ConnectionHttpParameters;
4773
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
4774
4774
  }
4775
4775
  /**
4776
4776
  * @public
@@ -4785,17 +4785,17 @@ export interface UpdateConnectionRequest {
4785
4785
  * <p>A description for the connection.</p>
4786
4786
  * @public
4787
4787
  */
4788
- Description?: string;
4788
+ Description?: string | undefined;
4789
4789
  /**
4790
4790
  * <p>The type of authorization to use for the connection.</p>
4791
4791
  * @public
4792
4792
  */
4793
- AuthorizationType?: ConnectionAuthorizationType;
4793
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
4794
4794
  /**
4795
4795
  * <p>The authorization parameters to use for the connection.</p>
4796
4796
  * @public
4797
4797
  */
4798
- AuthParameters?: UpdateConnectionAuthRequestParameters;
4798
+ AuthParameters?: UpdateConnectionAuthRequestParameters | undefined;
4799
4799
  }
4800
4800
  /**
4801
4801
  * @public
@@ -4805,27 +4805,27 @@ export interface UpdateConnectionResponse {
4805
4805
  * <p>The ARN of the connection that was updated.</p>
4806
4806
  * @public
4807
4807
  */
4808
- ConnectionArn?: string;
4808
+ ConnectionArn?: string | undefined;
4809
4809
  /**
4810
4810
  * <p>The state of the connection that was updated.</p>
4811
4811
  * @public
4812
4812
  */
4813
- ConnectionState?: ConnectionState;
4813
+ ConnectionState?: ConnectionState | undefined;
4814
4814
  /**
4815
4815
  * <p>A time stamp for the time that the connection was created.</p>
4816
4816
  * @public
4817
4817
  */
4818
- CreationTime?: Date;
4818
+ CreationTime?: Date | undefined;
4819
4819
  /**
4820
4820
  * <p>A time stamp for the time that the connection was last modified.</p>
4821
4821
  * @public
4822
4822
  */
4823
- LastModifiedTime?: Date;
4823
+ LastModifiedTime?: Date | undefined;
4824
4824
  /**
4825
4825
  * <p>A time stamp for the time that the connection was last authorized.</p>
4826
4826
  * @public
4827
4827
  */
4828
- LastAuthorizedTime?: Date;
4828
+ LastAuthorizedTime?: Date | undefined;
4829
4829
  }
4830
4830
  /**
4831
4831
  * @public
@@ -4840,27 +4840,27 @@ export interface UpdateEndpointRequest {
4840
4840
  * <p>A description for the endpoint.</p>
4841
4841
  * @public
4842
4842
  */
4843
- Description?: string;
4843
+ Description?: string | undefined;
4844
4844
  /**
4845
4845
  * <p>Configure the routing policy, including the health check and secondary Region.</p>
4846
4846
  * @public
4847
4847
  */
4848
- RoutingConfig?: RoutingConfig;
4848
+ RoutingConfig?: RoutingConfig | undefined;
4849
4849
  /**
4850
4850
  * <p>Whether event replication was enabled or disabled by this request.</p>
4851
4851
  * @public
4852
4852
  */
4853
- ReplicationConfig?: ReplicationConfig;
4853
+ ReplicationConfig?: ReplicationConfig | undefined;
4854
4854
  /**
4855
4855
  * <p>Define event buses used for replication.</p>
4856
4856
  * @public
4857
4857
  */
4858
- EventBuses?: EndpointEventBus[];
4858
+ EventBuses?: EndpointEventBus[] | undefined;
4859
4859
  /**
4860
4860
  * <p>The ARN of the role used by event replication for this request.</p>
4861
4861
  * @public
4862
4862
  */
4863
- RoleArn?: string;
4863
+ RoleArn?: string | undefined;
4864
4864
  }
4865
4865
  /**
4866
4866
  * @public
@@ -4870,49 +4870,49 @@ export interface UpdateEndpointResponse {
4870
4870
  * <p>The name of the endpoint you updated in this request.</p>
4871
4871
  * @public
4872
4872
  */
4873
- Name?: string;
4873
+ Name?: string | undefined;
4874
4874
  /**
4875
4875
  * <p>The ARN of the endpoint you updated in this request.</p>
4876
4876
  * @public
4877
4877
  */
4878
- Arn?: string;
4878
+ Arn?: string | undefined;
4879
4879
  /**
4880
4880
  * <p>The routing configuration you updated in this request.</p>
4881
4881
  * @public
4882
4882
  */
4883
- RoutingConfig?: RoutingConfig;
4883
+ RoutingConfig?: RoutingConfig | undefined;
4884
4884
  /**
4885
4885
  * <p>Whether event replication was enabled or disabled for the endpoint you updated in this
4886
4886
  * request.</p>
4887
4887
  * @public
4888
4888
  */
4889
- ReplicationConfig?: ReplicationConfig;
4889
+ ReplicationConfig?: ReplicationConfig | undefined;
4890
4890
  /**
4891
4891
  * <p>The event buses used for replication for the endpoint you updated in this request.</p>
4892
4892
  * @public
4893
4893
  */
4894
- EventBuses?: EndpointEventBus[];
4894
+ EventBuses?: EndpointEventBus[] | undefined;
4895
4895
  /**
4896
4896
  * <p>The ARN of the role used by event replication for the endpoint you updated in this
4897
4897
  * request.</p>
4898
4898
  * @public
4899
4899
  */
4900
- RoleArn?: string;
4900
+ RoleArn?: string | undefined;
4901
4901
  /**
4902
4902
  * <p>The ID of the endpoint you updated in this request.</p>
4903
4903
  * @public
4904
4904
  */
4905
- EndpointId?: string;
4905
+ EndpointId?: string | undefined;
4906
4906
  /**
4907
4907
  * <p>The URL of the endpoint you updated in this request.</p>
4908
4908
  * @public
4909
4909
  */
4910
- EndpointUrl?: string;
4910
+ EndpointUrl?: string | undefined;
4911
4911
  /**
4912
4912
  * <p>The state of the endpoint you updated in this request.</p>
4913
4913
  * @public
4914
4914
  */
4915
- State?: EndpointState;
4915
+ State?: EndpointState | undefined;
4916
4916
  }
4917
4917
  /**
4918
4918
  * @public
@@ -4922,7 +4922,7 @@ export interface UpdateEventBusRequest {
4922
4922
  * <p>The name of the event bus.</p>
4923
4923
  * @public
4924
4924
  */
4925
- Name?: string;
4925
+ Name?: string | undefined;
4926
4926
  /**
4927
4927
  * <p>The identifier of the KMS
4928
4928
  * customer managed key for EventBridge to use, if you choose to use a customer managed key to encrypt events on this event bus. The identifier can be the key
@@ -4956,12 +4956,12 @@ export interface UpdateEventBusRequest {
4956
4956
  * </note>
4957
4957
  * @public
4958
4958
  */
4959
- KmsKeyIdentifier?: string;
4959
+ KmsKeyIdentifier?: string | undefined;
4960
4960
  /**
4961
4961
  * <p>The event bus description.</p>
4962
4962
  * @public
4963
4963
  */
4964
- Description?: string;
4964
+ Description?: string | undefined;
4965
4965
  /**
4966
4966
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
4967
4967
  * dead-letter queue (DLQ).</p>
@@ -4970,7 +4970,7 @@ export interface UpdateEventBusRequest {
4970
4970
  * Guide</i>.</p>
4971
4971
  * @public
4972
4972
  */
4973
- DeadLetterConfig?: DeadLetterConfig;
4973
+ DeadLetterConfig?: DeadLetterConfig | undefined;
4974
4974
  }
4975
4975
  /**
4976
4976
  * @public
@@ -4980,24 +4980,24 @@ export interface UpdateEventBusResponse {
4980
4980
  * <p>The event bus Amazon Resource Name (ARN).</p>
4981
4981
  * @public
4982
4982
  */
4983
- Arn?: string;
4983
+ Arn?: string | undefined;
4984
4984
  /**
4985
4985
  * <p>The event bus name.</p>
4986
4986
  * @public
4987
4987
  */
4988
- Name?: string;
4988
+ Name?: string | undefined;
4989
4989
  /**
4990
4990
  * <p>The identifier of the KMS
4991
4991
  * customer managed key for EventBridge to use to encrypt events on this event bus, if one has been specified.</p>
4992
4992
  * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html">Data encryption in EventBridge</a> in the <i>Amazon EventBridge User Guide</i>.</p>
4993
4993
  * @public
4994
4994
  */
4995
- KmsKeyIdentifier?: string;
4995
+ KmsKeyIdentifier?: string | undefined;
4996
4996
  /**
4997
4997
  * <p>The event bus description.</p>
4998
4998
  * @public
4999
4999
  */
5000
- Description?: string;
5000
+ Description?: string | undefined;
5001
5001
  /**
5002
5002
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
5003
5003
  * dead-letter queue (DLQ).</p>
@@ -5006,7 +5006,7 @@ export interface UpdateEventBusResponse {
5006
5006
  * Guide</i>.</p>
5007
5007
  * @public
5008
5008
  */
5009
- DeadLetterConfig?: DeadLetterConfig;
5009
+ DeadLetterConfig?: DeadLetterConfig | undefined;
5010
5010
  }
5011
5011
  /**
5012
5012
  * @internal