@aws-sdk/client-cloudwatch-events 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
  * @public
@@ -175,43 +175,43 @@ export interface Archive {
175
175
  * <p>The name of the archive.</p>
176
176
  * @public
177
177
  */
178
- ArchiveName?: string;
178
+ ArchiveName?: string | undefined;
179
179
  /**
180
180
  * <p>The ARN of the event bus associated with the archive. Only events from this event bus are
181
181
  * sent to the archive.</p>
182
182
  * @public
183
183
  */
184
- EventSourceArn?: string;
184
+ EventSourceArn?: string | undefined;
185
185
  /**
186
186
  * <p>The current state of the archive.</p>
187
187
  * @public
188
188
  */
189
- State?: ArchiveState;
189
+ State?: ArchiveState | undefined;
190
190
  /**
191
191
  * <p>A description for the reason that the archive is in the current state.</p>
192
192
  * @public
193
193
  */
194
- StateReason?: string;
194
+ StateReason?: string | undefined;
195
195
  /**
196
196
  * <p>The number of days to retain events in the archive before they are deleted.</p>
197
197
  * @public
198
198
  */
199
- RetentionDays?: number;
199
+ RetentionDays?: number | undefined;
200
200
  /**
201
201
  * <p>The size of the archive, in bytes.</p>
202
202
  * @public
203
203
  */
204
- SizeBytes?: number;
204
+ SizeBytes?: number | undefined;
205
205
  /**
206
206
  * <p>The number of events in the archive.</p>
207
207
  * @public
208
208
  */
209
- EventCount?: number;
209
+ EventCount?: number | undefined;
210
210
  /**
211
211
  * <p>The time stamp for the time that the archive was created.</p>
212
212
  * @public
213
213
  */
214
- CreationTime?: Date;
214
+ CreationTime?: Date | undefined;
215
215
  }
216
216
  /**
217
217
  * @public
@@ -259,17 +259,17 @@ export interface CancelReplayResponse {
259
259
  * <p>The ARN of the replay to cancel.</p>
260
260
  * @public
261
261
  */
262
- ReplayArn?: string;
262
+ ReplayArn?: string | undefined;
263
263
  /**
264
264
  * <p>The current state of the replay.</p>
265
265
  * @public
266
266
  */
267
- State?: ReplayState;
267
+ State?: ReplayState | undefined;
268
268
  /**
269
269
  * <p>The reason that the replay is in the current state.</p>
270
270
  * @public
271
271
  */
272
- StateReason?: string;
272
+ StateReason?: string | undefined;
273
273
  }
274
274
  /**
275
275
  * <p>An error occurred because a replay can be canceled only when the state is Running or
@@ -297,7 +297,7 @@ export interface CreateApiDestinationRequest {
297
297
  * <p>A description for the API destination to create.</p>
298
298
  * @public
299
299
  */
300
- Description?: string;
300
+ Description?: string | undefined;
301
301
  /**
302
302
  * <p>The ARN of the connection to use for the API destination. The destination endpoint must
303
303
  * support the authorization type specified for the connection.</p>
@@ -318,7 +318,7 @@ export interface CreateApiDestinationRequest {
318
318
  * <p>The maximum number of requests per second to send to the HTTP invocation endpoint.</p>
319
319
  * @public
320
320
  */
321
- InvocationRateLimitPerSecond?: number;
321
+ InvocationRateLimitPerSecond?: number | undefined;
322
322
  }
323
323
  /**
324
324
  * @public
@@ -328,22 +328,22 @@ export interface CreateApiDestinationResponse {
328
328
  * <p>The ARN of the API destination that was created by the request.</p>
329
329
  * @public
330
330
  */
331
- ApiDestinationArn?: string;
331
+ ApiDestinationArn?: string | undefined;
332
332
  /**
333
333
  * <p>The state of the API destination that was created by the request.</p>
334
334
  * @public
335
335
  */
336
- ApiDestinationState?: ApiDestinationState;
336
+ ApiDestinationState?: ApiDestinationState | undefined;
337
337
  /**
338
338
  * <p>A time stamp indicating the time that the API destination was created.</p>
339
339
  * @public
340
340
  */
341
- CreationTime?: Date;
341
+ CreationTime?: Date | undefined;
342
342
  /**
343
343
  * <p>A time stamp indicating the time that the API destination was last modified.</p>
344
344
  * @public
345
345
  */
346
- LastModifiedTime?: Date;
346
+ LastModifiedTime?: Date | undefined;
347
347
  }
348
348
  /**
349
349
  * <p>The request failed because it attempted to create resource beyond the allowed service
@@ -388,18 +388,18 @@ export interface CreateArchiveRequest {
388
388
  * <p>A description for the archive.</p>
389
389
  * @public
390
390
  */
391
- Description?: string;
391
+ Description?: string | undefined;
392
392
  /**
393
393
  * <p>An event pattern to use to filter events sent to the archive.</p>
394
394
  * @public
395
395
  */
396
- EventPattern?: string;
396
+ EventPattern?: string | undefined;
397
397
  /**
398
398
  * <p>The number of days to retain events for. Default value is 0. If set to 0, events are
399
399
  * retained indefinitely</p>
400
400
  * @public
401
401
  */
402
- RetentionDays?: number;
402
+ RetentionDays?: number | undefined;
403
403
  }
404
404
  /**
405
405
  * @public
@@ -409,22 +409,22 @@ export interface CreateArchiveResponse {
409
409
  * <p>The ARN of the archive that was created.</p>
410
410
  * @public
411
411
  */
412
- ArchiveArn?: string;
412
+ ArchiveArn?: string | undefined;
413
413
  /**
414
414
  * <p>The state of the archive that was created.</p>
415
415
  * @public
416
416
  */
417
- State?: ArchiveState;
417
+ State?: ArchiveState | undefined;
418
418
  /**
419
419
  * <p>The reason that the archive is in the state.</p>
420
420
  * @public
421
421
  */
422
- StateReason?: string;
422
+ StateReason?: string | undefined;
423
423
  /**
424
424
  * <p>The time at which the archive was created.</p>
425
425
  * @public
426
426
  */
427
- CreationTime?: Date;
427
+ CreationTime?: Date | undefined;
428
428
  }
429
429
  /**
430
430
  * <p>The event pattern is not valid.</p>
@@ -493,17 +493,17 @@ export interface ConnectionBodyParameter {
493
493
  * <p>The key for the parameter.</p>
494
494
  * @public
495
495
  */
496
- Key?: string;
496
+ Key?: string | undefined;
497
497
  /**
498
498
  * <p>The value associated with the key.</p>
499
499
  * @public
500
500
  */
501
- Value?: string;
501
+ Value?: string | undefined;
502
502
  /**
503
503
  * <p>Specified whether the value is secret.</p>
504
504
  * @public
505
505
  */
506
- IsValueSecret?: boolean;
506
+ IsValueSecret?: boolean | undefined;
507
507
  }
508
508
  /**
509
509
  * <p>Additional parameter included in the header. You can include up to 100 additional header
@@ -515,17 +515,17 @@ export interface ConnectionHeaderParameter {
515
515
  * <p>The key for the parameter.</p>
516
516
  * @public
517
517
  */
518
- Key?: string;
518
+ Key?: string | undefined;
519
519
  /**
520
520
  * <p>The value associated with the key.</p>
521
521
  * @public
522
522
  */
523
- Value?: string;
523
+ Value?: string | undefined;
524
524
  /**
525
525
  * <p>Specified whether the value is a secret.</p>
526
526
  * @public
527
527
  */
528
- IsValueSecret?: boolean;
528
+ IsValueSecret?: boolean | undefined;
529
529
  }
530
530
  /**
531
531
  * <p>Additional query string parameter for the connection. You can include up to 100 additional
@@ -538,17 +538,17 @@ export interface ConnectionQueryStringParameter {
538
538
  * <p>The key for a query string parameter.</p>
539
539
  * @public
540
540
  */
541
- Key?: string;
541
+ Key?: string | undefined;
542
542
  /**
543
543
  * <p>The value associated with the key for the query string parameter.</p>
544
544
  * @public
545
545
  */
546
- Value?: string;
546
+ Value?: string | undefined;
547
547
  /**
548
548
  * <p>Specifies whether the value is secret.</p>
549
549
  * @public
550
550
  */
551
- IsValueSecret?: boolean;
551
+ IsValueSecret?: boolean | undefined;
552
552
  }
553
553
  /**
554
554
  * <p>Contains additional parameters for the connection.</p>
@@ -559,17 +559,17 @@ export interface ConnectionHttpParameters {
559
559
  * <p>Contains additional header parameters for the connection.</p>
560
560
  * @public
561
561
  */
562
- HeaderParameters?: ConnectionHeaderParameter[];
562
+ HeaderParameters?: ConnectionHeaderParameter[] | undefined;
563
563
  /**
564
564
  * <p>Contains additional query string parameters for the connection.</p>
565
565
  * @public
566
566
  */
567
- QueryStringParameters?: ConnectionQueryStringParameter[];
567
+ QueryStringParameters?: ConnectionQueryStringParameter[] | undefined;
568
568
  /**
569
569
  * <p>Contains additional body string parameters for the connection.</p>
570
570
  * @public
571
571
  */
572
- BodyParameters?: ConnectionBodyParameter[];
572
+ BodyParameters?: ConnectionBodyParameter[] | undefined;
573
573
  }
574
574
  /**
575
575
  * <p>Contains the Basic authorization parameters to use for the connection.</p>
@@ -628,7 +628,7 @@ export interface CreateConnectionOAuthRequestParameters {
628
628
  * parameters to use for the connection.</p>
629
629
  * @public
630
630
  */
631
- OAuthHttpParameters?: ConnectionHttpParameters;
631
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
632
632
  }
633
633
  /**
634
634
  * <p>Contains the authorization parameters for the connection.</p>
@@ -640,19 +640,19 @@ export interface CreateConnectionAuthRequestParameters {
640
640
  * authorization parameters to use for the connection.</p>
641
641
  * @public
642
642
  */
643
- BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters;
643
+ BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters | undefined;
644
644
  /**
645
645
  * <p>A <code>CreateConnectionOAuthRequestParameters</code> object that contains the OAuth
646
646
  * authorization parameters to use for the connection.</p>
647
647
  * @public
648
648
  */
649
- OAuthParameters?: CreateConnectionOAuthRequestParameters;
649
+ OAuthParameters?: CreateConnectionOAuthRequestParameters | undefined;
650
650
  /**
651
651
  * <p>A <code>CreateConnectionApiKeyAuthRequestParameters</code> object that contains the API
652
652
  * key authorization parameters to use for the connection.</p>
653
653
  * @public
654
654
  */
655
- ApiKeyAuthParameters?: CreateConnectionApiKeyAuthRequestParameters;
655
+ ApiKeyAuthParameters?: CreateConnectionApiKeyAuthRequestParameters | undefined;
656
656
  /**
657
657
  * <p>A <code>ConnectionHttpParameters</code> object that contains the API key authorization
658
658
  * parameters to use for the connection. Note that if you include additional parameters for the
@@ -660,7 +660,7 @@ export interface CreateConnectionAuthRequestParameters {
660
660
  * added for the connection take precedence.</p>
661
661
  * @public
662
662
  */
663
- InvocationHttpParameters?: ConnectionHttpParameters;
663
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
664
664
  }
665
665
  /**
666
666
  * @public
@@ -675,7 +675,7 @@ export interface CreateConnectionRequest {
675
675
  * <p>A description for the connection to create.</p>
676
676
  * @public
677
677
  */
678
- Description?: string;
678
+ Description?: string | undefined;
679
679
  /**
680
680
  * <p>The type of authorization to use for the connection.</p>
681
681
  * @public
@@ -713,22 +713,22 @@ export interface CreateConnectionResponse {
713
713
  * <p>The ARN of the connection that was created by the request.</p>
714
714
  * @public
715
715
  */
716
- ConnectionArn?: string;
716
+ ConnectionArn?: string | undefined;
717
717
  /**
718
718
  * <p>The state of the connection that was created by the request.</p>
719
719
  * @public
720
720
  */
721
- ConnectionState?: ConnectionState;
721
+ ConnectionState?: ConnectionState | undefined;
722
722
  /**
723
723
  * <p>A time stamp for the time that the connection was created.</p>
724
724
  * @public
725
725
  */
726
- CreationTime?: Date;
726
+ CreationTime?: Date | undefined;
727
727
  /**
728
728
  * <p>A time stamp for the time that the connection was last updated.</p>
729
729
  * @public
730
730
  */
731
- LastModifiedTime?: Date;
731
+ LastModifiedTime?: Date | undefined;
732
732
  }
733
733
  /**
734
734
  * <p>A key-value pair associated with an Amazon Web Services resource. In EventBridge, rules and event buses
@@ -767,12 +767,12 @@ export interface CreateEventBusRequest {
767
767
  * new event bus will be matched with.</p>
768
768
  * @public
769
769
  */
770
- EventSourceName?: string;
770
+ EventSourceName?: string | undefined;
771
771
  /**
772
772
  * <p>Tags to associate with the event bus.</p>
773
773
  * @public
774
774
  */
775
- Tags?: Tag[];
775
+ Tags?: Tag[] | undefined;
776
776
  }
777
777
  /**
778
778
  * @public
@@ -782,7 +782,7 @@ export interface CreateEventBusResponse {
782
782
  * <p>The ARN of the new event bus.</p>
783
783
  * @public
784
784
  */
785
- EventBusArn?: string;
785
+ EventBusArn?: string | undefined;
786
786
  }
787
787
  /**
788
788
  * @public
@@ -813,7 +813,7 @@ export interface CreatePartnerEventSourceResponse {
813
813
  * <p>The ARN of the partner event source.</p>
814
814
  * @public
815
815
  */
816
- EventSourceArn?: string;
816
+ EventSourceArn?: string | undefined;
817
817
  }
818
818
  /**
819
819
  * @public
@@ -843,27 +843,27 @@ export interface DeauthorizeConnectionResponse {
843
843
  * <p>The ARN of the connection that authorization was removed from.</p>
844
844
  * @public
845
845
  */
846
- ConnectionArn?: string;
846
+ ConnectionArn?: string | undefined;
847
847
  /**
848
848
  * <p>The state of the connection.</p>
849
849
  * @public
850
850
  */
851
- ConnectionState?: ConnectionState;
851
+ ConnectionState?: ConnectionState | undefined;
852
852
  /**
853
853
  * <p>A time stamp for the time that the connection was created.</p>
854
854
  * @public
855
855
  */
856
- CreationTime?: Date;
856
+ CreationTime?: Date | undefined;
857
857
  /**
858
858
  * <p>A time stamp for the time that the connection was last updated.</p>
859
859
  * @public
860
860
  */
861
- LastModifiedTime?: Date;
861
+ LastModifiedTime?: Date | undefined;
862
862
  /**
863
863
  * <p>A time stamp for the time that the connection was last authorized.</p>
864
864
  * @public
865
865
  */
866
- LastAuthorizedTime?: Date;
866
+ LastAuthorizedTime?: Date | undefined;
867
867
  }
868
868
  /**
869
869
  * @public
@@ -913,29 +913,29 @@ export interface DeleteConnectionResponse {
913
913
  * <p>The ARN of the connection that was deleted.</p>
914
914
  * @public
915
915
  */
916
- ConnectionArn?: string;
916
+ ConnectionArn?: string | undefined;
917
917
  /**
918
918
  * <p>The state of the connection before it was deleted.</p>
919
919
  * @public
920
920
  */
921
- ConnectionState?: ConnectionState;
921
+ ConnectionState?: ConnectionState | undefined;
922
922
  /**
923
923
  * <p>A time stamp for the time that the connection was created.</p>
924
924
  * @public
925
925
  */
926
- CreationTime?: Date;
926
+ CreationTime?: Date | undefined;
927
927
  /**
928
928
  * <p>A time stamp for the time that the connection was last modified before it was
929
929
  * deleted.</p>
930
930
  * @public
931
931
  */
932
- LastModifiedTime?: Date;
932
+ LastModifiedTime?: Date | undefined;
933
933
  /**
934
934
  * <p>A time stamp for the time that the connection was last authorized before it wa
935
935
  * deleted.</p>
936
936
  * @public
937
937
  */
938
- LastAuthorizedTime?: Date;
938
+ LastAuthorizedTime?: Date | undefined;
939
939
  }
940
940
  /**
941
941
  * @public
@@ -976,7 +976,7 @@ export interface DeleteRuleRequest {
976
976
  * event bus is used.</p>
977
977
  * @public
978
978
  */
979
- EventBusName?: string;
979
+ EventBusName?: string | undefined;
980
980
  /**
981
981
  * <p>If this is a managed rule, created by an Amazon Web Services service on your behalf, you must specify
982
982
  * <code>Force</code> as <code>True</code> to delete the rule. This parameter is ignored for
@@ -985,7 +985,7 @@ export interface DeleteRuleRequest {
985
985
  * field of the response.</p>
986
986
  * @public
987
987
  */
988
- Force?: boolean;
988
+ Force?: boolean | undefined;
989
989
  }
990
990
  /**
991
991
  * <p>This rule was created by an Amazon Web Services service on behalf of your account. It is managed by that
@@ -1022,37 +1022,37 @@ export interface DescribeApiDestinationResponse {
1022
1022
  * <p>The ARN of the API destination retrieved.</p>
1023
1023
  * @public
1024
1024
  */
1025
- ApiDestinationArn?: string;
1025
+ ApiDestinationArn?: string | undefined;
1026
1026
  /**
1027
1027
  * <p>The name of the API destination retrieved.</p>
1028
1028
  * @public
1029
1029
  */
1030
- Name?: string;
1030
+ Name?: string | undefined;
1031
1031
  /**
1032
1032
  * <p>The description for the API destination retrieved.</p>
1033
1033
  * @public
1034
1034
  */
1035
- Description?: string;
1035
+ Description?: string | undefined;
1036
1036
  /**
1037
1037
  * <p>The state of the API destination retrieved.</p>
1038
1038
  * @public
1039
1039
  */
1040
- ApiDestinationState?: ApiDestinationState;
1040
+ ApiDestinationState?: ApiDestinationState | undefined;
1041
1041
  /**
1042
1042
  * <p>The ARN of the connection specified for the API destination retrieved.</p>
1043
1043
  * @public
1044
1044
  */
1045
- ConnectionArn?: string;
1045
+ ConnectionArn?: string | undefined;
1046
1046
  /**
1047
1047
  * <p>The URL to use to connect to the HTTP endpoint.</p>
1048
1048
  * @public
1049
1049
  */
1050
- InvocationEndpoint?: string;
1050
+ InvocationEndpoint?: string | undefined;
1051
1051
  /**
1052
1052
  * <p>The method to use to connect to the HTTP endpoint.</p>
1053
1053
  * @public
1054
1054
  */
1055
- HttpMethod?: ApiDestinationHttpMethod;
1055
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
1056
1056
  /**
1057
1057
  * <p>The maximum number of invocations per second to specified for the API destination. Note
1058
1058
  * that if you set the invocation rate maximum to a value lower the rate necessary to send all
@@ -1062,17 +1062,17 @@ export interface DescribeApiDestinationResponse {
1062
1062
  * 24 hours.</p>
1063
1063
  * @public
1064
1064
  */
1065
- InvocationRateLimitPerSecond?: number;
1065
+ InvocationRateLimitPerSecond?: number | undefined;
1066
1066
  /**
1067
1067
  * <p>A time stamp for the time that the API destination was created.</p>
1068
1068
  * @public
1069
1069
  */
1070
- CreationTime?: Date;
1070
+ CreationTime?: Date | undefined;
1071
1071
  /**
1072
1072
  * <p>A time stamp for the time that the API destination was last modified.</p>
1073
1073
  * @public
1074
1074
  */
1075
- LastModifiedTime?: Date;
1075
+ LastModifiedTime?: Date | undefined;
1076
1076
  }
1077
1077
  /**
1078
1078
  * @public
@@ -1092,57 +1092,57 @@ export interface DescribeArchiveResponse {
1092
1092
  * <p>The ARN of the archive.</p>
1093
1093
  * @public
1094
1094
  */
1095
- ArchiveArn?: string;
1095
+ ArchiveArn?: string | undefined;
1096
1096
  /**
1097
1097
  * <p>The name of the archive.</p>
1098
1098
  * @public
1099
1099
  */
1100
- ArchiveName?: string;
1100
+ ArchiveName?: string | undefined;
1101
1101
  /**
1102
1102
  * <p>The ARN of the event source associated with the archive.</p>
1103
1103
  * @public
1104
1104
  */
1105
- EventSourceArn?: string;
1105
+ EventSourceArn?: string | undefined;
1106
1106
  /**
1107
1107
  * <p>The description of the archive.</p>
1108
1108
  * @public
1109
1109
  */
1110
- Description?: string;
1110
+ Description?: string | undefined;
1111
1111
  /**
1112
1112
  * <p>The event pattern used to filter events sent to the archive.</p>
1113
1113
  * @public
1114
1114
  */
1115
- EventPattern?: string;
1115
+ EventPattern?: string | undefined;
1116
1116
  /**
1117
1117
  * <p>The state of the archive.</p>
1118
1118
  * @public
1119
1119
  */
1120
- State?: ArchiveState;
1120
+ State?: ArchiveState | undefined;
1121
1121
  /**
1122
1122
  * <p>The reason that the archive is in the state.</p>
1123
1123
  * @public
1124
1124
  */
1125
- StateReason?: string;
1125
+ StateReason?: string | undefined;
1126
1126
  /**
1127
1127
  * <p>The number of days to retain events for in the archive.</p>
1128
1128
  * @public
1129
1129
  */
1130
- RetentionDays?: number;
1130
+ RetentionDays?: number | undefined;
1131
1131
  /**
1132
1132
  * <p>The size of the archive in bytes.</p>
1133
1133
  * @public
1134
1134
  */
1135
- SizeBytes?: number;
1135
+ SizeBytes?: number | undefined;
1136
1136
  /**
1137
1137
  * <p>The number of events in the archive.</p>
1138
1138
  * @public
1139
1139
  */
1140
- EventCount?: number;
1140
+ EventCount?: number | undefined;
1141
1141
  /**
1142
1142
  * <p>The time at which the archive was created.</p>
1143
1143
  * @public
1144
1144
  */
1145
- CreationTime?: Date;
1145
+ CreationTime?: Date | undefined;
1146
1146
  }
1147
1147
  /**
1148
1148
  * @public
@@ -1165,7 +1165,7 @@ export interface ConnectionApiKeyAuthResponseParameters {
1165
1165
  * authorization.</p>
1166
1166
  * @public
1167
1167
  */
1168
- ApiKeyName?: string;
1168
+ ApiKeyName?: string | undefined;
1169
1169
  }
1170
1170
  /**
1171
1171
  * <p>Contains the authorization parameters for the connection if Basic is specified as the
@@ -1177,7 +1177,7 @@ export interface ConnectionBasicAuthResponseParameters {
1177
1177
  * <p>The user name to use for Basic authorization.</p>
1178
1178
  * @public
1179
1179
  */
1180
- Username?: string;
1180
+ Username?: string | undefined;
1181
1181
  }
1182
1182
  /**
1183
1183
  * <p>Contains the client response parameters for the connection when OAuth is specified as the
@@ -1189,7 +1189,7 @@ export interface ConnectionOAuthClientResponseParameters {
1189
1189
  * <p>The client ID associated with the response to the connection request.</p>
1190
1190
  * @public
1191
1191
  */
1192
- ClientID?: string;
1192
+ ClientID?: string | undefined;
1193
1193
  }
1194
1194
  /**
1195
1195
  * <p>Contains the response parameters when OAuth is specified as the authorization type.</p>
@@ -1201,22 +1201,22 @@ export interface ConnectionOAuthResponseParameters {
1201
1201
  * the client parameters returned when OAuth is specified as the authorization type.</p>
1202
1202
  * @public
1203
1203
  */
1204
- ClientParameters?: ConnectionOAuthClientResponseParameters;
1204
+ ClientParameters?: ConnectionOAuthClientResponseParameters | undefined;
1205
1205
  /**
1206
1206
  * <p>The URL to the HTTP endpoint that authorized the request.</p>
1207
1207
  * @public
1208
1208
  */
1209
- AuthorizationEndpoint?: string;
1209
+ AuthorizationEndpoint?: string | undefined;
1210
1210
  /**
1211
1211
  * <p>The method used to connect to the HTTP endpoint.</p>
1212
1212
  * @public
1213
1213
  */
1214
- HttpMethod?: ConnectionOAuthHttpMethod;
1214
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
1215
1215
  /**
1216
1216
  * <p>The additional HTTP parameters used for the OAuth authorization request.</p>
1217
1217
  * @public
1218
1218
  */
1219
- OAuthHttpParameters?: ConnectionHttpParameters;
1219
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
1220
1220
  }
1221
1221
  /**
1222
1222
  * <p>Contains the authorization parameters to use for the connection.</p>
@@ -1227,23 +1227,23 @@ export interface ConnectionAuthResponseParameters {
1227
1227
  * <p>The authorization parameters for Basic authorization.</p>
1228
1228
  * @public
1229
1229
  */
1230
- BasicAuthParameters?: ConnectionBasicAuthResponseParameters;
1230
+ BasicAuthParameters?: ConnectionBasicAuthResponseParameters | undefined;
1231
1231
  /**
1232
1232
  * <p>The OAuth parameters to use for authorization.</p>
1233
1233
  * @public
1234
1234
  */
1235
- OAuthParameters?: ConnectionOAuthResponseParameters;
1235
+ OAuthParameters?: ConnectionOAuthResponseParameters | undefined;
1236
1236
  /**
1237
1237
  * <p>The API Key parameters to use for authorization.</p>
1238
1238
  * @public
1239
1239
  */
1240
- ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters;
1240
+ ApiKeyAuthParameters?: ConnectionApiKeyAuthResponseParameters | undefined;
1241
1241
  /**
1242
1242
  * <p>Additional parameters for the connection that are passed through with every invocation to
1243
1243
  * the HTTP endpoint.</p>
1244
1244
  * @public
1245
1245
  */
1246
- InvocationHttpParameters?: ConnectionHttpParameters;
1246
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
1247
1247
  }
1248
1248
  /**
1249
1249
  * @public
@@ -1253,58 +1253,58 @@ export interface DescribeConnectionResponse {
1253
1253
  * <p>The ARN of the connection retrieved.</p>
1254
1254
  * @public
1255
1255
  */
1256
- ConnectionArn?: string;
1256
+ ConnectionArn?: string | undefined;
1257
1257
  /**
1258
1258
  * <p>The name of the connection retrieved.</p>
1259
1259
  * @public
1260
1260
  */
1261
- Name?: string;
1261
+ Name?: string | undefined;
1262
1262
  /**
1263
1263
  * <p>The description for the connection retrieved.</p>
1264
1264
  * @public
1265
1265
  */
1266
- Description?: string;
1266
+ Description?: string | undefined;
1267
1267
  /**
1268
1268
  * <p>The state of the connection retrieved.</p>
1269
1269
  * @public
1270
1270
  */
1271
- ConnectionState?: ConnectionState;
1271
+ ConnectionState?: ConnectionState | undefined;
1272
1272
  /**
1273
1273
  * <p>The reason that the connection is in the current connection state.</p>
1274
1274
  * @public
1275
1275
  */
1276
- StateReason?: string;
1276
+ StateReason?: string | undefined;
1277
1277
  /**
1278
1278
  * <p>The type of authorization specified for the connection.</p>
1279
1279
  * @public
1280
1280
  */
1281
- AuthorizationType?: ConnectionAuthorizationType;
1281
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
1282
1282
  /**
1283
1283
  * <p>The ARN of the secret created from the authorization parameters specified for the
1284
1284
  * connection.</p>
1285
1285
  * @public
1286
1286
  */
1287
- SecretArn?: string;
1287
+ SecretArn?: string | undefined;
1288
1288
  /**
1289
1289
  * <p>The parameters to use for authorization for the connection.</p>
1290
1290
  * @public
1291
1291
  */
1292
- AuthParameters?: ConnectionAuthResponseParameters;
1292
+ AuthParameters?: ConnectionAuthResponseParameters | undefined;
1293
1293
  /**
1294
1294
  * <p>A time stamp for the time that the connection was created.</p>
1295
1295
  * @public
1296
1296
  */
1297
- CreationTime?: Date;
1297
+ CreationTime?: Date | undefined;
1298
1298
  /**
1299
1299
  * <p>A time stamp for the time that the connection was last modified.</p>
1300
1300
  * @public
1301
1301
  */
1302
- LastModifiedTime?: Date;
1302
+ LastModifiedTime?: Date | undefined;
1303
1303
  /**
1304
1304
  * <p>A time stamp for the time that the connection was last authorized.</p>
1305
1305
  * @public
1306
1306
  */
1307
- LastAuthorizedTime?: Date;
1307
+ LastAuthorizedTime?: Date | undefined;
1308
1308
  }
1309
1309
  /**
1310
1310
  * @public
@@ -1315,7 +1315,7 @@ export interface DescribeEventBusRequest {
1315
1315
  * bus is displayed.</p>
1316
1316
  * @public
1317
1317
  */
1318
- Name?: string;
1318
+ Name?: string | undefined;
1319
1319
  }
1320
1320
  /**
1321
1321
  * @public
@@ -1325,18 +1325,18 @@ export interface DescribeEventBusResponse {
1325
1325
  * <p>The name of the event bus. Currently, this is always <code>default</code>.</p>
1326
1326
  * @public
1327
1327
  */
1328
- Name?: string;
1328
+ Name?: string | undefined;
1329
1329
  /**
1330
1330
  * <p>The Amazon Resource Name (ARN) of the account permitted to write events to the current
1331
1331
  * account.</p>
1332
1332
  * @public
1333
1333
  */
1334
- Arn?: string;
1334
+ Arn?: string | undefined;
1335
1335
  /**
1336
1336
  * <p>The policy that enables the external account to send events to your account.</p>
1337
1337
  * @public
1338
1338
  */
1339
- Policy?: string;
1339
+ Policy?: string | undefined;
1340
1340
  }
1341
1341
  /**
1342
1342
  * @public
@@ -1369,28 +1369,28 @@ export interface DescribeEventSourceResponse {
1369
1369
  * <p>The ARN of the partner event source.</p>
1370
1370
  * @public
1371
1371
  */
1372
- Arn?: string;
1372
+ Arn?: string | undefined;
1373
1373
  /**
1374
1374
  * <p>The name of the SaaS partner that created the event source.</p>
1375
1375
  * @public
1376
1376
  */
1377
- CreatedBy?: string;
1377
+ CreatedBy?: string | undefined;
1378
1378
  /**
1379
1379
  * <p>The date and time that the event source was created.</p>
1380
1380
  * @public
1381
1381
  */
1382
- CreationTime?: Date;
1382
+ CreationTime?: Date | undefined;
1383
1383
  /**
1384
1384
  * <p>The date and time that the event source will expire if you do not create a matching event
1385
1385
  * bus.</p>
1386
1386
  * @public
1387
1387
  */
1388
- ExpirationTime?: Date;
1388
+ ExpirationTime?: Date | undefined;
1389
1389
  /**
1390
1390
  * <p>The name of the partner event source.</p>
1391
1391
  * @public
1392
1392
  */
1393
- Name?: string;
1393
+ Name?: string | undefined;
1394
1394
  /**
1395
1395
  * <p>The state of the event source. If it is ACTIVE, you have already created a matching event
1396
1396
  * bus for this event source, and that event bus is active. If it is PENDING, either you haven't
@@ -1398,7 +1398,7 @@ export interface DescribeEventSourceResponse {
1398
1398
  * created a matching event bus, but the event source has since been deleted.</p>
1399
1399
  * @public
1400
1400
  */
1401
- State?: EventSourceState;
1401
+ State?: EventSourceState | undefined;
1402
1402
  }
1403
1403
  /**
1404
1404
  * @public
@@ -1418,12 +1418,12 @@ export interface DescribePartnerEventSourceResponse {
1418
1418
  * <p>The ARN of the event source.</p>
1419
1419
  * @public
1420
1420
  */
1421
- Arn?: string;
1421
+ Arn?: string | undefined;
1422
1422
  /**
1423
1423
  * <p>The name of the event source.</p>
1424
1424
  * @public
1425
1425
  */
1426
- Name?: string;
1426
+ Name?: string | undefined;
1427
1427
  }
1428
1428
  /**
1429
1429
  * @public
@@ -1450,7 +1450,7 @@ export interface ReplayDestination {
1450
1450
  * <p>A list of ARNs for rules to replay events to.</p>
1451
1451
  * @public
1452
1452
  */
1453
- FilterArns?: string[];
1453
+ FilterArns?: string[] | undefined;
1454
1454
  }
1455
1455
  /**
1456
1456
  * @public
@@ -1460,62 +1460,62 @@ export interface DescribeReplayResponse {
1460
1460
  * <p>The name of the replay.</p>
1461
1461
  * @public
1462
1462
  */
1463
- ReplayName?: string;
1463
+ ReplayName?: string | undefined;
1464
1464
  /**
1465
1465
  * <p>The ARN of the replay.</p>
1466
1466
  * @public
1467
1467
  */
1468
- ReplayArn?: string;
1468
+ ReplayArn?: string | undefined;
1469
1469
  /**
1470
1470
  * <p>The description of the replay.</p>
1471
1471
  * @public
1472
1472
  */
1473
- Description?: string;
1473
+ Description?: string | undefined;
1474
1474
  /**
1475
1475
  * <p>The current state of the replay.</p>
1476
1476
  * @public
1477
1477
  */
1478
- State?: ReplayState;
1478
+ State?: ReplayState | undefined;
1479
1479
  /**
1480
1480
  * <p>The reason that the replay is in the current state.</p>
1481
1481
  * @public
1482
1482
  */
1483
- StateReason?: string;
1483
+ StateReason?: string | undefined;
1484
1484
  /**
1485
1485
  * <p>The ARN of the archive events were replayed from.</p>
1486
1486
  * @public
1487
1487
  */
1488
- EventSourceArn?: string;
1488
+ EventSourceArn?: string | undefined;
1489
1489
  /**
1490
1490
  * <p>A <code>ReplayDestination</code> object that contains details about the replay.</p>
1491
1491
  * @public
1492
1492
  */
1493
- Destination?: ReplayDestination;
1493
+ Destination?: ReplayDestination | undefined;
1494
1494
  /**
1495
1495
  * <p>The time stamp of the first event that was last replayed from the archive.</p>
1496
1496
  * @public
1497
1497
  */
1498
- EventStartTime?: Date;
1498
+ EventStartTime?: Date | undefined;
1499
1499
  /**
1500
1500
  * <p>The time stamp for the last event that was replayed from the archive.</p>
1501
1501
  * @public
1502
1502
  */
1503
- EventEndTime?: Date;
1503
+ EventEndTime?: Date | undefined;
1504
1504
  /**
1505
1505
  * <p>The time that the event was last replayed.</p>
1506
1506
  * @public
1507
1507
  */
1508
- EventLastReplayedTime?: Date;
1508
+ EventLastReplayedTime?: Date | undefined;
1509
1509
  /**
1510
1510
  * <p>A time stamp for the time that the replay started.</p>
1511
1511
  * @public
1512
1512
  */
1513
- ReplayStartTime?: Date;
1513
+ ReplayStartTime?: Date | undefined;
1514
1514
  /**
1515
1515
  * <p>A time stamp for the time that the replay stopped.</p>
1516
1516
  * @public
1517
1517
  */
1518
- ReplayEndTime?: Date;
1518
+ ReplayEndTime?: Date | undefined;
1519
1519
  }
1520
1520
  /**
1521
1521
  * @public
@@ -1531,7 +1531,7 @@ export interface DescribeRuleRequest {
1531
1531
  * event bus is used.</p>
1532
1532
  * @public
1533
1533
  */
1534
- EventBusName?: string;
1534
+ EventBusName?: string | undefined;
1535
1535
  }
1536
1536
  /**
1537
1537
  * @public
@@ -1553,49 +1553,49 @@ export interface DescribeRuleResponse {
1553
1553
  * <p>The name of the rule.</p>
1554
1554
  * @public
1555
1555
  */
1556
- Name?: string;
1556
+ Name?: string | undefined;
1557
1557
  /**
1558
1558
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
1559
1559
  * @public
1560
1560
  */
1561
- Arn?: string;
1561
+ Arn?: string | undefined;
1562
1562
  /**
1563
1563
  * <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
1564
1564
  * Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
1565
1565
  * @public
1566
1566
  */
1567
- EventPattern?: string;
1567
+ EventPattern?: string | undefined;
1568
1568
  /**
1569
1569
  * <p>The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5 minutes)".</p>
1570
1570
  * @public
1571
1571
  */
1572
- ScheduleExpression?: string;
1572
+ ScheduleExpression?: string | undefined;
1573
1573
  /**
1574
1574
  * <p>Specifies whether the rule is enabled or disabled.</p>
1575
1575
  * @public
1576
1576
  */
1577
- State?: RuleState;
1577
+ State?: RuleState | undefined;
1578
1578
  /**
1579
1579
  * <p>The description of the rule.</p>
1580
1580
  * @public
1581
1581
  */
1582
- Description?: string;
1582
+ Description?: string | undefined;
1583
1583
  /**
1584
1584
  * <p>The Amazon Resource Name (ARN) of the IAM role associated with the rule.</p>
1585
1585
  * @public
1586
1586
  */
1587
- RoleArn?: string;
1587
+ RoleArn?: string | undefined;
1588
1588
  /**
1589
1589
  * <p>If this is a managed rule, created by an Amazon Web Services service on your behalf, this field displays
1590
1590
  * the principal name of the Amazon Web Services service that created the rule.</p>
1591
1591
  * @public
1592
1592
  */
1593
- ManagedBy?: string;
1593
+ ManagedBy?: string | undefined;
1594
1594
  /**
1595
1595
  * <p>The name of the event bus associated with the rule.</p>
1596
1596
  * @public
1597
1597
  */
1598
- EventBusName?: string;
1598
+ EventBusName?: string | undefined;
1599
1599
  /**
1600
1600
  * <p>The account ID of the user that created the rule. If you use <code>PutRule</code> to put a
1601
1601
  * rule on an event bus in another account, the other account is the owner of the rule, and the
@@ -1604,7 +1604,7 @@ export interface DescribeRuleResponse {
1604
1604
  * account.</p>
1605
1605
  * @public
1606
1606
  */
1607
- CreatedBy?: string;
1607
+ CreatedBy?: string | undefined;
1608
1608
  }
1609
1609
  /**
1610
1610
  * @public
@@ -1620,7 +1620,7 @@ export interface DisableRuleRequest {
1620
1620
  * event bus is used.</p>
1621
1621
  * @public
1622
1622
  */
1623
- EventBusName?: string;
1623
+ EventBusName?: string | undefined;
1624
1624
  }
1625
1625
  /**
1626
1626
  * @public
@@ -1636,7 +1636,7 @@ export interface EnableRuleRequest {
1636
1636
  * event bus is used.</p>
1637
1637
  * @public
1638
1638
  */
1639
- EventBusName?: string;
1639
+ EventBusName?: string | undefined;
1640
1640
  }
1641
1641
  /**
1642
1642
  * @public
@@ -1647,22 +1647,22 @@ export interface ListApiDestinationsRequest {
1647
1647
  * with the prefix are returned.</p>
1648
1648
  * @public
1649
1649
  */
1650
- NamePrefix?: string;
1650
+ NamePrefix?: string | undefined;
1651
1651
  /**
1652
1652
  * <p>The ARN of the connection specified for the API destination.</p>
1653
1653
  * @public
1654
1654
  */
1655
- ConnectionArn?: string;
1655
+ ConnectionArn?: string | undefined;
1656
1656
  /**
1657
1657
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1658
1658
  * @public
1659
1659
  */
1660
- NextToken?: string;
1660
+ NextToken?: string | undefined;
1661
1661
  /**
1662
1662
  * <p>The maximum number of API destinations to include in the response.</p>
1663
1663
  * @public
1664
1664
  */
1665
- Limit?: number;
1665
+ Limit?: number | undefined;
1666
1666
  }
1667
1667
  /**
1668
1668
  * @public
@@ -1673,12 +1673,12 @@ export interface ListApiDestinationsResponse {
1673
1673
  * destination.</p>
1674
1674
  * @public
1675
1675
  */
1676
- ApiDestinations?: ApiDestination[];
1676
+ ApiDestinations?: ApiDestination[] | undefined;
1677
1677
  /**
1678
1678
  * <p>A token you can use in a subsequent request to retrieve the next set of results.</p>
1679
1679
  * @public
1680
1680
  */
1681
- NextToken?: string;
1681
+ NextToken?: string | undefined;
1682
1682
  }
1683
1683
  /**
1684
1684
  * @public
@@ -1689,27 +1689,27 @@ export interface ListArchivesRequest {
1689
1689
  * prefix are returned.</p>
1690
1690
  * @public
1691
1691
  */
1692
- NamePrefix?: string;
1692
+ NamePrefix?: string | undefined;
1693
1693
  /**
1694
1694
  * <p>The ARN of the event source associated with the archive.</p>
1695
1695
  * @public
1696
1696
  */
1697
- EventSourceArn?: string;
1697
+ EventSourceArn?: string | undefined;
1698
1698
  /**
1699
1699
  * <p>The state of the archive.</p>
1700
1700
  * @public
1701
1701
  */
1702
- State?: ArchiveState;
1702
+ State?: ArchiveState | undefined;
1703
1703
  /**
1704
1704
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1705
1705
  * @public
1706
1706
  */
1707
- NextToken?: string;
1707
+ NextToken?: string | undefined;
1708
1708
  /**
1709
1709
  * <p>The maximum number of results to return.</p>
1710
1710
  * @public
1711
1711
  */
1712
- Limit?: number;
1712
+ Limit?: number | undefined;
1713
1713
  }
1714
1714
  /**
1715
1715
  * @public
@@ -1719,12 +1719,12 @@ export interface ListArchivesResponse {
1719
1719
  * <p>An array of <code>Archive</code> objects that include details about an archive.</p>
1720
1720
  * @public
1721
1721
  */
1722
- Archives?: Archive[];
1722
+ Archives?: Archive[] | undefined;
1723
1723
  /**
1724
1724
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1725
1725
  * @public
1726
1726
  */
1727
- NextToken?: string;
1727
+ NextToken?: string | undefined;
1728
1728
  }
1729
1729
  /**
1730
1730
  * @public
@@ -1735,22 +1735,22 @@ export interface ListConnectionsRequest {
1735
1735
  * the prefix are returned.</p>
1736
1736
  * @public
1737
1737
  */
1738
- NamePrefix?: string;
1738
+ NamePrefix?: string | undefined;
1739
1739
  /**
1740
1740
  * <p>The state of the connection.</p>
1741
1741
  * @public
1742
1742
  */
1743
- ConnectionState?: ConnectionState;
1743
+ ConnectionState?: ConnectionState | undefined;
1744
1744
  /**
1745
1745
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1746
1746
  * @public
1747
1747
  */
1748
- NextToken?: string;
1748
+ NextToken?: string | undefined;
1749
1749
  /**
1750
1750
  * <p>The maximum number of connections to return.</p>
1751
1751
  * @public
1752
1752
  */
1753
- Limit?: number;
1753
+ Limit?: number | undefined;
1754
1754
  }
1755
1755
  /**
1756
1756
  * <p>Contains information about a connection.</p>
@@ -1761,42 +1761,42 @@ export interface Connection {
1761
1761
  * <p>The ARN of the connection.</p>
1762
1762
  * @public
1763
1763
  */
1764
- ConnectionArn?: string;
1764
+ ConnectionArn?: string | undefined;
1765
1765
  /**
1766
1766
  * <p>The name of the connection.</p>
1767
1767
  * @public
1768
1768
  */
1769
- Name?: string;
1769
+ Name?: string | undefined;
1770
1770
  /**
1771
1771
  * <p>The state of the connection.</p>
1772
1772
  * @public
1773
1773
  */
1774
- ConnectionState?: ConnectionState;
1774
+ ConnectionState?: ConnectionState | undefined;
1775
1775
  /**
1776
1776
  * <p>The reason that the connection is in the connection state.</p>
1777
1777
  * @public
1778
1778
  */
1779
- StateReason?: string;
1779
+ StateReason?: string | undefined;
1780
1780
  /**
1781
1781
  * <p>The authorization type specified for the connection.</p>
1782
1782
  * @public
1783
1783
  */
1784
- AuthorizationType?: ConnectionAuthorizationType;
1784
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
1785
1785
  /**
1786
1786
  * <p>A time stamp for the time that the connection was created.</p>
1787
1787
  * @public
1788
1788
  */
1789
- CreationTime?: Date;
1789
+ CreationTime?: Date | undefined;
1790
1790
  /**
1791
1791
  * <p>A time stamp for the time that the connection was last modified.</p>
1792
1792
  * @public
1793
1793
  */
1794
- LastModifiedTime?: Date;
1794
+ LastModifiedTime?: Date | undefined;
1795
1795
  /**
1796
1796
  * <p>A time stamp for the time that the connection was last authorized.</p>
1797
1797
  * @public
1798
1798
  */
1799
- LastAuthorizedTime?: Date;
1799
+ LastAuthorizedTime?: Date | undefined;
1800
1800
  }
1801
1801
  /**
1802
1802
  * @public
@@ -1806,12 +1806,12 @@ export interface ListConnectionsResponse {
1806
1806
  * <p>An array of connections objects that include details about the connections.</p>
1807
1807
  * @public
1808
1808
  */
1809
- Connections?: Connection[];
1809
+ Connections?: Connection[] | undefined;
1810
1810
  /**
1811
1811
  * <p>A token you can use in a subsequent request to retrieve the next set of results.</p>
1812
1812
  * @public
1813
1813
  */
1814
- NextToken?: string;
1814
+ NextToken?: string | undefined;
1815
1815
  }
1816
1816
  /**
1817
1817
  * @public
@@ -1822,19 +1822,19 @@ export interface ListEventBusesRequest {
1822
1822
  * the specified prefix.</p>
1823
1823
  * @public
1824
1824
  */
1825
- NamePrefix?: string;
1825
+ NamePrefix?: string | undefined;
1826
1826
  /**
1827
1827
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1828
1828
  * @public
1829
1829
  */
1830
- NextToken?: string;
1830
+ NextToken?: string | undefined;
1831
1831
  /**
1832
1832
  * <p>Specifying this limits the number of results returned by this operation. The operation
1833
1833
  * also returns a NextToken which you can use in a subsequent operation to retrieve the next set
1834
1834
  * of results.</p>
1835
1835
  * @public
1836
1836
  */
1837
- Limit?: number;
1837
+ Limit?: number | undefined;
1838
1838
  }
1839
1839
  /**
1840
1840
  * <p>An event bus receives events from a source and routes them to rules associated with that
@@ -1849,18 +1849,18 @@ export interface EventBus {
1849
1849
  * <p>The name of the event bus.</p>
1850
1850
  * @public
1851
1851
  */
1852
- Name?: string;
1852
+ Name?: string | undefined;
1853
1853
  /**
1854
1854
  * <p>The ARN of the event bus.</p>
1855
1855
  * @public
1856
1856
  */
1857
- Arn?: string;
1857
+ Arn?: string | undefined;
1858
1858
  /**
1859
1859
  * <p>The permissions policy of the event bus, describing which other Amazon Web Services accounts can write
1860
1860
  * events to this event bus.</p>
1861
1861
  * @public
1862
1862
  */
1863
- Policy?: string;
1863
+ Policy?: string | undefined;
1864
1864
  }
1865
1865
  /**
1866
1866
  * @public
@@ -1870,12 +1870,12 @@ export interface ListEventBusesResponse {
1870
1870
  * <p>This list of event buses.</p>
1871
1871
  * @public
1872
1872
  */
1873
- EventBuses?: EventBus[];
1873
+ EventBuses?: EventBus[] | undefined;
1874
1874
  /**
1875
1875
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
1876
1876
  * @public
1877
1877
  */
1878
- NextToken?: string;
1878
+ NextToken?: string | undefined;
1879
1879
  }
1880
1880
  /**
1881
1881
  * @public
@@ -1886,19 +1886,19 @@ export interface ListEventSourcesRequest {
1886
1886
  * start with the specified prefix.</p>
1887
1887
  * @public
1888
1888
  */
1889
- NamePrefix?: string;
1889
+ NamePrefix?: string | undefined;
1890
1890
  /**
1891
1891
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
1892
1892
  * @public
1893
1893
  */
1894
- NextToken?: string;
1894
+ NextToken?: string | undefined;
1895
1895
  /**
1896
1896
  * <p>Specifying this limits the number of results returned by this operation. The operation
1897
1897
  * also returns a NextToken which you can use in a subsequent operation to retrieve the next set
1898
1898
  * of results.</p>
1899
1899
  * @public
1900
1900
  */
1901
- Limit?: number;
1901
+ Limit?: number | undefined;
1902
1902
  }
1903
1903
  /**
1904
1904
  * <p>A partner event source is created by an SaaS partner. If a customer creates a partner
@@ -1911,28 +1911,28 @@ export interface EventSource {
1911
1911
  * <p>The ARN of the event source.</p>
1912
1912
  * @public
1913
1913
  */
1914
- Arn?: string;
1914
+ Arn?: string | undefined;
1915
1915
  /**
1916
1916
  * <p>The name of the partner that created the event source.</p>
1917
1917
  * @public
1918
1918
  */
1919
- CreatedBy?: string;
1919
+ CreatedBy?: string | undefined;
1920
1920
  /**
1921
1921
  * <p>The date and time the event source was created.</p>
1922
1922
  * @public
1923
1923
  */
1924
- CreationTime?: Date;
1924
+ CreationTime?: Date | undefined;
1925
1925
  /**
1926
1926
  * <p>The date and time that the event source will expire, if the Amazon Web Services account doesn't create a
1927
1927
  * matching event bus for it.</p>
1928
1928
  * @public
1929
1929
  */
1930
- ExpirationTime?: Date;
1930
+ ExpirationTime?: Date | undefined;
1931
1931
  /**
1932
1932
  * <p>The name of the event source.</p>
1933
1933
  * @public
1934
1934
  */
1935
- Name?: string;
1935
+ Name?: string | undefined;
1936
1936
  /**
1937
1937
  * <p>The state of the event source. If it is ACTIVE, you have already created a matching event
1938
1938
  * bus for this event source, and that event bus is active. If it is PENDING, either you haven't
@@ -1940,7 +1940,7 @@ export interface EventSource {
1940
1940
  * created a matching event bus, but the event source has since been deleted.</p>
1941
1941
  * @public
1942
1942
  */
1943
- State?: EventSourceState;
1943
+ State?: EventSourceState | undefined;
1944
1944
  }
1945
1945
  /**
1946
1946
  * @public
@@ -1950,12 +1950,12 @@ export interface ListEventSourcesResponse {
1950
1950
  * <p>The list of event sources.</p>
1951
1951
  * @public
1952
1952
  */
1953
- EventSources?: EventSource[];
1953
+ EventSources?: EventSource[] | undefined;
1954
1954
  /**
1955
1955
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
1956
1956
  * @public
1957
1957
  */
1958
- NextToken?: string;
1958
+ NextToken?: string | undefined;
1959
1959
  }
1960
1960
  /**
1961
1961
  * @public
@@ -1971,14 +1971,14 @@ export interface ListPartnerEventSourceAccountsRequest {
1971
1971
  * next set of results.</p>
1972
1972
  * @public
1973
1973
  */
1974
- NextToken?: string;
1974
+ NextToken?: string | undefined;
1975
1975
  /**
1976
1976
  * <p>Specifying this limits the number of results returned by this operation. The operation
1977
1977
  * also returns a NextToken which you can use in a subsequent operation to retrieve the next set
1978
1978
  * of results.</p>
1979
1979
  * @public
1980
1980
  */
1981
- Limit?: number;
1981
+ Limit?: number | undefined;
1982
1982
  }
1983
1983
  /**
1984
1984
  * <p>The Amazon Web Services account that a partner event source has been offered to.</p>
@@ -1989,18 +1989,18 @@ export interface PartnerEventSourceAccount {
1989
1989
  * <p>The Amazon Web Services account ID that the partner event source was offered to.</p>
1990
1990
  * @public
1991
1991
  */
1992
- Account?: string;
1992
+ Account?: string | undefined;
1993
1993
  /**
1994
1994
  * <p>The date and time the event source was created.</p>
1995
1995
  * @public
1996
1996
  */
1997
- CreationTime?: Date;
1997
+ CreationTime?: Date | undefined;
1998
1998
  /**
1999
1999
  * <p>The date and time that the event source will expire, if the Amazon Web Services account doesn't create a
2000
2000
  * matching event bus for it.</p>
2001
2001
  * @public
2002
2002
  */
2003
- ExpirationTime?: Date;
2003
+ ExpirationTime?: Date | undefined;
2004
2004
  /**
2005
2005
  * <p>The state of the event source. If it is ACTIVE, you have already created a matching event
2006
2006
  * bus for this event source, and that event bus is active. If it is PENDING, either you haven't
@@ -2008,7 +2008,7 @@ export interface PartnerEventSourceAccount {
2008
2008
  * created a matching event bus, but the event source has since been deleted.</p>
2009
2009
  * @public
2010
2010
  */
2011
- State?: EventSourceState;
2011
+ State?: EventSourceState | undefined;
2012
2012
  }
2013
2013
  /**
2014
2014
  * @public
@@ -2018,12 +2018,12 @@ export interface ListPartnerEventSourceAccountsResponse {
2018
2018
  * <p>The list of partner event sources returned by the operation.</p>
2019
2019
  * @public
2020
2020
  */
2021
- PartnerEventSourceAccounts?: PartnerEventSourceAccount[];
2021
+ PartnerEventSourceAccounts?: PartnerEventSourceAccount[] | undefined;
2022
2022
  /**
2023
2023
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2024
2024
  * @public
2025
2025
  */
2026
- NextToken?: string;
2026
+ NextToken?: string | undefined;
2027
2027
  }
2028
2028
  /**
2029
2029
  * @public
@@ -2040,14 +2040,14 @@ export interface ListPartnerEventSourcesRequest {
2040
2040
  * next set of results.</p>
2041
2041
  * @public
2042
2042
  */
2043
- NextToken?: string;
2043
+ NextToken?: string | undefined;
2044
2044
  /**
2045
2045
  * <p>pecifying this limits the number of results returned by this operation. The operation also
2046
2046
  * returns a NextToken which you can use in a subsequent operation to retrieve the next set of
2047
2047
  * results.</p>
2048
2048
  * @public
2049
2049
  */
2050
- Limit?: number;
2050
+ Limit?: number | undefined;
2051
2051
  }
2052
2052
  /**
2053
2053
  * <p>A partner event source is created by an SaaS partner. If a customer creates a partner
@@ -2060,12 +2060,12 @@ export interface PartnerEventSource {
2060
2060
  * <p>The ARN of the partner event source.</p>
2061
2061
  * @public
2062
2062
  */
2063
- Arn?: string;
2063
+ Arn?: string | undefined;
2064
2064
  /**
2065
2065
  * <p>The name of the partner event source.</p>
2066
2066
  * @public
2067
2067
  */
2068
- Name?: string;
2068
+ Name?: string | undefined;
2069
2069
  }
2070
2070
  /**
2071
2071
  * @public
@@ -2075,12 +2075,12 @@ export interface ListPartnerEventSourcesResponse {
2075
2075
  * <p>The list of partner event sources returned by the operation.</p>
2076
2076
  * @public
2077
2077
  */
2078
- PartnerEventSources?: PartnerEventSource[];
2078
+ PartnerEventSources?: PartnerEventSource[] | undefined;
2079
2079
  /**
2080
2080
  * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2081
2081
  * @public
2082
2082
  */
2083
- NextToken?: string;
2083
+ NextToken?: string | undefined;
2084
2084
  }
2085
2085
  /**
2086
2086
  * @public
@@ -2091,27 +2091,27 @@ export interface ListReplaysRequest {
2091
2091
  * are returned.</p>
2092
2092
  * @public
2093
2093
  */
2094
- NamePrefix?: string;
2094
+ NamePrefix?: string | undefined;
2095
2095
  /**
2096
2096
  * <p>The state of the replay.</p>
2097
2097
  * @public
2098
2098
  */
2099
- State?: ReplayState;
2099
+ State?: ReplayState | undefined;
2100
2100
  /**
2101
2101
  * <p>The ARN of the archive from which the events are replayed.</p>
2102
2102
  * @public
2103
2103
  */
2104
- EventSourceArn?: string;
2104
+ EventSourceArn?: string | undefined;
2105
2105
  /**
2106
2106
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2107
2107
  * @public
2108
2108
  */
2109
- NextToken?: string;
2109
+ NextToken?: string | undefined;
2110
2110
  /**
2111
2111
  * <p>The maximum number of replays to retrieve.</p>
2112
2112
  * @public
2113
2113
  */
2114
- Limit?: number;
2114
+ Limit?: number | undefined;
2115
2115
  }
2116
2116
  /**
2117
2117
  * <p>A <code>Replay</code> object that contains details about a replay.</p>
@@ -2122,49 +2122,49 @@ export interface Replay {
2122
2122
  * <p>The name of the replay.</p>
2123
2123
  * @public
2124
2124
  */
2125
- ReplayName?: string;
2125
+ ReplayName?: string | undefined;
2126
2126
  /**
2127
2127
  * <p>The ARN of the archive to replay event from.</p>
2128
2128
  * @public
2129
2129
  */
2130
- EventSourceArn?: string;
2130
+ EventSourceArn?: string | undefined;
2131
2131
  /**
2132
2132
  * <p>The current state of the replay.</p>
2133
2133
  * @public
2134
2134
  */
2135
- State?: ReplayState;
2135
+ State?: ReplayState | undefined;
2136
2136
  /**
2137
2137
  * <p>A description of why the replay is in the current state.</p>
2138
2138
  * @public
2139
2139
  */
2140
- StateReason?: string;
2140
+ StateReason?: string | undefined;
2141
2141
  /**
2142
2142
  * <p>A time stamp for the time to start replaying events. This is determined by the time in the
2143
2143
  * event as described in <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_PutEventsRequestEntry.html#eventbridge-Type-PutEventsRequestEntry-Time">Time</a>.</p>
2144
2144
  * @public
2145
2145
  */
2146
- EventStartTime?: Date;
2146
+ EventStartTime?: Date | undefined;
2147
2147
  /**
2148
2148
  * <p>A time stamp for the time to start replaying events. Any event with a creation time prior
2149
2149
  * to the <code>EventEndTime</code> specified is replayed.</p>
2150
2150
  * @public
2151
2151
  */
2152
- EventEndTime?: Date;
2152
+ EventEndTime?: Date | undefined;
2153
2153
  /**
2154
2154
  * <p>A time stamp for the time that the last event was replayed.</p>
2155
2155
  * @public
2156
2156
  */
2157
- EventLastReplayedTime?: Date;
2157
+ EventLastReplayedTime?: Date | undefined;
2158
2158
  /**
2159
2159
  * <p>A time stamp for the time that the replay started.</p>
2160
2160
  * @public
2161
2161
  */
2162
- ReplayStartTime?: Date;
2162
+ ReplayStartTime?: Date | undefined;
2163
2163
  /**
2164
2164
  * <p>A time stamp for the time that the replay completed.</p>
2165
2165
  * @public
2166
2166
  */
2167
- ReplayEndTime?: Date;
2167
+ ReplayEndTime?: Date | undefined;
2168
2168
  }
2169
2169
  /**
2170
2170
  * @public
@@ -2174,12 +2174,12 @@ export interface ListReplaysResponse {
2174
2174
  * <p>An array of <code>Replay</code> objects that contain information about the replay.</p>
2175
2175
  * @public
2176
2176
  */
2177
- Replays?: Replay[];
2177
+ Replays?: Replay[] | undefined;
2178
2178
  /**
2179
2179
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2180
2180
  * @public
2181
2181
  */
2182
- NextToken?: string;
2182
+ NextToken?: string | undefined;
2183
2183
  }
2184
2184
  /**
2185
2185
  * @public
@@ -2195,17 +2195,17 @@ export interface ListRuleNamesByTargetRequest {
2195
2195
  * bus is used.</p>
2196
2196
  * @public
2197
2197
  */
2198
- EventBusName?: string;
2198
+ EventBusName?: string | undefined;
2199
2199
  /**
2200
2200
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2201
2201
  * @public
2202
2202
  */
2203
- NextToken?: string;
2203
+ NextToken?: string | undefined;
2204
2204
  /**
2205
2205
  * <p>The maximum number of results to return.</p>
2206
2206
  * @public
2207
2207
  */
2208
- Limit?: number;
2208
+ Limit?: number | undefined;
2209
2209
  }
2210
2210
  /**
2211
2211
  * @public
@@ -2215,13 +2215,13 @@ export interface ListRuleNamesByTargetResponse {
2215
2215
  * <p>The names of the rules that can invoke the given target.</p>
2216
2216
  * @public
2217
2217
  */
2218
- RuleNames?: string[];
2218
+ RuleNames?: string[] | undefined;
2219
2219
  /**
2220
2220
  * <p>Indicates whether there are additional results to retrieve. If there are no more results,
2221
2221
  * the value is null.</p>
2222
2222
  * @public
2223
2223
  */
2224
- NextToken?: string;
2224
+ NextToken?: string | undefined;
2225
2225
  }
2226
2226
  /**
2227
2227
  * @public
@@ -2231,23 +2231,23 @@ export interface ListRulesRequest {
2231
2231
  * <p>The prefix matching the rule name.</p>
2232
2232
  * @public
2233
2233
  */
2234
- NamePrefix?: string;
2234
+ NamePrefix?: string | undefined;
2235
2235
  /**
2236
2236
  * <p>The name or ARN of the event bus to list the rules for. If you omit this, the default
2237
2237
  * event bus is used.</p>
2238
2238
  * @public
2239
2239
  */
2240
- EventBusName?: string;
2240
+ EventBusName?: string | undefined;
2241
2241
  /**
2242
2242
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2243
2243
  * @public
2244
2244
  */
2245
- NextToken?: string;
2245
+ NextToken?: string | undefined;
2246
2246
  /**
2247
2247
  * <p>The maximum number of results to return.</p>
2248
2248
  * @public
2249
2249
  */
2250
- Limit?: number;
2250
+ Limit?: number | undefined;
2251
2251
  }
2252
2252
  /**
2253
2253
  * <p>Contains information about a rule in Amazon EventBridge.</p>
@@ -2258,33 +2258,33 @@ export interface Rule {
2258
2258
  * <p>The name of the rule.</p>
2259
2259
  * @public
2260
2260
  */
2261
- Name?: string;
2261
+ Name?: string | undefined;
2262
2262
  /**
2263
2263
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
2264
2264
  * @public
2265
2265
  */
2266
- Arn?: string;
2266
+ Arn?: string | undefined;
2267
2267
  /**
2268
2268
  * <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
2269
2269
  * Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
2270
2270
  * @public
2271
2271
  */
2272
- EventPattern?: string;
2272
+ EventPattern?: string | undefined;
2273
2273
  /**
2274
2274
  * <p>The state of the rule.</p>
2275
2275
  * @public
2276
2276
  */
2277
- State?: RuleState;
2277
+ State?: RuleState | undefined;
2278
2278
  /**
2279
2279
  * <p>The description of the rule.</p>
2280
2280
  * @public
2281
2281
  */
2282
- Description?: string;
2282
+ Description?: string | undefined;
2283
2283
  /**
2284
2284
  * <p>The scheduling expression. For example, "cron(0 20 * * ? *)", "rate(5 minutes)". For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-create-rule-schedule.html">Creating an Amazon EventBridge rule that runs on a schedule</a>.</p>
2285
2285
  * @public
2286
2286
  */
2287
- ScheduleExpression?: string;
2287
+ ScheduleExpression?: string | undefined;
2288
2288
  /**
2289
2289
  * <p>The Amazon Resource Name (ARN) of the role that is used for target invocation.</p>
2290
2290
  * <p>If you're setting an event bus in another account as the target and that account granted
@@ -2293,19 +2293,19 @@ export interface Rule {
2293
2293
  * structure, instead of here in this parameter.</p>
2294
2294
  * @public
2295
2295
  */
2296
- RoleArn?: string;
2296
+ RoleArn?: string | undefined;
2297
2297
  /**
2298
2298
  * <p>If the rule was created on behalf of your account by an Amazon Web Services service, this field displays
2299
2299
  * the principal name of the service that created the rule.</p>
2300
2300
  * @public
2301
2301
  */
2302
- ManagedBy?: string;
2302
+ ManagedBy?: string | undefined;
2303
2303
  /**
2304
2304
  * <p>The name or ARN of the event bus associated with the rule. If you omit this, the default
2305
2305
  * event bus is used.</p>
2306
2306
  * @public
2307
2307
  */
2308
- EventBusName?: string;
2308
+ EventBusName?: string | undefined;
2309
2309
  }
2310
2310
  /**
2311
2311
  * @public
@@ -2315,13 +2315,13 @@ export interface ListRulesResponse {
2315
2315
  * <p>The rules that match the specified criteria.</p>
2316
2316
  * @public
2317
2317
  */
2318
- Rules?: Rule[];
2318
+ Rules?: Rule[] | undefined;
2319
2319
  /**
2320
2320
  * <p>Indicates whether there are additional results to retrieve. If there are no more results,
2321
2321
  * the value is null.</p>
2322
2322
  * @public
2323
2323
  */
2324
- NextToken?: string;
2324
+ NextToken?: string | undefined;
2325
2325
  }
2326
2326
  /**
2327
2327
  * @public
@@ -2341,7 +2341,7 @@ export interface ListTagsForResourceResponse {
2341
2341
  * <p>The list of tag keys and values associated with the resource you specified</p>
2342
2342
  * @public
2343
2343
  */
2344
- Tags?: Tag[];
2344
+ Tags?: Tag[] | undefined;
2345
2345
  }
2346
2346
  /**
2347
2347
  * @public
@@ -2357,17 +2357,17 @@ export interface ListTargetsByRuleRequest {
2357
2357
  * event bus is used.</p>
2358
2358
  * @public
2359
2359
  */
2360
- EventBusName?: string;
2360
+ EventBusName?: string | undefined;
2361
2361
  /**
2362
2362
  * <p>The token returned by a previous call to retrieve the next set of results.</p>
2363
2363
  * @public
2364
2364
  */
2365
- NextToken?: string;
2365
+ NextToken?: string | undefined;
2366
2366
  /**
2367
2367
  * <p>The maximum number of results to return.</p>
2368
2368
  * @public
2369
2369
  */
2370
- Limit?: number;
2370
+ Limit?: number | undefined;
2371
2371
  }
2372
2372
  /**
2373
2373
  * <p>The array properties for the submitted job, such as the size of the array. The array size
@@ -2381,7 +2381,7 @@ export interface BatchArrayProperties {
2381
2381
  * and 10,000.</p>
2382
2382
  * @public
2383
2383
  */
2384
- Size?: number;
2384
+ Size?: number | undefined;
2385
2385
  }
2386
2386
  /**
2387
2387
  * <p>The retry strategy to use for failed jobs, if the target is an Batch job. If you
@@ -2394,7 +2394,7 @@ export interface BatchRetryStrategy {
2394
2394
  * <p>The number of times to attempt to retry, if the job fails. Valid values are 1–10.</p>
2395
2395
  * @public
2396
2396
  */
2397
- Attempts?: number;
2397
+ Attempts?: number | undefined;
2398
2398
  }
2399
2399
  /**
2400
2400
  * <p>The custom parameters to be used when the target is an Batch job.</p>
@@ -2418,7 +2418,7 @@ export interface BatchParameters {
2418
2418
  * job. This parameter is used only if the target is an Batch job.</p>
2419
2419
  * @public
2420
2420
  */
2421
- ArrayProperties?: BatchArrayProperties;
2421
+ ArrayProperties?: BatchArrayProperties | undefined;
2422
2422
  /**
2423
2423
  * <p>The retry strategy to use for failed jobs, if the target is an Batch job. The retry
2424
2424
  * strategy is the number of times to retry the failed job execution. Valid values are 1–10. When
@@ -2426,7 +2426,7 @@ export interface BatchParameters {
2426
2426
  * definition.</p>
2427
2427
  * @public
2428
2428
  */
2429
- RetryStrategy?: BatchRetryStrategy;
2429
+ RetryStrategy?: BatchRetryStrategy | undefined;
2430
2430
  }
2431
2431
  /**
2432
2432
  * <p>A <code>DeadLetterConfig</code> object that contains information about a dead-letter queue
@@ -2438,7 +2438,7 @@ export interface DeadLetterConfig {
2438
2438
  * <p>The ARN of the SQS queue specified as the target for the dead-letter queue.</p>
2439
2439
  * @public
2440
2440
  */
2441
- Arn?: string;
2441
+ Arn?: string | undefined;
2442
2442
  }
2443
2443
  /**
2444
2444
  * <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>
@@ -2456,14 +2456,14 @@ export interface CapacityProviderStrategyItem {
2456
2456
  * after the base value, if defined, is satisfied.</p>
2457
2457
  * @public
2458
2458
  */
2459
- weight?: number;
2459
+ weight?: number | undefined;
2460
2460
  /**
2461
2461
  * <p>The base value designates how many tasks, at a minimum, to run on the specified capacity
2462
2462
  * provider. Only one capacity provider in a capacity provider strategy can have a base defined.
2463
2463
  * If no value is specified, the default value of 0 is used. </p>
2464
2464
  * @public
2465
2465
  */
2466
- base?: number;
2466
+ base?: number | undefined;
2467
2467
  }
2468
2468
  /**
2469
2469
  * @public
@@ -2497,14 +2497,14 @@ export interface AwsVpcConfiguration {
2497
2497
  * security group, the default security group for the VPC is used.</p>
2498
2498
  * @public
2499
2499
  */
2500
- SecurityGroups?: string[];
2500
+ SecurityGroups?: string[] | undefined;
2501
2501
  /**
2502
2502
  * <p>Specifies whether the task's elastic network interface receives a public IP address. You
2503
2503
  * can specify <code>ENABLED</code> only when <code>LaunchType</code> in
2504
2504
  * <code>EcsParameters</code> is set to <code>FARGATE</code>.</p>
2505
2505
  * @public
2506
2506
  */
2507
- AssignPublicIp?: AssignPublicIp;
2507
+ AssignPublicIp?: AssignPublicIp | undefined;
2508
2508
  }
2509
2509
  /**
2510
2510
  * <p>This structure specifies the network configuration for an ECS task.</p>
@@ -2517,7 +2517,7 @@ export interface NetworkConfiguration {
2517
2517
  * use the <code>awsvpc</code> network mode.</p>
2518
2518
  * @public
2519
2519
  */
2520
- awsvpcConfiguration?: AwsVpcConfiguration;
2520
+ awsvpcConfiguration?: AwsVpcConfiguration | undefined;
2521
2521
  }
2522
2522
  /**
2523
2523
  * @public
@@ -2543,14 +2543,14 @@ export interface PlacementConstraint {
2543
2543
  * a group of valid candidates. </p>
2544
2544
  * @public
2545
2545
  */
2546
- type?: PlacementConstraintType;
2546
+ type?: PlacementConstraintType | undefined;
2547
2547
  /**
2548
2548
  * <p>A cluster query language expression to apply to the constraint. You cannot specify an
2549
2549
  * 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.
2550
2550
  * </p>
2551
2551
  * @public
2552
2552
  */
2553
- expression?: string;
2553
+ expression?: string | undefined;
2554
2554
  }
2555
2555
  /**
2556
2556
  * @public
@@ -2580,7 +2580,7 @@ export interface PlacementStrategy {
2580
2580
  * the least amount of remaining memory (but still enough to run the task). </p>
2581
2581
  * @public
2582
2582
  */
2583
- type?: PlacementStrategyType;
2583
+ type?: PlacementStrategyType | undefined;
2584
2584
  /**
2585
2585
  * <p>The field to apply the placement strategy against. For the spread placement strategy,
2586
2586
  * valid values are instanceId (or host, which has the same effect), or any platform or custom
@@ -2589,7 +2589,7 @@ export interface PlacementStrategy {
2589
2589
  * strategy, this field is not used. </p>
2590
2590
  * @public
2591
2591
  */
2592
- field?: string;
2592
+ field?: string | undefined;
2593
2593
  }
2594
2594
  /**
2595
2595
  * @public
@@ -2617,7 +2617,7 @@ export interface EcsParameters {
2617
2617
  * 1.</p>
2618
2618
  * @public
2619
2619
  */
2620
- TaskCount?: number;
2620
+ TaskCount?: number | undefined;
2621
2621
  /**
2622
2622
  * <p>Specifies the launch type on which your task is running. The launch type that you specify
2623
2623
  * here must match one of the launch type (compatibilities) of the target task. The
@@ -2626,7 +2626,7 @@ export interface EcsParameters {
2626
2626
  * the <i>Amazon Elastic Container Service Developer Guide</i>.</p>
2627
2627
  * @public
2628
2628
  */
2629
- LaunchType?: LaunchType;
2629
+ LaunchType?: LaunchType | undefined;
2630
2630
  /**
2631
2631
  * <p>Use this structure if the Amazon ECS task uses the <code>awsvpc</code> network mode. This
2632
2632
  * structure specifies the VPC subnets and security groups associated with the task, and whether
@@ -2637,7 +2637,7 @@ export interface EcsParameters {
2637
2637
  * <code>awsvpc</code> network mode, the task fails.</p>
2638
2638
  * @public
2639
2639
  */
2640
- NetworkConfiguration?: NetworkConfiguration;
2640
+ NetworkConfiguration?: NetworkConfiguration | undefined;
2641
2641
  /**
2642
2642
  * <p>Specifies the platform version for the task. Specify only the numeric portion of the
2643
2643
  * platform version, such as <code>1.1.0</code>.</p>
@@ -2647,12 +2647,12 @@ export interface EcsParameters {
2647
2647
  * Guide</i>.</p>
2648
2648
  * @public
2649
2649
  */
2650
- PlatformVersion?: string;
2650
+ PlatformVersion?: string | undefined;
2651
2651
  /**
2652
2652
  * <p>Specifies an ECS task group for the task. The maximum length is 255 characters.</p>
2653
2653
  * @public
2654
2654
  */
2655
- Group?: string;
2655
+ Group?: string | undefined;
2656
2656
  /**
2657
2657
  * <p>The capacity provider strategy to use for the task.</p>
2658
2658
  * <p>If a <code>capacityProviderStrategy</code> is specified, the <code>launchType</code>
@@ -2660,52 +2660,52 @@ export interface EcsParameters {
2660
2660
  * specified, the <code>defaultCapacityProviderStrategy</code> for the cluster is used. </p>
2661
2661
  * @public
2662
2662
  */
2663
- CapacityProviderStrategy?: CapacityProviderStrategyItem[];
2663
+ CapacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
2664
2664
  /**
2665
2665
  * <p>Specifies whether to enable Amazon ECS managed tags for the task. For more information,
2666
2666
  * see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-using-tags.html">Tagging Your Amazon ECS Resources</a> in the Amazon Elastic Container Service Developer
2667
2667
  * Guide. </p>
2668
2668
  * @public
2669
2669
  */
2670
- EnableECSManagedTags?: boolean;
2670
+ EnableECSManagedTags?: boolean | undefined;
2671
2671
  /**
2672
2672
  * <p>Whether or not to enable the execute command functionality for the containers in this
2673
2673
  * task. If true, this enables execute command functionality on all containers in the
2674
2674
  * task.</p>
2675
2675
  * @public
2676
2676
  */
2677
- EnableExecuteCommand?: boolean;
2677
+ EnableExecuteCommand?: boolean | undefined;
2678
2678
  /**
2679
2679
  * <p>An array of placement constraint objects to use for the task. You can specify up to 10
2680
2680
  * constraints per task (including constraints in the task definition and those specified at
2681
2681
  * runtime).</p>
2682
2682
  * @public
2683
2683
  */
2684
- PlacementConstraints?: PlacementConstraint[];
2684
+ PlacementConstraints?: PlacementConstraint[] | undefined;
2685
2685
  /**
2686
2686
  * <p>The placement strategy objects to use for the task. You can specify a maximum of five
2687
2687
  * strategy rules per task. </p>
2688
2688
  * @public
2689
2689
  */
2690
- PlacementStrategy?: PlacementStrategy[];
2690
+ PlacementStrategy?: PlacementStrategy[] | undefined;
2691
2691
  /**
2692
2692
  * <p>Specifies whether to propagate the tags from the task definition to the task. If no value
2693
2693
  * is specified, the tags are not propagated. Tags can only be propagated to the task during task
2694
2694
  * creation. To add tags to a task after task creation, use the TagResource API action. </p>
2695
2695
  * @public
2696
2696
  */
2697
- PropagateTags?: PropagateTags;
2697
+ PropagateTags?: PropagateTags | undefined;
2698
2698
  /**
2699
2699
  * <p>The reference ID to use for the task.</p>
2700
2700
  * @public
2701
2701
  */
2702
- ReferenceId?: string;
2702
+ ReferenceId?: string | undefined;
2703
2703
  /**
2704
2704
  * <p>The metadata that you apply to the task to help you categorize and organize them. Each tag
2705
2705
  * 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>
2706
2706
  * @public
2707
2707
  */
2708
- Tags?: Tag[];
2708
+ Tags?: Tag[] | undefined;
2709
2709
  }
2710
2710
  /**
2711
2711
  * <p>These are custom parameter to be used when the target is an API Gateway REST APIs or
@@ -2720,19 +2720,19 @@ export interface HttpParameters {
2720
2720
  * ApiDestination path wildcards ("*").</p>
2721
2721
  * @public
2722
2722
  */
2723
- PathParameterValues?: string[];
2723
+ PathParameterValues?: string[] | undefined;
2724
2724
  /**
2725
2725
  * <p>The headers that need to be sent as part of request invoking the API Gateway REST API or
2726
2726
  * EventBridge ApiDestination.</p>
2727
2727
  * @public
2728
2728
  */
2729
- HeaderParameters?: Record<string, string>;
2729
+ HeaderParameters?: Record<string, string> | undefined;
2730
2730
  /**
2731
2731
  * <p>The query string keys/values that need to be sent as part of request invoking the API Gateway
2732
2732
  * REST API or EventBridge ApiDestination.</p>
2733
2733
  * @public
2734
2734
  */
2735
- QueryStringParameters?: Record<string, string>;
2735
+ QueryStringParameters?: Record<string, string> | undefined;
2736
2736
  }
2737
2737
  /**
2738
2738
  * <p>Contains the parameters needed for you to provide custom input to a target based on one or
@@ -2751,7 +2751,7 @@ export interface InputTransformer {
2751
2751
  * <p>The keys cannot start with "Amazon Web Services." </p>
2752
2752
  * @public
2753
2753
  */
2754
- InputPathsMap?: Record<string, string>;
2754
+ InputPathsMap?: Record<string, string> | undefined;
2755
2755
  /**
2756
2756
  * <p>Input template where you specify placeholders that will be filled with the values of the
2757
2757
  * keys from <code>InputPathsMap</code> to customize the data sent to the target. Enclose each
@@ -2850,7 +2850,7 @@ export interface RedshiftDataParameters {
2850
2850
  * authenticating using Amazon Web Services Secrets Manager.</p>
2851
2851
  * @public
2852
2852
  */
2853
- SecretManagerArn?: string;
2853
+ SecretManagerArn?: string | undefined;
2854
2854
  /**
2855
2855
  * <p>The name of the database. Required when authenticating using temporary credentials.</p>
2856
2856
  * @public
@@ -2860,7 +2860,7 @@ export interface RedshiftDataParameters {
2860
2860
  * <p>The database user name. Required when authenticating using temporary credentials.</p>
2861
2861
  * @public
2862
2862
  */
2863
- DbUser?: string;
2863
+ DbUser?: string | undefined;
2864
2864
  /**
2865
2865
  * <p>The SQL statement text to run.</p>
2866
2866
  * @public
@@ -2871,13 +2871,13 @@ export interface RedshiftDataParameters {
2871
2871
  * identify the query.</p>
2872
2872
  * @public
2873
2873
  */
2874
- StatementName?: string;
2874
+ StatementName?: string | undefined;
2875
2875
  /**
2876
2876
  * <p>Indicates whether to send an event back to EventBridge after the SQL statement
2877
2877
  * runs.</p>
2878
2878
  * @public
2879
2879
  */
2880
- WithEvent?: boolean;
2880
+ WithEvent?: boolean | undefined;
2881
2881
  }
2882
2882
  /**
2883
2883
  * <p>A <code>RetryPolicy</code> object that includes information about the retry policy
@@ -2891,12 +2891,12 @@ export interface RetryPolicy {
2891
2891
  * <code>MaximumEventAgeInSeconds</code> is met.</p>
2892
2892
  * @public
2893
2893
  */
2894
- MaximumRetryAttempts?: number;
2894
+ MaximumRetryAttempts?: number | undefined;
2895
2895
  /**
2896
2896
  * <p>The maximum amount of time, in seconds, to continue to make retry attempts.</p>
2897
2897
  * @public
2898
2898
  */
2899
- MaximumEventAgeInSeconds?: number;
2899
+ MaximumEventAgeInSeconds?: number | undefined;
2900
2900
  }
2901
2901
  /**
2902
2902
  * <p>Information about the EC2 instances that are to be sent the command, specified as
@@ -2961,7 +2961,7 @@ export interface SageMakerPipelineParameters {
2961
2961
  * <p>List of Parameter names and values for SageMaker Model Building Pipeline execution.</p>
2962
2962
  * @public
2963
2963
  */
2964
- PipelineParameterList?: SageMakerPipelineParameter[];
2964
+ PipelineParameterList?: SageMakerPipelineParameter[] | undefined;
2965
2965
  }
2966
2966
  /**
2967
2967
  * <p>This structure includes the custom parameter to be used when the target is an SQS FIFO
@@ -2973,7 +2973,7 @@ export interface SqsParameters {
2973
2973
  * <p>The FIFO message group ID to use as the target.</p>
2974
2974
  * @public
2975
2975
  */
2976
- MessageGroupId?: string;
2976
+ MessageGroupId?: string | undefined;
2977
2977
  }
2978
2978
  /**
2979
2979
  * <p>Targets are the resources to be invoked when a rule is triggered. For a complete list of
@@ -3003,40 +3003,40 @@ export interface Target {
3003
3003
  * target.</p>
3004
3004
  * @public
3005
3005
  */
3006
- RoleArn?: string;
3006
+ RoleArn?: string | undefined;
3007
3007
  /**
3008
3008
  * <p>Valid JSON text passed to the target. In this case, nothing from the event itself is
3009
3009
  * passed to the target. For more information, see <a href="http://www.rfc-editor.org/rfc/rfc7159.txt">The JavaScript Object Notation (JSON) Data
3010
3010
  * Interchange Format</a>.</p>
3011
3011
  * @public
3012
3012
  */
3013
- Input?: string;
3013
+ Input?: string | undefined;
3014
3014
  /**
3015
3015
  * <p>The value of the JSONPath that is used for extracting part of the matched event when
3016
3016
  * passing it to the target. You must use JSON dot notation, not bracket notation. For more
3017
3017
  * information about JSON paths, see <a href="http://goessner.net/articles/JsonPath/">JSONPath</a>.</p>
3018
3018
  * @public
3019
3019
  */
3020
- InputPath?: string;
3020
+ InputPath?: string | undefined;
3021
3021
  /**
3022
3022
  * <p>Settings to enable you to provide custom input to a target based on certain event data.
3023
3023
  * You can extract one or more key-value pairs from the event and then use that data to send
3024
3024
  * customized input to the target.</p>
3025
3025
  * @public
3026
3026
  */
3027
- InputTransformer?: InputTransformer;
3027
+ InputTransformer?: InputTransformer | undefined;
3028
3028
  /**
3029
3029
  * <p>The custom parameter you can use to control the shard assignment, when the target is a
3030
3030
  * Kinesis data stream. If you do not include this parameter, the default is to use the
3031
3031
  * <code>eventId</code> as the partition key.</p>
3032
3032
  * @public
3033
3033
  */
3034
- KinesisParameters?: KinesisParameters;
3034
+ KinesisParameters?: KinesisParameters | undefined;
3035
3035
  /**
3036
3036
  * <p>Parameters used when you are using the rule to invoke Amazon EC2 Run Command.</p>
3037
3037
  * @public
3038
3038
  */
3039
- RunCommandParameters?: RunCommandParameters;
3039
+ RunCommandParameters?: RunCommandParameters | undefined;
3040
3040
  /**
3041
3041
  * <p>Contains the Amazon ECS task definition and task count to be used, if the event target is
3042
3042
  * 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
@@ -3044,21 +3044,21 @@ export interface Target {
3044
3044
  * Guide</i>.</p>
3045
3045
  * @public
3046
3046
  */
3047
- EcsParameters?: EcsParameters;
3047
+ EcsParameters?: EcsParameters | undefined;
3048
3048
  /**
3049
3049
  * <p>If the event target is an Batch job, this contains the job definition, job name, and
3050
3050
  * other parameters. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/jobs.html">Jobs</a> in the <i>Batch User
3051
3051
  * Guide</i>.</p>
3052
3052
  * @public
3053
3053
  */
3054
- BatchParameters?: BatchParameters;
3054
+ BatchParameters?: BatchParameters | undefined;
3055
3055
  /**
3056
3056
  * <p>Contains the message group ID to use when the target is a FIFO queue.</p>
3057
3057
  * <p>If you specify an SQS FIFO queue as a target, the queue must have content-based
3058
3058
  * deduplication enabled.</p>
3059
3059
  * @public
3060
3060
  */
3061
- SqsParameters?: SqsParameters;
3061
+ SqsParameters?: SqsParameters | undefined;
3062
3062
  /**
3063
3063
  * <p>Contains the HTTP parameters to use when the target is a API Gateway REST endpoint or
3064
3064
  * EventBridge ApiDestination.</p>
@@ -3069,7 +3069,7 @@ export interface Target {
3069
3069
  * Connection take precedence.</p>
3070
3070
  * @public
3071
3071
  */
3072
- HttpParameters?: HttpParameters;
3072
+ HttpParameters?: HttpParameters | undefined;
3073
3073
  /**
3074
3074
  * <p>Contains the Amazon Redshift Data API parameters to use when the target is a Amazon Redshift
3075
3075
  * cluster.</p>
@@ -3077,7 +3077,7 @@ export interface Target {
3077
3077
  * invoke the Amazon Redshift Data API ExecuteStatement based on EventBridge events.</p>
3078
3078
  * @public
3079
3079
  */
3080
- RedshiftDataParameters?: RedshiftDataParameters;
3080
+ RedshiftDataParameters?: RedshiftDataParameters | undefined;
3081
3081
  /**
3082
3082
  * <p>Contains the SageMaker Model Building Pipeline parameters to start execution of a
3083
3083
  * SageMaker Model Building Pipeline.</p>
@@ -3085,19 +3085,19 @@ export interface Target {
3085
3085
  * specify parameters to start a pipeline execution based on EventBridge events.</p>
3086
3086
  * @public
3087
3087
  */
3088
- SageMakerPipelineParameters?: SageMakerPipelineParameters;
3088
+ SageMakerPipelineParameters?: SageMakerPipelineParameters | undefined;
3089
3089
  /**
3090
3090
  * <p>The <code>DeadLetterConfig</code> that defines the target queue to send dead-letter queue
3091
3091
  * events to.</p>
3092
3092
  * @public
3093
3093
  */
3094
- DeadLetterConfig?: DeadLetterConfig;
3094
+ DeadLetterConfig?: DeadLetterConfig | undefined;
3095
3095
  /**
3096
3096
  * <p>The <code>RetryPolicy</code> object that contains the retry policy configuration to use
3097
3097
  * for the dead-letter queue.</p>
3098
3098
  * @public
3099
3099
  */
3100
- RetryPolicy?: RetryPolicy;
3100
+ RetryPolicy?: RetryPolicy | undefined;
3101
3101
  }
3102
3102
  /**
3103
3103
  * @public
@@ -3107,13 +3107,13 @@ export interface ListTargetsByRuleResponse {
3107
3107
  * <p>The targets assigned to the rule.</p>
3108
3108
  * @public
3109
3109
  */
3110
- Targets?: Target[];
3110
+ Targets?: Target[] | undefined;
3111
3111
  /**
3112
3112
  * <p>Indicates whether there are additional results to retrieve. If there are no more results,
3113
3113
  * the value is null.</p>
3114
3114
  * @public
3115
3115
  */
3116
- NextToken?: string;
3116
+ NextToken?: string | undefined;
3117
3117
  }
3118
3118
  /**
3119
3119
  * <p>Represents an event to be submitted.</p>
@@ -3124,43 +3124,43 @@ export interface PutEventsRequestEntry {
3124
3124
  * <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>
3125
3125
  * @public
3126
3126
  */
3127
- Time?: Date;
3127
+ Time?: Date | undefined;
3128
3128
  /**
3129
3129
  * <p>The source of the event.</p>
3130
3130
  * @public
3131
3131
  */
3132
- Source?: string;
3132
+ Source?: string | undefined;
3133
3133
  /**
3134
3134
  * <p>Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily
3135
3135
  * concerns. Any number, including zero, may be present.</p>
3136
3136
  * @public
3137
3137
  */
3138
- Resources?: string[];
3138
+ Resources?: string[] | undefined;
3139
3139
  /**
3140
3140
  * <p>Free-form string used to decide what fields to expect in the event detail.</p>
3141
3141
  * @public
3142
3142
  */
3143
- DetailType?: string;
3143
+ DetailType?: string | undefined;
3144
3144
  /**
3145
3145
  * <p>A valid JSON string. There is no other schema imposed. The JSON string may contain fields
3146
3146
  * and nested subobjects.</p>
3147
3147
  * @public
3148
3148
  */
3149
- Detail?: string;
3149
+ Detail?: string | undefined;
3150
3150
  /**
3151
3151
  * <p>The name or ARN of the event bus to receive the event. Only the rules that are associated
3152
3152
  * with this event bus are used to match the event. If you omit this, the default event bus is
3153
3153
  * used.</p>
3154
3154
  * @public
3155
3155
  */
3156
- EventBusName?: string;
3156
+ EventBusName?: string | undefined;
3157
3157
  /**
3158
3158
  * <p>An X-Ray trade header, which is an http header (X-Amzn-Trace-Id) that contains the
3159
3159
  * trace-id associated with the event.</p>
3160
3160
  * <p>To learn more about X-Ray trace headers, see <a href="https://docs.aws.amazon.com/xray/latest/devguide/xray-concepts.html#xray-concepts-tracingheader">Tracing header</a> in the X-Ray Developer Guide.</p>
3161
3161
  * @public
3162
3162
  */
3163
- TraceHeader?: string;
3163
+ TraceHeader?: string | undefined;
3164
3164
  }
3165
3165
  /**
3166
3166
  * @public
@@ -3183,17 +3183,17 @@ export interface PutEventsResultEntry {
3183
3183
  * <p>The ID of the event.</p>
3184
3184
  * @public
3185
3185
  */
3186
- EventId?: string;
3186
+ EventId?: string | undefined;
3187
3187
  /**
3188
3188
  * <p>The error code that indicates why the event submission failed.</p>
3189
3189
  * @public
3190
3190
  */
3191
- ErrorCode?: string;
3191
+ ErrorCode?: string | undefined;
3192
3192
  /**
3193
3193
  * <p>The error message that explains why the event submission failed.</p>
3194
3194
  * @public
3195
3195
  */
3196
- ErrorMessage?: string;
3196
+ ErrorMessage?: string | undefined;
3197
3197
  }
3198
3198
  /**
3199
3199
  * @public
@@ -3203,14 +3203,14 @@ export interface PutEventsResponse {
3203
3203
  * <p>The number of failed entries.</p>
3204
3204
  * @public
3205
3205
  */
3206
- FailedEntryCount?: number;
3206
+ FailedEntryCount?: number | undefined;
3207
3207
  /**
3208
3208
  * <p>The successfully and unsuccessfully ingested events results. If the ingestion was
3209
3209
  * successful, the entry has the event ID in it. Otherwise, you can use the error code and error
3210
3210
  * message to identify the problem with the entry.</p>
3211
3211
  * @public
3212
3212
  */
3213
- Entries?: PutEventsResultEntry[];
3213
+ Entries?: PutEventsResultEntry[] | undefined;
3214
3214
  }
3215
3215
  /**
3216
3216
  * <p>The details about an event generated by an SaaS partner.</p>
@@ -3221,29 +3221,29 @@ export interface PutPartnerEventsRequestEntry {
3221
3221
  * <p>The date and time of the event.</p>
3222
3222
  * @public
3223
3223
  */
3224
- Time?: Date;
3224
+ Time?: Date | undefined;
3225
3225
  /**
3226
3226
  * <p>The event source that is generating the entry.</p>
3227
3227
  * @public
3228
3228
  */
3229
- Source?: string;
3229
+ Source?: string | undefined;
3230
3230
  /**
3231
3231
  * <p>Amazon Web Services resources, identified by Amazon Resource Name (ARN), which the event primarily
3232
3232
  * concerns. Any number, including zero, may be present.</p>
3233
3233
  * @public
3234
3234
  */
3235
- Resources?: string[];
3235
+ Resources?: string[] | undefined;
3236
3236
  /**
3237
3237
  * <p>A free-form string used to decide what fields to expect in the event detail.</p>
3238
3238
  * @public
3239
3239
  */
3240
- DetailType?: string;
3240
+ DetailType?: string | undefined;
3241
3241
  /**
3242
3242
  * <p>A valid JSON string. There is no other schema imposed. The JSON string may contain fields
3243
3243
  * and nested subobjects.</p>
3244
3244
  * @public
3245
3245
  */
3246
- Detail?: string;
3246
+ Detail?: string | undefined;
3247
3247
  }
3248
3248
  /**
3249
3249
  * @public
@@ -3264,17 +3264,17 @@ export interface PutPartnerEventsResultEntry {
3264
3264
  * <p>The ID of the event.</p>
3265
3265
  * @public
3266
3266
  */
3267
- EventId?: string;
3267
+ EventId?: string | undefined;
3268
3268
  /**
3269
3269
  * <p>The error code that indicates why the event submission failed.</p>
3270
3270
  * @public
3271
3271
  */
3272
- ErrorCode?: string;
3272
+ ErrorCode?: string | undefined;
3273
3273
  /**
3274
3274
  * <p>The error message that explains why the event submission failed.</p>
3275
3275
  * @public
3276
3276
  */
3277
- ErrorMessage?: string;
3277
+ ErrorMessage?: string | undefined;
3278
3278
  }
3279
3279
  /**
3280
3280
  * @public
@@ -3285,13 +3285,13 @@ export interface PutPartnerEventsResponse {
3285
3285
  * bus.</p>
3286
3286
  * @public
3287
3287
  */
3288
- FailedEntryCount?: number;
3288
+ FailedEntryCount?: number | undefined;
3289
3289
  /**
3290
3290
  * <p>The list of events from this operation that were successfully written to the partner event
3291
3291
  * bus.</p>
3292
3292
  * @public
3293
3293
  */
3294
- Entries?: PutPartnerEventsResultEntry[];
3294
+ Entries?: PutPartnerEventsResultEntry[] | undefined;
3295
3295
  }
3296
3296
  /**
3297
3297
  * <p>The event bus policy is too long. For more information, see the limits.</p>
@@ -3346,12 +3346,12 @@ export interface PutPermissionRequest {
3346
3346
  * bus is used.</p>
3347
3347
  * @public
3348
3348
  */
3349
- EventBusName?: string;
3349
+ EventBusName?: string | undefined;
3350
3350
  /**
3351
3351
  * <p>The action that you are enabling the other account to perform.</p>
3352
3352
  * @public
3353
3353
  */
3354
- Action?: string;
3354
+ Action?: string | undefined;
3355
3355
  /**
3356
3356
  * <p>The 12-digit Amazon Web Services account ID that you are permitting to put events to your default event
3357
3357
  * bus. Specify "*" to permit any account to put events to your default event bus.</p>
@@ -3362,14 +3362,14 @@ export interface PutPermissionRequest {
3362
3362
  * accounts.</p>
3363
3363
  * @public
3364
3364
  */
3365
- Principal?: string;
3365
+ Principal?: string | undefined;
3366
3366
  /**
3367
3367
  * <p>An identifier string for the external account that you are granting permissions to. If you
3368
3368
  * later want to revoke the permission for this external account, specify this
3369
3369
  * <code>StatementId</code> when you run <a href="https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_RemovePermission.html">RemovePermission</a>.</p>
3370
3370
  * @public
3371
3371
  */
3372
- StatementId?: string;
3372
+ StatementId?: string | undefined;
3373
3373
  /**
3374
3374
  * <p>This parameter enables you to limit the permission to accounts that fulfill a certain
3375
3375
  * condition, such as being a member of a certain Amazon Web Services organization. For more information about
@@ -3382,14 +3382,14 @@ export interface PutPermissionRequest {
3382
3382
  * <code>Key</code>, and <code>Value</code> fields.</p>
3383
3383
  * @public
3384
3384
  */
3385
- Condition?: Condition;
3385
+ Condition?: Condition | undefined;
3386
3386
  /**
3387
3387
  * <p>A JSON string that describes the permission policy statement. You can include a
3388
3388
  * <code>Policy</code> parameter in the request instead of using the <code>StatementId</code>,
3389
3389
  * <code>Action</code>, <code>Principal</code>, or <code>Condition</code> parameters.</p>
3390
3390
  * @public
3391
3391
  */
3392
- Policy?: string;
3392
+ Policy?: string | undefined;
3393
3393
  }
3394
3394
  /**
3395
3395
  * @public
@@ -3404,23 +3404,23 @@ export interface PutRuleRequest {
3404
3404
  * <p>The scheduling expression. For example, "cron(0 20 * * ? *)" or "rate(5 minutes)".</p>
3405
3405
  * @public
3406
3406
  */
3407
- ScheduleExpression?: string;
3407
+ ScheduleExpression?: string | undefined;
3408
3408
  /**
3409
3409
  * <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
3410
3410
  * Patterns</a> in the <i>Amazon EventBridge User Guide</i>.</p>
3411
3411
  * @public
3412
3412
  */
3413
- EventPattern?: string;
3413
+ EventPattern?: string | undefined;
3414
3414
  /**
3415
3415
  * <p>Indicates whether the rule is enabled or disabled.</p>
3416
3416
  * @public
3417
3417
  */
3418
- State?: RuleState;
3418
+ State?: RuleState | undefined;
3419
3419
  /**
3420
3420
  * <p>A description of the rule.</p>
3421
3421
  * @public
3422
3422
  */
3423
- Description?: string;
3423
+ Description?: string | undefined;
3424
3424
  /**
3425
3425
  * <p>The Amazon Resource Name (ARN) of the IAM role associated with the rule.</p>
3426
3426
  * <p>If you're setting an event bus in another account as the target and that account granted
@@ -3429,18 +3429,18 @@ export interface PutRuleRequest {
3429
3429
  * structure, instead of here in this parameter.</p>
3430
3430
  * @public
3431
3431
  */
3432
- RoleArn?: string;
3432
+ RoleArn?: string | undefined;
3433
3433
  /**
3434
3434
  * <p>The list of key-value pairs to associate with the rule.</p>
3435
3435
  * @public
3436
3436
  */
3437
- Tags?: Tag[];
3437
+ Tags?: Tag[] | undefined;
3438
3438
  /**
3439
3439
  * <p>The name or ARN of the event bus to associate with this rule. If you omit this, the
3440
3440
  * default event bus is used.</p>
3441
3441
  * @public
3442
3442
  */
3443
- EventBusName?: string;
3443
+ EventBusName?: string | undefined;
3444
3444
  }
3445
3445
  /**
3446
3446
  * @public
@@ -3450,7 +3450,7 @@ export interface PutRuleResponse {
3450
3450
  * <p>The Amazon Resource Name (ARN) of the rule.</p>
3451
3451
  * @public
3452
3452
  */
3453
- RuleArn?: string;
3453
+ RuleArn?: string | undefined;
3454
3454
  }
3455
3455
  /**
3456
3456
  * @public
@@ -3466,7 +3466,7 @@ export interface PutTargetsRequest {
3466
3466
  * event bus is used.</p>
3467
3467
  * @public
3468
3468
  */
3469
- EventBusName?: string;
3469
+ EventBusName?: string | undefined;
3470
3470
  /**
3471
3471
  * <p>The targets to update or add to the rule.</p>
3472
3472
  * @public
@@ -3482,19 +3482,19 @@ export interface PutTargetsResultEntry {
3482
3482
  * <p>The ID of the target.</p>
3483
3483
  * @public
3484
3484
  */
3485
- TargetId?: string;
3485
+ TargetId?: string | undefined;
3486
3486
  /**
3487
3487
  * <p>The error code that indicates why the target addition failed. If the value is
3488
3488
  * <code>ConcurrentModificationException</code>, too many requests were made at the same
3489
3489
  * time.</p>
3490
3490
  * @public
3491
3491
  */
3492
- ErrorCode?: string;
3492
+ ErrorCode?: string | undefined;
3493
3493
  /**
3494
3494
  * <p>The error message that explains why the target addition failed.</p>
3495
3495
  * @public
3496
3496
  */
3497
- ErrorMessage?: string;
3497
+ ErrorMessage?: string | undefined;
3498
3498
  }
3499
3499
  /**
3500
3500
  * @public
@@ -3504,12 +3504,12 @@ export interface PutTargetsResponse {
3504
3504
  * <p>The number of failed entries.</p>
3505
3505
  * @public
3506
3506
  */
3507
- FailedEntryCount?: number;
3507
+ FailedEntryCount?: number | undefined;
3508
3508
  /**
3509
3509
  * <p>The failed target entries.</p>
3510
3510
  * @public
3511
3511
  */
3512
- FailedEntries?: PutTargetsResultEntry[];
3512
+ FailedEntries?: PutTargetsResultEntry[] | undefined;
3513
3513
  }
3514
3514
  /**
3515
3515
  * @public
@@ -3520,18 +3520,18 @@ export interface RemovePermissionRequest {
3520
3520
  * the default event bus.</p>
3521
3521
  * @public
3522
3522
  */
3523
- StatementId?: string;
3523
+ StatementId?: string | undefined;
3524
3524
  /**
3525
3525
  * <p>Specifies whether to remove all permissions.</p>
3526
3526
  * @public
3527
3527
  */
3528
- RemoveAllPermissions?: boolean;
3528
+ RemoveAllPermissions?: boolean | undefined;
3529
3529
  /**
3530
3530
  * <p>The name of the event bus to revoke permissions for. If you omit this, the default event
3531
3531
  * bus is used.</p>
3532
3532
  * @public
3533
3533
  */
3534
- EventBusName?: string;
3534
+ EventBusName?: string | undefined;
3535
3535
  }
3536
3536
  /**
3537
3537
  * @public
@@ -3547,7 +3547,7 @@ export interface RemoveTargetsRequest {
3547
3547
  * event bus is used.</p>
3548
3548
  * @public
3549
3549
  */
3550
- EventBusName?: string;
3550
+ EventBusName?: string | undefined;
3551
3551
  /**
3552
3552
  * <p>The IDs of the targets to remove from the rule.</p>
3553
3553
  * @public
@@ -3561,7 +3561,7 @@ export interface RemoveTargetsRequest {
3561
3561
  * field of the response.</p>
3562
3562
  * @public
3563
3563
  */
3564
- Force?: boolean;
3564
+ Force?: boolean | undefined;
3565
3565
  }
3566
3566
  /**
3567
3567
  * <p>Represents a target that failed to be removed from a rule.</p>
@@ -3572,19 +3572,19 @@ export interface RemoveTargetsResultEntry {
3572
3572
  * <p>The ID of the target.</p>
3573
3573
  * @public
3574
3574
  */
3575
- TargetId?: string;
3575
+ TargetId?: string | undefined;
3576
3576
  /**
3577
3577
  * <p>The error code that indicates why the target removal failed. If the value is
3578
3578
  * <code>ConcurrentModificationException</code>, too many requests were made at the same
3579
3579
  * time.</p>
3580
3580
  * @public
3581
3581
  */
3582
- ErrorCode?: string;
3582
+ ErrorCode?: string | undefined;
3583
3583
  /**
3584
3584
  * <p>The error message that explains why the target removal failed.</p>
3585
3585
  * @public
3586
3586
  */
3587
- ErrorMessage?: string;
3587
+ ErrorMessage?: string | undefined;
3588
3588
  }
3589
3589
  /**
3590
3590
  * @public
@@ -3594,12 +3594,12 @@ export interface RemoveTargetsResponse {
3594
3594
  * <p>The number of failed entries.</p>
3595
3595
  * @public
3596
3596
  */
3597
- FailedEntryCount?: number;
3597
+ FailedEntryCount?: number | undefined;
3598
3598
  /**
3599
3599
  * <p>The failed target entries.</p>
3600
3600
  * @public
3601
3601
  */
3602
- FailedEntries?: RemoveTargetsResultEntry[];
3602
+ FailedEntries?: RemoveTargetsResultEntry[] | undefined;
3603
3603
  }
3604
3604
  /**
3605
3605
  * @public
@@ -3614,7 +3614,7 @@ export interface StartReplayRequest {
3614
3614
  * <p>A description for the replay to start.</p>
3615
3615
  * @public
3616
3616
  */
3617
- Description?: string;
3617
+ Description?: string | undefined;
3618
3618
  /**
3619
3619
  * <p>The ARN of the archive to replay events from.</p>
3620
3620
  * @public
@@ -3647,22 +3647,22 @@ export interface StartReplayResponse {
3647
3647
  * <p>The ARN of the replay.</p>
3648
3648
  * @public
3649
3649
  */
3650
- ReplayArn?: string;
3650
+ ReplayArn?: string | undefined;
3651
3651
  /**
3652
3652
  * <p>The state of the replay.</p>
3653
3653
  * @public
3654
3654
  */
3655
- State?: ReplayState;
3655
+ State?: ReplayState | undefined;
3656
3656
  /**
3657
3657
  * <p>The reason that the replay is in the state.</p>
3658
3658
  * @public
3659
3659
  */
3660
- StateReason?: string;
3660
+ StateReason?: string | undefined;
3661
3661
  /**
3662
3662
  * <p>The time at which the replay started.</p>
3663
3663
  * @public
3664
3664
  */
3665
- ReplayStartTime?: Date;
3665
+ ReplayStartTime?: Date | undefined;
3666
3666
  }
3667
3667
  /**
3668
3668
  * @public
@@ -3747,7 +3747,7 @@ export interface TestEventPatternResponse {
3747
3747
  * <p>Indicates whether the event matches the event pattern.</p>
3748
3748
  * @public
3749
3749
  */
3750
- Result?: boolean;
3750
+ Result?: boolean | undefined;
3751
3751
  }
3752
3752
  /**
3753
3753
  * @public
@@ -3782,27 +3782,27 @@ export interface UpdateApiDestinationRequest {
3782
3782
  * <p>The name of the API destination to update.</p>
3783
3783
  * @public
3784
3784
  */
3785
- Description?: string;
3785
+ Description?: string | undefined;
3786
3786
  /**
3787
3787
  * <p>The ARN of the connection to use for the API destination.</p>
3788
3788
  * @public
3789
3789
  */
3790
- ConnectionArn?: string;
3790
+ ConnectionArn?: string | undefined;
3791
3791
  /**
3792
3792
  * <p>The URL to the endpoint to use for the API destination.</p>
3793
3793
  * @public
3794
3794
  */
3795
- InvocationEndpoint?: string;
3795
+ InvocationEndpoint?: string | undefined;
3796
3796
  /**
3797
3797
  * <p>The method to use for the API destination.</p>
3798
3798
  * @public
3799
3799
  */
3800
- HttpMethod?: ApiDestinationHttpMethod;
3800
+ HttpMethod?: ApiDestinationHttpMethod | undefined;
3801
3801
  /**
3802
3802
  * <p>The maximum number of invocations per second to send to the API destination.</p>
3803
3803
  * @public
3804
3804
  */
3805
- InvocationRateLimitPerSecond?: number;
3805
+ InvocationRateLimitPerSecond?: number | undefined;
3806
3806
  }
3807
3807
  /**
3808
3808
  * @public
@@ -3812,22 +3812,22 @@ export interface UpdateApiDestinationResponse {
3812
3812
  * <p>The ARN of the API destination that was updated.</p>
3813
3813
  * @public
3814
3814
  */
3815
- ApiDestinationArn?: string;
3815
+ ApiDestinationArn?: string | undefined;
3816
3816
  /**
3817
3817
  * <p>The state of the API destination that was updated.</p>
3818
3818
  * @public
3819
3819
  */
3820
- ApiDestinationState?: ApiDestinationState;
3820
+ ApiDestinationState?: ApiDestinationState | undefined;
3821
3821
  /**
3822
3822
  * <p>A time stamp for the time that the API destination was created.</p>
3823
3823
  * @public
3824
3824
  */
3825
- CreationTime?: Date;
3825
+ CreationTime?: Date | undefined;
3826
3826
  /**
3827
3827
  * <p>A time stamp for the time that the API destination was last modified.</p>
3828
3828
  * @public
3829
3829
  */
3830
- LastModifiedTime?: Date;
3830
+ LastModifiedTime?: Date | undefined;
3831
3831
  }
3832
3832
  /**
3833
3833
  * @public
@@ -3842,17 +3842,17 @@ export interface UpdateArchiveRequest {
3842
3842
  * <p>The description for the archive.</p>
3843
3843
  * @public
3844
3844
  */
3845
- Description?: string;
3845
+ Description?: string | undefined;
3846
3846
  /**
3847
3847
  * <p>The event pattern to use to filter events sent to the archive.</p>
3848
3848
  * @public
3849
3849
  */
3850
- EventPattern?: string;
3850
+ EventPattern?: string | undefined;
3851
3851
  /**
3852
3852
  * <p>The number of days to retain events in the archive.</p>
3853
3853
  * @public
3854
3854
  */
3855
- RetentionDays?: number;
3855
+ RetentionDays?: number | undefined;
3856
3856
  }
3857
3857
  /**
3858
3858
  * @public
@@ -3862,22 +3862,22 @@ export interface UpdateArchiveResponse {
3862
3862
  * <p>The ARN of the archive.</p>
3863
3863
  * @public
3864
3864
  */
3865
- ArchiveArn?: string;
3865
+ ArchiveArn?: string | undefined;
3866
3866
  /**
3867
3867
  * <p>The state of the archive.</p>
3868
3868
  * @public
3869
3869
  */
3870
- State?: ArchiveState;
3870
+ State?: ArchiveState | undefined;
3871
3871
  /**
3872
3872
  * <p>The reason that the archive is in the current state.</p>
3873
3873
  * @public
3874
3874
  */
3875
- StateReason?: string;
3875
+ StateReason?: string | undefined;
3876
3876
  /**
3877
3877
  * <p>The time at which the archive was updated.</p>
3878
3878
  * @public
3879
3879
  */
3880
- CreationTime?: Date;
3880
+ CreationTime?: Date | undefined;
3881
3881
  }
3882
3882
  /**
3883
3883
  * <p>Contains the API key authorization parameters to use to update the connection.</p>
@@ -3888,12 +3888,12 @@ export interface UpdateConnectionApiKeyAuthRequestParameters {
3888
3888
  * <p>The name of the API key to use for authorization.</p>
3889
3889
  * @public
3890
3890
  */
3891
- ApiKeyName?: string;
3891
+ ApiKeyName?: string | undefined;
3892
3892
  /**
3893
3893
  * <p>The value associated with teh API key to use for authorization.</p>
3894
3894
  * @public
3895
3895
  */
3896
- ApiKeyValue?: string;
3896
+ ApiKeyValue?: string | undefined;
3897
3897
  }
3898
3898
  /**
3899
3899
  * <p>Contains the Basic authorization parameters for the connection.</p>
@@ -3904,12 +3904,12 @@ export interface UpdateConnectionBasicAuthRequestParameters {
3904
3904
  * <p>The user name to use for Basic authorization.</p>
3905
3905
  * @public
3906
3906
  */
3907
- Username?: string;
3907
+ Username?: string | undefined;
3908
3908
  /**
3909
3909
  * <p>The password associated with the user name to use for Basic authorization.</p>
3910
3910
  * @public
3911
3911
  */
3912
- Password?: string;
3912
+ Password?: string | undefined;
3913
3913
  }
3914
3914
  /**
3915
3915
  * <p>Contains the OAuth authorization parameters to use for the connection.</p>
@@ -3920,12 +3920,12 @@ export interface UpdateConnectionOAuthClientRequestParameters {
3920
3920
  * <p>The client ID to use for OAuth authorization.</p>
3921
3921
  * @public
3922
3922
  */
3923
- ClientID?: string;
3923
+ ClientID?: string | undefined;
3924
3924
  /**
3925
3925
  * <p>The client secret assciated with the client ID to use for OAuth authorization.</p>
3926
3926
  * @public
3927
3927
  */
3928
- ClientSecret?: string;
3928
+ ClientSecret?: string | undefined;
3929
3929
  }
3930
3930
  /**
3931
3931
  * <p>Contains the OAuth request parameters to use for the connection.</p>
@@ -3938,23 +3938,23 @@ export interface UpdateConnectionOAuthRequestParameters {
3938
3938
  * type.</p>
3939
3939
  * @public
3940
3940
  */
3941
- ClientParameters?: UpdateConnectionOAuthClientRequestParameters;
3941
+ ClientParameters?: UpdateConnectionOAuthClientRequestParameters | undefined;
3942
3942
  /**
3943
3943
  * <p>The URL to the authorization endpoint when OAuth is specified as the authorization
3944
3944
  * type.</p>
3945
3945
  * @public
3946
3946
  */
3947
- AuthorizationEndpoint?: string;
3947
+ AuthorizationEndpoint?: string | undefined;
3948
3948
  /**
3949
3949
  * <p>The method used to connect to the HTTP endpoint.</p>
3950
3950
  * @public
3951
3951
  */
3952
- HttpMethod?: ConnectionOAuthHttpMethod;
3952
+ HttpMethod?: ConnectionOAuthHttpMethod | undefined;
3953
3953
  /**
3954
3954
  * <p>The additional HTTP parameters used for the OAuth authorization request.</p>
3955
3955
  * @public
3956
3956
  */
3957
- OAuthHttpParameters?: ConnectionHttpParameters;
3957
+ OAuthHttpParameters?: ConnectionHttpParameters | undefined;
3958
3958
  }
3959
3959
  /**
3960
3960
  * <p>Contains the additional parameters to use for the connection.</p>
@@ -3966,25 +3966,25 @@ export interface UpdateConnectionAuthRequestParameters {
3966
3966
  * authorization parameters for Basic authorization.</p>
3967
3967
  * @public
3968
3968
  */
3969
- BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters;
3969
+ BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters | undefined;
3970
3970
  /**
3971
3971
  * <p>A <code>UpdateConnectionOAuthRequestParameters</code> object that contains the
3972
3972
  * authorization parameters for OAuth authorization.</p>
3973
3973
  * @public
3974
3974
  */
3975
- OAuthParameters?: UpdateConnectionOAuthRequestParameters;
3975
+ OAuthParameters?: UpdateConnectionOAuthRequestParameters | undefined;
3976
3976
  /**
3977
3977
  * <p>A <code>UpdateConnectionApiKeyAuthRequestParameters</code> object that contains the
3978
3978
  * authorization parameters for API key authorization.</p>
3979
3979
  * @public
3980
3980
  */
3981
- ApiKeyAuthParameters?: UpdateConnectionApiKeyAuthRequestParameters;
3981
+ ApiKeyAuthParameters?: UpdateConnectionApiKeyAuthRequestParameters | undefined;
3982
3982
  /**
3983
3983
  * <p>A <code>ConnectionHttpParameters</code> object that contains the additional parameters to
3984
3984
  * use for the connection.</p>
3985
3985
  * @public
3986
3986
  */
3987
- InvocationHttpParameters?: ConnectionHttpParameters;
3987
+ InvocationHttpParameters?: ConnectionHttpParameters | undefined;
3988
3988
  }
3989
3989
  /**
3990
3990
  * @public
@@ -3999,17 +3999,17 @@ export interface UpdateConnectionRequest {
3999
3999
  * <p>A description for the connection.</p>
4000
4000
  * @public
4001
4001
  */
4002
- Description?: string;
4002
+ Description?: string | undefined;
4003
4003
  /**
4004
4004
  * <p>The type of authorization to use for the connection.</p>
4005
4005
  * @public
4006
4006
  */
4007
- AuthorizationType?: ConnectionAuthorizationType;
4007
+ AuthorizationType?: ConnectionAuthorizationType | undefined;
4008
4008
  /**
4009
4009
  * <p>The authorization parameters to use for the connection.</p>
4010
4010
  * @public
4011
4011
  */
4012
- AuthParameters?: UpdateConnectionAuthRequestParameters;
4012
+ AuthParameters?: UpdateConnectionAuthRequestParameters | undefined;
4013
4013
  }
4014
4014
  /**
4015
4015
  * @public
@@ -4019,27 +4019,27 @@ export interface UpdateConnectionResponse {
4019
4019
  * <p>The ARN of the connection that was updated.</p>
4020
4020
  * @public
4021
4021
  */
4022
- ConnectionArn?: string;
4022
+ ConnectionArn?: string | undefined;
4023
4023
  /**
4024
4024
  * <p>The state of the connection that was updated.</p>
4025
4025
  * @public
4026
4026
  */
4027
- ConnectionState?: ConnectionState;
4027
+ ConnectionState?: ConnectionState | undefined;
4028
4028
  /**
4029
4029
  * <p>A time stamp for the time that the connection was created.</p>
4030
4030
  * @public
4031
4031
  */
4032
- CreationTime?: Date;
4032
+ CreationTime?: Date | undefined;
4033
4033
  /**
4034
4034
  * <p>A time stamp for the time that the connection was last modified.</p>
4035
4035
  * @public
4036
4036
  */
4037
- LastModifiedTime?: Date;
4037
+ LastModifiedTime?: Date | undefined;
4038
4038
  /**
4039
4039
  * <p>A time stamp for the time that the connection was last authorized.</p>
4040
4040
  * @public
4041
4041
  */
4042
- LastAuthorizedTime?: Date;
4042
+ LastAuthorizedTime?: Date | undefined;
4043
4043
  }
4044
4044
  /**
4045
4045
  * @internal