@cdk8s/awscdk-resolver 0.0.197 → 0.0.198

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.
Files changed (28) hide show
  1. package/.jsii +3 -3
  2. package/lib/resolve.js +1 -1
  3. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_0.d.ts +760 -760
  4. package/node_modules/@aws-sdk/client-cloudformation/dist-types/models/models_1.d.ts +81 -81
  5. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_0.d.ts +764 -760
  6. package/node_modules/@aws-sdk/client-cloudformation/dist-types/ts3.4/models/models_1.d.ts +81 -81
  7. package/node_modules/@aws-sdk/client-cloudformation/package.json +7 -7
  8. package/node_modules/@aws-sdk/client-sso/dist-types/models/models_0.d.ts +18 -18
  9. package/node_modules/@aws-sdk/client-sso/dist-types/ts3.4/models/models_0.d.ts +18 -18
  10. package/node_modules/@aws-sdk/client-sso/package.json +4 -4
  11. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/models/models_0.d.ts +74 -74
  12. package/node_modules/@aws-sdk/client-sso-oidc/dist-types/ts3.4/models/models_0.d.ts +74 -74
  13. package/node_modules/@aws-sdk/client-sso-oidc/package.json +6 -6
  14. package/node_modules/@aws-sdk/client-sts/dist-types/models/models_0.d.ts +56 -56
  15. package/node_modules/@aws-sdk/client-sts/dist-types/ts3.4/models/models_0.d.ts +56 -56
  16. package/node_modules/@aws-sdk/client-sts/package.json +6 -6
  17. package/node_modules/@aws-sdk/core/package.json +3 -3
  18. package/node_modules/@aws-sdk/credential-provider-env/package.json +3 -3
  19. package/node_modules/@aws-sdk/credential-provider-http/package.json +3 -3
  20. package/node_modules/@aws-sdk/credential-provider-ini/package.json +11 -11
  21. package/node_modules/@aws-sdk/credential-provider-node/package.json +10 -10
  22. package/node_modules/@aws-sdk/credential-provider-process/package.json +4 -4
  23. package/node_modules/@aws-sdk/credential-provider-sso/package.json +6 -6
  24. package/node_modules/@aws-sdk/credential-provider-web-identity/package.json +6 -6
  25. package/node_modules/@aws-sdk/middleware-user-agent/package.json +2 -2
  26. package/node_modules/@aws-sdk/token-providers/package.json +4 -4
  27. package/node_modules/@aws-sdk/util-user-agent-node/package.json +2 -2
  28. package/package.json +4 -4
@@ -12,13 +12,13 @@ export declare class AccessDeniedException extends __BaseException {
12
12
  * For this exception the value will be <code>access_denied</code>.</p>
13
13
  * @public
14
14
  */
15
- error?: string;
15
+ error?: string | undefined;
16
16
  /**
17
17
  * <p>Human-readable text providing additional information, used to assist the
18
18
  * client developer in understanding the error that occurred.</p>
19
19
  * @public
20
20
  */
21
- error_description?: string;
21
+ error_description?: string | undefined;
22
22
  /**
23
23
  * @internal
24
24
  */
@@ -37,13 +37,13 @@ export declare class AuthorizationPendingException extends __BaseException {
37
37
  * For this exception the value will be <code>authorization_pending</code>.</p>
38
38
  * @public
39
39
  */
40
- error?: string;
40
+ error?: string | undefined;
41
41
  /**
42
42
  * <p>Human-readable text providing additional information, used to assist the
43
43
  * client developer in understanding the error that occurred.</p>
44
44
  * @public
45
45
  */
46
- error_description?: string;
46
+ error_description?: string | undefined;
47
47
  /**
48
48
  * @internal
49
49
  */
@@ -82,14 +82,14 @@ export interface CreateTokenRequest {
82
82
  * <a>StartDeviceAuthorization</a> API.</p>
83
83
  * @public
84
84
  */
85
- deviceCode?: string;
85
+ deviceCode?: string | undefined;
86
86
  /**
87
87
  * <p>Used only when calling this API for the Authorization Code grant type. The short-term code is
88
88
  * used to identify this authorization request. This grant type is currently unsupported for the
89
89
  * <a>CreateToken</a> API.</p>
90
90
  * @public
91
91
  */
92
- code?: string;
92
+ code?: string | undefined;
93
93
  /**
94
94
  * <p>Used only when calling this API for the Refresh Token grant type. This token is used to
95
95
  * refresh short-term tokens, such as the access token, that might expire.</p>
@@ -98,7 +98,7 @@ export interface CreateTokenRequest {
98
98
  * OIDC API Reference</a>.</p>
99
99
  * @public
100
100
  */
101
- refreshToken?: string;
101
+ refreshToken?: string | undefined;
102
102
  /**
103
103
  * <p>The list of scopes for which authorization is requested. The access token that is issued
104
104
  * is limited to the scopes that are granted. If this value is not specified, IAM Identity Center authorizes
@@ -106,21 +106,21 @@ export interface CreateTokenRequest {
106
106
  * <a>RegisterClient</a>.</p>
107
107
  * @public
108
108
  */
109
- scope?: string[];
109
+ scope?: string[] | undefined;
110
110
  /**
111
111
  * <p>Used only when calling this API for the Authorization Code grant type. This value specifies
112
112
  * the location of the client or application that has registered to receive the authorization
113
113
  * code.</p>
114
114
  * @public
115
115
  */
116
- redirectUri?: string;
116
+ redirectUri?: string | undefined;
117
117
  /**
118
118
  * <p>Used only when calling this API for the Authorization Code grant type. This value is generated
119
119
  * by the client and presented to validate the original code challenge value the client passed at
120
120
  * authorization time.</p>
121
121
  * @public
122
122
  */
123
- codeVerifier?: string;
123
+ codeVerifier?: string | undefined;
124
124
  }
125
125
  /**
126
126
  * @public
@@ -130,18 +130,18 @@ export interface CreateTokenResponse {
130
130
  * <p>A bearer token to access Amazon Web Services accounts and applications assigned to a user.</p>
131
131
  * @public
132
132
  */
133
- accessToken?: string;
133
+ accessToken?: string | undefined;
134
134
  /**
135
135
  * <p>Used to notify the client that the returned token is an access token. The supported token
136
136
  * type is <code>Bearer</code>.</p>
137
137
  * @public
138
138
  */
139
- tokenType?: string;
139
+ tokenType?: string | undefined;
140
140
  /**
141
141
  * <p>Indicates the time in seconds when an access token will expire.</p>
142
142
  * @public
143
143
  */
144
- expiresIn?: number;
144
+ expiresIn?: number | undefined;
145
145
  /**
146
146
  * <p>A token that, if present, can be used to refresh a previously issued access token that
147
147
  * might have expired.</p>
@@ -151,7 +151,7 @@ export interface CreateTokenResponse {
151
151
  * OIDC API Reference</a>.</p>
152
152
  * @public
153
153
  */
154
- refreshToken?: string;
154
+ refreshToken?: string | undefined;
155
155
  /**
156
156
  * <p>The <code>idToken</code> is not implemented or supported. For more information about the
157
157
  * features and limitations of the current IAM Identity Center OIDC implementation, see <i>Considerations
@@ -161,7 +161,7 @@ export interface CreateTokenResponse {
161
161
  * </p>
162
162
  * @public
163
163
  */
164
- idToken?: string;
164
+ idToken?: string | undefined;
165
165
  }
166
166
  /**
167
167
  * <p>Indicates that the token issued by the service is expired and is no longer valid.</p>
@@ -175,13 +175,13 @@ export declare class ExpiredTokenException extends __BaseException {
175
175
  * For this exception the value will be <code>expired_token</code>.</p>
176
176
  * @public
177
177
  */
178
- error?: string;
178
+ error?: string | undefined;
179
179
  /**
180
180
  * <p>Human-readable text providing additional information, used to assist the
181
181
  * client developer in understanding the error that occurred.</p>
182
182
  * @public
183
183
  */
184
- error_description?: string;
184
+ error_description?: string | undefined;
185
185
  /**
186
186
  * @internal
187
187
  */
@@ -200,13 +200,13 @@ export declare class InternalServerException extends __BaseException {
200
200
  * For this exception the value will be <code>server_error</code>.</p>
201
201
  * @public
202
202
  */
203
- error?: string;
203
+ error?: string | undefined;
204
204
  /**
205
205
  * <p>Human-readable text providing additional information, used to assist the
206
206
  * client developer in understanding the error that occurred.</p>
207
207
  * @public
208
208
  */
209
- error_description?: string;
209
+ error_description?: string | undefined;
210
210
  /**
211
211
  * @internal
212
212
  */
@@ -226,13 +226,13 @@ export declare class InvalidClientException extends __BaseException {
226
226
  * For this exception the value will be <code>invalid_client</code>.</p>
227
227
  * @public
228
228
  */
229
- error?: string;
229
+ error?: string | undefined;
230
230
  /**
231
231
  * <p>Human-readable text providing additional information, used to assist the
232
232
  * client developer in understanding the error that occurred.</p>
233
233
  * @public
234
234
  */
235
- error_description?: string;
235
+ error_description?: string | undefined;
236
236
  /**
237
237
  * @internal
238
238
  */
@@ -251,13 +251,13 @@ export declare class InvalidGrantException extends __BaseException {
251
251
  * For this exception the value will be <code>invalid_grant</code>.</p>
252
252
  * @public
253
253
  */
254
- error?: string;
254
+ error?: string | undefined;
255
255
  /**
256
256
  * <p>Human-readable text providing additional information, used to assist the
257
257
  * client developer in understanding the error that occurred.</p>
258
258
  * @public
259
259
  */
260
- error_description?: string;
260
+ error_description?: string | undefined;
261
261
  /**
262
262
  * @internal
263
263
  */
@@ -276,13 +276,13 @@ export declare class InvalidRequestException extends __BaseException {
276
276
  * For this exception the value will be <code>invalid_request</code>.</p>
277
277
  * @public
278
278
  */
279
- error?: string;
279
+ error?: string | undefined;
280
280
  /**
281
281
  * <p>Human-readable text providing additional information, used to assist the
282
282
  * client developer in understanding the error that occurred.</p>
283
283
  * @public
284
284
  */
285
- error_description?: string;
285
+ error_description?: string | undefined;
286
286
  /**
287
287
  * @internal
288
288
  */
@@ -300,13 +300,13 @@ export declare class InvalidScopeException extends __BaseException {
300
300
  * For this exception the value will be <code>invalid_scope</code>.</p>
301
301
  * @public
302
302
  */
303
- error?: string;
303
+ error?: string | undefined;
304
304
  /**
305
305
  * <p>Human-readable text providing additional information, used to assist the
306
306
  * client developer in understanding the error that occurred.</p>
307
307
  * @public
308
308
  */
309
- error_description?: string;
309
+ error_description?: string | undefined;
310
310
  /**
311
311
  * @internal
312
312
  */
@@ -325,13 +325,13 @@ export declare class SlowDownException extends __BaseException {
325
325
  * For this exception the value will be <code>slow_down</code>.</p>
326
326
  * @public
327
327
  */
328
- error?: string;
328
+ error?: string | undefined;
329
329
  /**
330
330
  * <p>Human-readable text providing additional information, used to assist the
331
331
  * client developer in understanding the error that occurred.</p>
332
332
  * @public
333
333
  */
334
- error_description?: string;
334
+ error_description?: string | undefined;
335
335
  /**
336
336
  * @internal
337
337
  */
@@ -350,13 +350,13 @@ export declare class UnauthorizedClientException extends __BaseException {
350
350
  * For this exception the value will be <code>unauthorized_client</code>.</p>
351
351
  * @public
352
352
  */
353
- error?: string;
353
+ error?: string | undefined;
354
354
  /**
355
355
  * <p>Human-readable text providing additional information, used to assist the
356
356
  * client developer in understanding the error that occurred.</p>
357
357
  * @public
358
358
  */
359
- error_description?: string;
359
+ error_description?: string | undefined;
360
360
  /**
361
361
  * @internal
362
362
  */
@@ -374,13 +374,13 @@ export declare class UnsupportedGrantTypeException extends __BaseException {
374
374
  * For this exception the value will be <code>unsupported_grant_type</code>.</p>
375
375
  * @public
376
376
  */
377
- error?: string;
377
+ error?: string | undefined;
378
378
  /**
379
379
  * <p>Human-readable text providing additional information, used to assist the
380
380
  * client developer in understanding the error that occurred.</p>
381
381
  * @public
382
382
  */
383
- error_description?: string;
383
+ error_description?: string | undefined;
384
384
  /**
385
385
  * @internal
386
386
  */
@@ -418,7 +418,7 @@ export interface CreateTokenWithIAMRequest {
418
418
  * application.</p>
419
419
  * @public
420
420
  */
421
- code?: string;
421
+ code?: string | undefined;
422
422
  /**
423
423
  * <p>Used only when calling this API for the Refresh Token grant type. This token is used to
424
424
  * refresh short-term tokens, such as the access token, that might expire.</p>
@@ -427,14 +427,14 @@ export interface CreateTokenWithIAMRequest {
427
427
  * OIDC API Reference</a>.</p>
428
428
  * @public
429
429
  */
430
- refreshToken?: string;
430
+ refreshToken?: string | undefined;
431
431
  /**
432
432
  * <p>Used only when calling this API for the JWT Bearer grant type. This value specifies the JSON
433
433
  * Web Token (JWT) issued by a trusted token issuer. To authorize a trusted token issuer,
434
434
  * configure the JWT Bearer GrantOptions for the application.</p>
435
435
  * @public
436
436
  */
437
- assertion?: string;
437
+ assertion?: string | undefined;
438
438
  /**
439
439
  * <p>The list of scopes for which authorization is requested. The access token that is issued
440
440
  * is limited to the scopes that are granted. If the value is not specified, IAM Identity Center authorizes all
@@ -442,14 +442,14 @@ export interface CreateTokenWithIAMRequest {
442
442
  * <code>openid</code>, <code>aws</code>, <code>sts:identity_context</code>.</p>
443
443
  * @public
444
444
  */
445
- scope?: string[];
445
+ scope?: string[] | undefined;
446
446
  /**
447
447
  * <p>Used only when calling this API for the Authorization Code grant type. This value specifies
448
448
  * the location of the client or application that has registered to receive the authorization code.
449
449
  * </p>
450
450
  * @public
451
451
  */
452
- redirectUri?: string;
452
+ redirectUri?: string | undefined;
453
453
  /**
454
454
  * <p>Used only when calling this API for the Token Exchange grant type. This value specifies
455
455
  * the subject of the exchange. The value of the subject token must be an access token issued by
@@ -457,7 +457,7 @@ export interface CreateTokenWithIAMRequest {
457
457
  * that indicate the requested application as a target audience.</p>
458
458
  * @public
459
459
  */
460
- subjectToken?: string;
460
+ subjectToken?: string | undefined;
461
461
  /**
462
462
  * <p>Used only when calling this API for the Token Exchange grant type. This value specifies
463
463
  * the type of token that is passed as the subject of the exchange. The following value is
@@ -466,7 +466,7 @@ export interface CreateTokenWithIAMRequest {
466
466
  * </p>
467
467
  * @public
468
468
  */
469
- subjectTokenType?: string;
469
+ subjectTokenType?: string | undefined;
470
470
  /**
471
471
  * <p>Used only when calling this API for the Token Exchange grant type. This value specifies
472
472
  * the type of token that the requester can receive. The following values are supported:</p>
@@ -476,14 +476,14 @@ export interface CreateTokenWithIAMRequest {
476
476
  * </p>
477
477
  * @public
478
478
  */
479
- requestedTokenType?: string;
479
+ requestedTokenType?: string | undefined;
480
480
  /**
481
481
  * <p>Used only when calling this API for the Authorization Code grant type. This value is generated
482
482
  * by the client and presented to validate the original code challenge value the client passed at
483
483
  * authorization time.</p>
484
484
  * @public
485
485
  */
486
- codeVerifier?: string;
486
+ codeVerifier?: string | undefined;
487
487
  }
488
488
  /**
489
489
  * @public
@@ -493,18 +493,18 @@ export interface CreateTokenWithIAMResponse {
493
493
  * <p>A bearer token to access Amazon Web Services accounts and applications assigned to a user.</p>
494
494
  * @public
495
495
  */
496
- accessToken?: string;
496
+ accessToken?: string | undefined;
497
497
  /**
498
498
  * <p>Used to notify the requester that the returned token is an access token. The supported
499
499
  * token type is <code>Bearer</code>.</p>
500
500
  * @public
501
501
  */
502
- tokenType?: string;
502
+ tokenType?: string | undefined;
503
503
  /**
504
504
  * <p>Indicates the time in seconds when an access token will expire.</p>
505
505
  * @public
506
506
  */
507
- expiresIn?: number;
507
+ expiresIn?: number | undefined;
508
508
  /**
509
509
  * <p>A token that, if present, can be used to refresh a previously issued access token that
510
510
  * might have expired.</p>
@@ -514,13 +514,13 @@ export interface CreateTokenWithIAMResponse {
514
514
  * OIDC API Reference</a>.</p>
515
515
  * @public
516
516
  */
517
- refreshToken?: string;
517
+ refreshToken?: string | undefined;
518
518
  /**
519
519
  * <p>A JSON Web Token (JWT) that identifies the user associated with the issued access token.
520
520
  * </p>
521
521
  * @public
522
522
  */
523
- idToken?: string;
523
+ idToken?: string | undefined;
524
524
  /**
525
525
  * <p>Indicates the type of tokens that are issued by IAM Identity Center. The following values are supported:
526
526
  * </p>
@@ -530,13 +530,13 @@ export interface CreateTokenWithIAMResponse {
530
530
  * </p>
531
531
  * @public
532
532
  */
533
- issuedTokenType?: string;
533
+ issuedTokenType?: string | undefined;
534
534
  /**
535
535
  * <p>The list of scopes for which authorization is granted. The access token that is issued
536
536
  * is limited to the scopes that are granted.</p>
537
537
  * @public
538
538
  */
539
- scope?: string[];
539
+ scope?: string[] | undefined;
540
540
  }
541
541
  /**
542
542
  * <p>Indicates that a token provided as input to the request was issued by and is only usable
@@ -551,23 +551,23 @@ export declare class InvalidRequestRegionException extends __BaseException {
551
551
  * For this exception the value will be <code>invalid_request</code>.</p>
552
552
  * @public
553
553
  */
554
- error?: string;
554
+ error?: string | undefined;
555
555
  /**
556
556
  * <p>Human-readable text providing additional information, used to assist the
557
557
  * client developer in understanding the error that occurred.</p>
558
558
  * @public
559
559
  */
560
- error_description?: string;
560
+ error_description?: string | undefined;
561
561
  /**
562
562
  * <p>Indicates the IAM Identity Center endpoint which the requester may call with this token.</p>
563
563
  * @public
564
564
  */
565
- endpoint?: string;
565
+ endpoint?: string | undefined;
566
566
  /**
567
567
  * <p>Indicates the region which the requester may call with this token.</p>
568
568
  * @public
569
569
  */
570
- region?: string;
570
+ region?: string | undefined;
571
571
  /**
572
572
  * @internal
573
573
  */
@@ -586,13 +586,13 @@ export declare class InvalidClientMetadataException extends __BaseException {
586
586
  * For this exception the value will be <code>invalid_client_metadata</code>.</p>
587
587
  * @public
588
588
  */
589
- error?: string;
589
+ error?: string | undefined;
590
590
  /**
591
591
  * <p>Human-readable text providing additional information, used to assist the
592
592
  * client developer in understanding the error that occurred.</p>
593
593
  * @public
594
594
  */
595
- error_description?: string;
595
+ error_description?: string | undefined;
596
596
  /**
597
597
  * @internal
598
598
  */
@@ -610,13 +610,13 @@ export declare class InvalidRedirectUriException extends __BaseException {
610
610
  * For this exception the value will be <code>invalid_redirect_uri</code>.</p>
611
611
  * @public
612
612
  */
613
- error?: string;
613
+ error?: string | undefined;
614
614
  /**
615
615
  * <p>Human-readable text providing additional information, used to assist the
616
616
  * client developer in understanding the error that occurred.</p>
617
617
  * @public
618
618
  */
619
- error_description?: string;
619
+ error_description?: string | undefined;
620
620
  /**
621
621
  * @internal
622
622
  */
@@ -642,30 +642,30 @@ export interface RegisterClientRequest {
642
642
  * to restrict permissions when granting an access token.</p>
643
643
  * @public
644
644
  */
645
- scopes?: string[];
645
+ scopes?: string[] | undefined;
646
646
  /**
647
647
  * <p>The list of redirect URI that are defined by the client. At completion of authorization,
648
648
  * this list is used to restrict what locations the user agent can be redirected back to.</p>
649
649
  * @public
650
650
  */
651
- redirectUris?: string[];
651
+ redirectUris?: string[] | undefined;
652
652
  /**
653
653
  * <p>The list of OAuth 2.0 grant types that are defined by the client. This list is used to
654
654
  * restrict the token granting flows available to the client.</p>
655
655
  * @public
656
656
  */
657
- grantTypes?: string[];
657
+ grantTypes?: string[] | undefined;
658
658
  /**
659
659
  * <p>The IAM Identity Center Issuer URL associated with an instance of IAM Identity Center. This value is needed for user access to resources through the client.</p>
660
660
  * @public
661
661
  */
662
- issuerUrl?: string;
662
+ issuerUrl?: string | undefined;
663
663
  /**
664
664
  * <p>This IAM Identity Center application ARN is used to define administrator-managed configuration for public client access to resources. At
665
665
  * authorization, the scopes, grants, and redirect URI available to this client will be restricted by this application resource.</p>
666
666
  * @public
667
667
  */
668
- entitledApplicationArn?: string;
668
+ entitledApplicationArn?: string | undefined;
669
669
  }
670
670
  /**
671
671
  * @public
@@ -676,35 +676,35 @@ export interface RegisterClientResponse {
676
676
  * authenticated by the service in subsequent calls.</p>
677
677
  * @public
678
678
  */
679
- clientId?: string;
679
+ clientId?: string | undefined;
680
680
  /**
681
681
  * <p>A secret string generated for the client. The client will use this string to get
682
682
  * authenticated by the service in subsequent calls.</p>
683
683
  * @public
684
684
  */
685
- clientSecret?: string;
685
+ clientSecret?: string | undefined;
686
686
  /**
687
687
  * <p>Indicates the time at which the <code>clientId</code> and <code>clientSecret</code> were
688
688
  * issued.</p>
689
689
  * @public
690
690
  */
691
- clientIdIssuedAt?: number;
691
+ clientIdIssuedAt?: number | undefined;
692
692
  /**
693
693
  * <p>Indicates the time at which the <code>clientId</code> and <code>clientSecret</code> will
694
694
  * become invalid.</p>
695
695
  * @public
696
696
  */
697
- clientSecretExpiresAt?: number;
697
+ clientSecretExpiresAt?: number | undefined;
698
698
  /**
699
699
  * <p>An endpoint that the client can use to request authorization.</p>
700
700
  * @public
701
701
  */
702
- authorizationEndpoint?: string;
702
+ authorizationEndpoint?: string | undefined;
703
703
  /**
704
704
  * <p>An endpoint that the client can use to create tokens.</p>
705
705
  * @public
706
706
  */
707
- tokenEndpoint?: string;
707
+ tokenEndpoint?: string | undefined;
708
708
  }
709
709
  /**
710
710
  * @public
@@ -738,36 +738,36 @@ export interface StartDeviceAuthorizationResponse {
738
738
  * <p>The short-lived code that is used by the device when polling for a session token.</p>
739
739
  * @public
740
740
  */
741
- deviceCode?: string;
741
+ deviceCode?: string | undefined;
742
742
  /**
743
743
  * <p>A one-time user verification code. This is needed to authorize an in-use device.</p>
744
744
  * @public
745
745
  */
746
- userCode?: string;
746
+ userCode?: string | undefined;
747
747
  /**
748
748
  * <p>The URI of the verification page that takes the <code>userCode</code> to authorize the
749
749
  * device.</p>
750
750
  * @public
751
751
  */
752
- verificationUri?: string;
752
+ verificationUri?: string | undefined;
753
753
  /**
754
754
  * <p>An alternate URL that the client can use to automatically launch a browser. This process
755
755
  * skips the manual step in which the user visits the verification page and enters their
756
756
  * code.</p>
757
757
  * @public
758
758
  */
759
- verificationUriComplete?: string;
759
+ verificationUriComplete?: string | undefined;
760
760
  /**
761
761
  * <p>Indicates the number of seconds in which the verification code will become invalid.</p>
762
762
  * @public
763
763
  */
764
- expiresIn?: number;
764
+ expiresIn?: number | undefined;
765
765
  /**
766
766
  * <p>Indicates the number of seconds the client must wait between attempts when polling for a
767
767
  * session.</p>
768
768
  * @public
769
769
  */
770
- interval?: number;
770
+ interval?: number | undefined;
771
771
  }
772
772
  /**
773
773
  * @internal