@aws-sdk/client-appfabric 3.687.0 → 3.691.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -154,12 +154,12 @@ export interface AppAuthorization {
|
|
|
154
154
|
* <p>This field should always be <code>admin</code>.</p>
|
|
155
155
|
* @public
|
|
156
156
|
*/
|
|
157
|
-
persona?: Persona;
|
|
157
|
+
persona?: Persona | undefined;
|
|
158
158
|
/**
|
|
159
159
|
* <p>The application URL for the OAuth flow.</p>
|
|
160
160
|
* @public
|
|
161
161
|
*/
|
|
162
|
-
authUrl?: string;
|
|
162
|
+
authUrl?: string | undefined;
|
|
163
163
|
}
|
|
164
164
|
/**
|
|
165
165
|
* <p>Contains a summary of an app authorization.</p>
|
|
@@ -239,7 +239,7 @@ export interface AppBundle {
|
|
|
239
239
|
* used to encrypt the application data.</p>
|
|
240
240
|
* @public
|
|
241
241
|
*/
|
|
242
|
-
customerManagedKeyArn?: string;
|
|
242
|
+
customerManagedKeyArn?: string | undefined;
|
|
243
243
|
}
|
|
244
244
|
/**
|
|
245
245
|
* <p>Contains a summary of an app bundle.</p>
|
|
@@ -277,7 +277,7 @@ export interface S3Bucket {
|
|
|
277
277
|
* <p>The object key to use.</p>
|
|
278
278
|
* @public
|
|
279
279
|
*/
|
|
280
|
-
prefix?: string;
|
|
280
|
+
prefix?: string | undefined;
|
|
281
281
|
}
|
|
282
282
|
/**
|
|
283
283
|
* <p>Contains information about an audit log destination.</p>
|
|
@@ -429,12 +429,12 @@ export interface TaskError {
|
|
|
429
429
|
* <p>The code of the error.</p>
|
|
430
430
|
* @public
|
|
431
431
|
*/
|
|
432
|
-
errorCode?: string;
|
|
432
|
+
errorCode?: string | undefined;
|
|
433
433
|
/**
|
|
434
434
|
* <p>The message of the error.</p>
|
|
435
435
|
* @public
|
|
436
436
|
*/
|
|
437
|
-
errorMessage?: string;
|
|
437
|
+
errorMessage?: string | undefined;
|
|
438
438
|
}
|
|
439
439
|
/**
|
|
440
440
|
* <p>Contains information about a user's access to an application.</p>
|
|
@@ -445,22 +445,22 @@ export interface UserAccessResultItem {
|
|
|
445
445
|
* <p>The name of the application.</p>
|
|
446
446
|
* @public
|
|
447
447
|
*/
|
|
448
|
-
app?: string;
|
|
448
|
+
app?: string | undefined;
|
|
449
449
|
/**
|
|
450
450
|
* <p>The ID of the application tenant.</p>
|
|
451
451
|
* @public
|
|
452
452
|
*/
|
|
453
|
-
tenantId?: string;
|
|
453
|
+
tenantId?: string | undefined;
|
|
454
454
|
/**
|
|
455
455
|
* <p>The display name of the tenant.</p>
|
|
456
456
|
* @public
|
|
457
457
|
*/
|
|
458
|
-
tenantDisplayName?: string;
|
|
458
|
+
tenantDisplayName?: string | undefined;
|
|
459
459
|
/**
|
|
460
460
|
* <p>The unique ID of the task.</p>
|
|
461
461
|
* @public
|
|
462
462
|
*/
|
|
463
|
-
taskId?: string;
|
|
463
|
+
taskId?: string | undefined;
|
|
464
464
|
/**
|
|
465
465
|
* <p>The status of the user access result item.</p>
|
|
466
466
|
* <p>The following states are possible:</p>
|
|
@@ -484,42 +484,42 @@ export interface UserAccessResultItem {
|
|
|
484
484
|
* </ul>
|
|
485
485
|
* @public
|
|
486
486
|
*/
|
|
487
|
-
resultStatus?: ResultStatus;
|
|
487
|
+
resultStatus?: ResultStatus | undefined;
|
|
488
488
|
/**
|
|
489
489
|
* <p>The email address of the target user.</p>
|
|
490
490
|
* @public
|
|
491
491
|
*/
|
|
492
|
-
email?: string;
|
|
492
|
+
email?: string | undefined;
|
|
493
493
|
/**
|
|
494
494
|
* <p>The unique ID of user.</p>
|
|
495
495
|
* @public
|
|
496
496
|
*/
|
|
497
|
-
userId?: string;
|
|
497
|
+
userId?: string | undefined;
|
|
498
498
|
/**
|
|
499
499
|
* <p>The full name of the user.</p>
|
|
500
500
|
* @public
|
|
501
501
|
*/
|
|
502
|
-
userFullName?: string;
|
|
502
|
+
userFullName?: string | undefined;
|
|
503
503
|
/**
|
|
504
504
|
* <p>The first name of the user.</p>
|
|
505
505
|
* @public
|
|
506
506
|
*/
|
|
507
|
-
userFirstName?: string;
|
|
507
|
+
userFirstName?: string | undefined;
|
|
508
508
|
/**
|
|
509
509
|
* <p>The last name of the user.</p>
|
|
510
510
|
* @public
|
|
511
511
|
*/
|
|
512
|
-
userLastName?: string;
|
|
512
|
+
userLastName?: string | undefined;
|
|
513
513
|
/**
|
|
514
514
|
* <p>The status of the user returned by the application.</p>
|
|
515
515
|
* @public
|
|
516
516
|
*/
|
|
517
|
-
userStatus?: string;
|
|
517
|
+
userStatus?: string | undefined;
|
|
518
518
|
/**
|
|
519
519
|
* <p>Contains information about an error returned from a user access task.</p>
|
|
520
520
|
* @public
|
|
521
521
|
*/
|
|
522
|
-
taskError?: TaskError;
|
|
522
|
+
taskError?: TaskError | undefined;
|
|
523
523
|
}
|
|
524
524
|
/**
|
|
525
525
|
* @public
|
|
@@ -529,7 +529,7 @@ export interface BatchGetUserAccessTasksResponse {
|
|
|
529
529
|
* <p>Contains a list of user access results.</p>
|
|
530
530
|
* @public
|
|
531
531
|
*/
|
|
532
|
-
userAccessResultsList?: UserAccessResultItem[];
|
|
532
|
+
userAccessResultsList?: UserAccessResultItem[] | undefined;
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* <p>The request processing has failed because of an unknown error, exception, or failure
|
|
@@ -544,7 +544,7 @@ export declare class InternalServerException extends __BaseException {
|
|
|
544
544
|
* <p>The period of time after which you should retry your request.</p>
|
|
545
545
|
* @public
|
|
546
546
|
*/
|
|
547
|
-
retryAfterSeconds?: number;
|
|
547
|
+
retryAfterSeconds?: number | undefined;
|
|
548
548
|
/**
|
|
549
549
|
* @internal
|
|
550
550
|
*/
|
|
@@ -586,17 +586,17 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
586
586
|
* <p>The code of the service.</p>
|
|
587
587
|
* @public
|
|
588
588
|
*/
|
|
589
|
-
serviceCode?: string;
|
|
589
|
+
serviceCode?: string | undefined;
|
|
590
590
|
/**
|
|
591
591
|
* <p>The code for the quota exceeded.</p>
|
|
592
592
|
* @public
|
|
593
593
|
*/
|
|
594
|
-
quotaCode?: string;
|
|
594
|
+
quotaCode?: string | undefined;
|
|
595
595
|
/**
|
|
596
596
|
* <p>The period of time after which you should retry your request.</p>
|
|
597
597
|
* @public
|
|
598
598
|
*/
|
|
599
|
-
retryAfterSeconds?: number;
|
|
599
|
+
retryAfterSeconds?: number | undefined;
|
|
600
600
|
/**
|
|
601
601
|
* @internal
|
|
602
602
|
*/
|
|
@@ -649,7 +649,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
649
649
|
* <p>The field list.</p>
|
|
650
650
|
* @public
|
|
651
651
|
*/
|
|
652
|
-
fieldList?: ValidationExceptionField[];
|
|
652
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
653
653
|
/**
|
|
654
654
|
* @internal
|
|
655
655
|
*/
|
|
@@ -699,7 +699,7 @@ export interface ConnectAppAuthorizationRequest {
|
|
|
699
699
|
* (<code>oauth2</code>) authorization type.</p>
|
|
700
700
|
* @public
|
|
701
701
|
*/
|
|
702
|
-
authRequest?: AuthRequest;
|
|
702
|
+
authRequest?: AuthRequest | undefined;
|
|
703
703
|
}
|
|
704
704
|
/**
|
|
705
705
|
* @public
|
|
@@ -897,12 +897,12 @@ export interface CreateAppAuthorizationRequest {
|
|
|
897
897
|
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
898
898
|
* @public
|
|
899
899
|
*/
|
|
900
|
-
clientToken?: string;
|
|
900
|
+
clientToken?: string | undefined;
|
|
901
901
|
/**
|
|
902
902
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
903
903
|
* @public
|
|
904
904
|
*/
|
|
905
|
-
tags?: Tag[];
|
|
905
|
+
tags?: Tag[] | undefined;
|
|
906
906
|
}
|
|
907
907
|
/**
|
|
908
908
|
* @public
|
|
@@ -963,18 +963,18 @@ export interface CreateAppBundleRequest {
|
|
|
963
963
|
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
964
964
|
* @public
|
|
965
965
|
*/
|
|
966
|
-
clientToken?: string;
|
|
966
|
+
clientToken?: string | undefined;
|
|
967
967
|
/**
|
|
968
968
|
* <p>The Amazon Resource Name (ARN) of the Key Management Service (KMS) key to
|
|
969
969
|
* use to encrypt the application data. If this is not specified, an Amazon Web Services owned key is used for encryption.</p>
|
|
970
970
|
* @public
|
|
971
971
|
*/
|
|
972
|
-
customerManagedKeyIdentifier?: string;
|
|
972
|
+
customerManagedKeyIdentifier?: string | undefined;
|
|
973
973
|
/**
|
|
974
974
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
975
975
|
* @public
|
|
976
976
|
*/
|
|
977
|
-
tags?: Tag[];
|
|
977
|
+
tags?: Tag[] | undefined;
|
|
978
978
|
}
|
|
979
979
|
/**
|
|
980
980
|
* @public
|
|
@@ -1098,12 +1098,12 @@ export interface CreateIngestionRequest {
|
|
|
1098
1098
|
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
1099
1099
|
* @public
|
|
1100
1100
|
*/
|
|
1101
|
-
clientToken?: string;
|
|
1101
|
+
clientToken?: string | undefined;
|
|
1102
1102
|
/**
|
|
1103
1103
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
1104
1104
|
* @public
|
|
1105
1105
|
*/
|
|
1106
|
-
tags?: Tag[];
|
|
1106
|
+
tags?: Tag[] | undefined;
|
|
1107
1107
|
}
|
|
1108
1108
|
/**
|
|
1109
1109
|
* @public
|
|
@@ -1272,12 +1272,12 @@ export interface CreateIngestionDestinationRequest {
|
|
|
1272
1272
|
* parameters, the retry fails with an <code>IdempotentParameterMismatch</code> error.</p>
|
|
1273
1273
|
* @public
|
|
1274
1274
|
*/
|
|
1275
|
-
clientToken?: string;
|
|
1275
|
+
clientToken?: string | undefined;
|
|
1276
1276
|
/**
|
|
1277
1277
|
* <p>A map of the key-value pairs of the tag or tags to assign to the resource.</p>
|
|
1278
1278
|
* @public
|
|
1279
1279
|
*/
|
|
1280
|
-
tags?: Tag[];
|
|
1280
|
+
tags?: Tag[] | undefined;
|
|
1281
1281
|
}
|
|
1282
1282
|
/**
|
|
1283
1283
|
* @public
|
|
@@ -1334,24 +1334,24 @@ export interface IngestionDestination {
|
|
|
1334
1334
|
* </ul>
|
|
1335
1335
|
* @public
|
|
1336
1336
|
*/
|
|
1337
|
-
status?: IngestionDestinationStatus;
|
|
1337
|
+
status?: IngestionDestinationStatus | undefined;
|
|
1338
1338
|
/**
|
|
1339
1339
|
* <p>The reason for the current status of the ingestion destination.</p>
|
|
1340
1340
|
* <p>Only present when the <code>status</code> of ingestion destination is
|
|
1341
1341
|
* <code>Failed</code>.</p>
|
|
1342
1342
|
* @public
|
|
1343
1343
|
*/
|
|
1344
|
-
statusReason?: string;
|
|
1344
|
+
statusReason?: string | undefined;
|
|
1345
1345
|
/**
|
|
1346
1346
|
* <p>The timestamp of when the ingestion destination was created.</p>
|
|
1347
1347
|
* @public
|
|
1348
1348
|
*/
|
|
1349
|
-
createdAt?: Date;
|
|
1349
|
+
createdAt?: Date | undefined;
|
|
1350
1350
|
/**
|
|
1351
1351
|
* <p>The timestamp of when the ingestion destination was last updated.</p>
|
|
1352
1352
|
* @public
|
|
1353
1353
|
*/
|
|
1354
|
-
updatedAt?: Date;
|
|
1354
|
+
updatedAt?: Date | undefined;
|
|
1355
1355
|
}
|
|
1356
1356
|
/**
|
|
1357
1357
|
* @public
|
|
@@ -1575,7 +1575,7 @@ export interface ListAppAuthorizationsRequest {
|
|
|
1575
1575
|
* fewer than the specified maximum.</p>
|
|
1576
1576
|
* @public
|
|
1577
1577
|
*/
|
|
1578
|
-
maxResults?: number;
|
|
1578
|
+
maxResults?: number | undefined;
|
|
1579
1579
|
/**
|
|
1580
1580
|
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1581
1581
|
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
@@ -1584,7 +1584,7 @@ export interface ListAppAuthorizationsRequest {
|
|
|
1584
1584
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1585
1585
|
* @public
|
|
1586
1586
|
*/
|
|
1587
|
-
nextToken?: string;
|
|
1587
|
+
nextToken?: string | undefined;
|
|
1588
1588
|
}
|
|
1589
1589
|
/**
|
|
1590
1590
|
* @public
|
|
@@ -1603,7 +1603,7 @@ export interface ListAppAuthorizationsResponse {
|
|
|
1603
1603
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1604
1604
|
* @public
|
|
1605
1605
|
*/
|
|
1606
|
-
nextToken?: string;
|
|
1606
|
+
nextToken?: string | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
/**
|
|
1609
1609
|
* @public
|
|
@@ -1616,7 +1616,7 @@ export interface ListAppBundlesRequest {
|
|
|
1616
1616
|
* fewer than the specified maximum.</p>
|
|
1617
1617
|
* @public
|
|
1618
1618
|
*/
|
|
1619
|
-
maxResults?: number;
|
|
1619
|
+
maxResults?: number | undefined;
|
|
1620
1620
|
/**
|
|
1621
1621
|
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1622
1622
|
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
@@ -1625,7 +1625,7 @@ export interface ListAppBundlesRequest {
|
|
|
1625
1625
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1626
1626
|
* @public
|
|
1627
1627
|
*/
|
|
1628
|
-
nextToken?: string;
|
|
1628
|
+
nextToken?: string | undefined;
|
|
1629
1629
|
}
|
|
1630
1630
|
/**
|
|
1631
1631
|
* @public
|
|
@@ -1644,7 +1644,7 @@ export interface ListAppBundlesResponse {
|
|
|
1644
1644
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1645
1645
|
* @public
|
|
1646
1646
|
*/
|
|
1647
|
-
nextToken?: string;
|
|
1647
|
+
nextToken?: string | undefined;
|
|
1648
1648
|
}
|
|
1649
1649
|
/**
|
|
1650
1650
|
* @public
|
|
@@ -1669,7 +1669,7 @@ export interface ListIngestionDestinationsRequest {
|
|
|
1669
1669
|
* fewer than the specified maximum.</p>
|
|
1670
1670
|
* @public
|
|
1671
1671
|
*/
|
|
1672
|
-
maxResults?: number;
|
|
1672
|
+
maxResults?: number | undefined;
|
|
1673
1673
|
/**
|
|
1674
1674
|
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1675
1675
|
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
@@ -1678,7 +1678,7 @@ export interface ListIngestionDestinationsRequest {
|
|
|
1678
1678
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1679
1679
|
* @public
|
|
1680
1680
|
*/
|
|
1681
|
-
nextToken?: string;
|
|
1681
|
+
nextToken?: string | undefined;
|
|
1682
1682
|
}
|
|
1683
1683
|
/**
|
|
1684
1684
|
* <p>Contains a summary of an ingestion destination.</p>
|
|
@@ -1708,7 +1708,7 @@ export interface ListIngestionDestinationsResponse {
|
|
|
1708
1708
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
nextToken?: string;
|
|
1711
|
+
nextToken?: string | undefined;
|
|
1712
1712
|
}
|
|
1713
1713
|
/**
|
|
1714
1714
|
* @public
|
|
@@ -1727,7 +1727,7 @@ export interface ListIngestionsRequest {
|
|
|
1727
1727
|
* fewer than the specified maximum.</p>
|
|
1728
1728
|
* @public
|
|
1729
1729
|
*/
|
|
1730
|
-
maxResults?: number;
|
|
1730
|
+
maxResults?: number | undefined;
|
|
1731
1731
|
/**
|
|
1732
1732
|
* <p>If <code>nextToken</code> is returned, there are more results available. The value of
|
|
1733
1733
|
* <code>nextToken</code> is a unique pagination token for each page. Make the call again
|
|
@@ -1736,7 +1736,7 @@ export interface ListIngestionsRequest {
|
|
|
1736
1736
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1737
1737
|
* @public
|
|
1738
1738
|
*/
|
|
1739
|
-
nextToken?: string;
|
|
1739
|
+
nextToken?: string | undefined;
|
|
1740
1740
|
}
|
|
1741
1741
|
/**
|
|
1742
1742
|
* <p>Contains a summary of an ingestion.</p>
|
|
@@ -1781,7 +1781,7 @@ export interface ListIngestionsResponse {
|
|
|
1781
1781
|
* an <i>HTTP 400 InvalidToken error</i>.</p>
|
|
1782
1782
|
* @public
|
|
1783
1783
|
*/
|
|
1784
|
-
nextToken?: string;
|
|
1784
|
+
nextToken?: string | undefined;
|
|
1785
1785
|
}
|
|
1786
1786
|
/**
|
|
1787
1787
|
* @public
|
|
@@ -1802,7 +1802,7 @@ export interface ListTagsForResourceResponse {
|
|
|
1802
1802
|
* <p>A map of the key-value pairs for the tag or tags assigned to the specified resource.</p>
|
|
1803
1803
|
* @public
|
|
1804
1804
|
*/
|
|
1805
|
-
tags?: Tag[];
|
|
1805
|
+
tags?: Tag[] | undefined;
|
|
1806
1806
|
}
|
|
1807
1807
|
/**
|
|
1808
1808
|
* @public
|
|
@@ -1861,12 +1861,12 @@ export interface UserAccessTaskItem {
|
|
|
1861
1861
|
* <p>The unique ID of the task.</p>
|
|
1862
1862
|
* @public
|
|
1863
1863
|
*/
|
|
1864
|
-
taskId?: string;
|
|
1864
|
+
taskId?: string | undefined;
|
|
1865
1865
|
/**
|
|
1866
1866
|
* <p>Error from the task, if any.</p>
|
|
1867
1867
|
* @public
|
|
1868
1868
|
*/
|
|
1869
|
-
error?: TaskError;
|
|
1869
|
+
error?: TaskError | undefined;
|
|
1870
1870
|
}
|
|
1871
1871
|
/**
|
|
1872
1872
|
* @public
|
|
@@ -1876,7 +1876,7 @@ export interface StartUserAccessTasksResponse {
|
|
|
1876
1876
|
* <p>Contains a list of user access task information.</p>
|
|
1877
1877
|
* @public
|
|
1878
1878
|
*/
|
|
1879
|
-
userAccessTasksList?: UserAccessTaskItem[];
|
|
1879
|
+
userAccessTasksList?: UserAccessTaskItem[] | undefined;
|
|
1880
1880
|
}
|
|
1881
1881
|
/**
|
|
1882
1882
|
* @public
|
|
@@ -1965,13 +1965,13 @@ export interface UpdateAppAuthorizationRequest {
|
|
|
1965
1965
|
* (<code>oauth2</code>), then you should provide only the OAuth2 credentials.</p>
|
|
1966
1966
|
* @public
|
|
1967
1967
|
*/
|
|
1968
|
-
credential?: Credential;
|
|
1968
|
+
credential?: Credential | undefined;
|
|
1969
1969
|
/**
|
|
1970
1970
|
* <p>Contains information about an application tenant, such as the application display name
|
|
1971
1971
|
* and identifier.</p>
|
|
1972
1972
|
* @public
|
|
1973
1973
|
*/
|
|
1974
|
-
tenant?: Tenant;
|
|
1974
|
+
tenant?: Tenant | undefined;
|
|
1975
1975
|
}
|
|
1976
1976
|
/**
|
|
1977
1977
|
* @public
|
|
@@ -41,8 +41,8 @@ export interface AppAuthorization {
|
|
|
41
41
|
status: AppAuthorizationStatus | undefined;
|
|
42
42
|
createdAt: Date | undefined;
|
|
43
43
|
updatedAt: Date | undefined;
|
|
44
|
-
persona?: Persona;
|
|
45
|
-
authUrl?: string;
|
|
44
|
+
persona?: Persona | undefined;
|
|
45
|
+
authUrl?: string | undefined;
|
|
46
46
|
}
|
|
47
47
|
export interface AppAuthorizationSummary {
|
|
48
48
|
appAuthorizationArn: string | undefined;
|
|
@@ -54,7 +54,7 @@ export interface AppAuthorizationSummary {
|
|
|
54
54
|
}
|
|
55
55
|
export interface AppBundle {
|
|
56
56
|
arn: string | undefined;
|
|
57
|
-
customerManagedKeyArn?: string;
|
|
57
|
+
customerManagedKeyArn?: string | undefined;
|
|
58
58
|
}
|
|
59
59
|
export interface AppBundleSummary {
|
|
60
60
|
arn: string | undefined;
|
|
@@ -64,7 +64,7 @@ export interface FirehoseStream {
|
|
|
64
64
|
}
|
|
65
65
|
export interface S3Bucket {
|
|
66
66
|
bucketName: string | undefined;
|
|
67
|
-
prefix?: string;
|
|
67
|
+
prefix?: string | undefined;
|
|
68
68
|
}
|
|
69
69
|
export type Destination =
|
|
70
70
|
| Destination.FirehoseStreamMember
|
|
@@ -126,31 +126,31 @@ export declare const ResultStatus: {
|
|
|
126
126
|
};
|
|
127
127
|
export type ResultStatus = (typeof ResultStatus)[keyof typeof ResultStatus];
|
|
128
128
|
export interface TaskError {
|
|
129
|
-
errorCode?: string;
|
|
130
|
-
errorMessage?: string;
|
|
129
|
+
errorCode?: string | undefined;
|
|
130
|
+
errorMessage?: string | undefined;
|
|
131
131
|
}
|
|
132
132
|
export interface UserAccessResultItem {
|
|
133
|
-
app?: string;
|
|
134
|
-
tenantId?: string;
|
|
135
|
-
tenantDisplayName?: string;
|
|
136
|
-
taskId?: string;
|
|
137
|
-
resultStatus?: ResultStatus;
|
|
138
|
-
email?: string;
|
|
139
|
-
userId?: string;
|
|
140
|
-
userFullName?: string;
|
|
141
|
-
userFirstName?: string;
|
|
142
|
-
userLastName?: string;
|
|
143
|
-
userStatus?: string;
|
|
144
|
-
taskError?: TaskError;
|
|
133
|
+
app?: string | undefined;
|
|
134
|
+
tenantId?: string | undefined;
|
|
135
|
+
tenantDisplayName?: string | undefined;
|
|
136
|
+
taskId?: string | undefined;
|
|
137
|
+
resultStatus?: ResultStatus | undefined;
|
|
138
|
+
email?: string | undefined;
|
|
139
|
+
userId?: string | undefined;
|
|
140
|
+
userFullName?: string | undefined;
|
|
141
|
+
userFirstName?: string | undefined;
|
|
142
|
+
userLastName?: string | undefined;
|
|
143
|
+
userStatus?: string | undefined;
|
|
144
|
+
taskError?: TaskError | undefined;
|
|
145
145
|
}
|
|
146
146
|
export interface BatchGetUserAccessTasksResponse {
|
|
147
|
-
userAccessResultsList?: UserAccessResultItem[];
|
|
147
|
+
userAccessResultsList?: UserAccessResultItem[] | undefined;
|
|
148
148
|
}
|
|
149
149
|
export declare class InternalServerException extends __BaseException {
|
|
150
150
|
readonly name: "InternalServerException";
|
|
151
151
|
readonly $fault: "server";
|
|
152
152
|
$retryable: {};
|
|
153
|
-
retryAfterSeconds?: number;
|
|
153
|
+
retryAfterSeconds?: number | undefined;
|
|
154
154
|
constructor(
|
|
155
155
|
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
156
156
|
);
|
|
@@ -170,9 +170,9 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
170
170
|
$retryable: {
|
|
171
171
|
throttling: boolean;
|
|
172
172
|
};
|
|
173
|
-
serviceCode?: string;
|
|
174
|
-
quotaCode?: string;
|
|
175
|
-
retryAfterSeconds?: number;
|
|
173
|
+
serviceCode?: string | undefined;
|
|
174
|
+
quotaCode?: string | undefined;
|
|
175
|
+
retryAfterSeconds?: number | undefined;
|
|
176
176
|
constructor(
|
|
177
177
|
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
178
178
|
);
|
|
@@ -193,7 +193,7 @@ export declare class ValidationException extends __BaseException {
|
|
|
193
193
|
readonly name: "ValidationException";
|
|
194
194
|
readonly $fault: "client";
|
|
195
195
|
reason: ValidationExceptionReason | undefined;
|
|
196
|
-
fieldList?: ValidationExceptionField[];
|
|
196
|
+
fieldList?: ValidationExceptionField[] | undefined;
|
|
197
197
|
constructor(
|
|
198
198
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
199
199
|
);
|
|
@@ -208,7 +208,7 @@ export declare class ConflictException extends __BaseException {
|
|
|
208
208
|
export interface ConnectAppAuthorizationRequest {
|
|
209
209
|
appBundleIdentifier: string | undefined;
|
|
210
210
|
appAuthorizationIdentifier: string | undefined;
|
|
211
|
-
authRequest?: AuthRequest;
|
|
211
|
+
authRequest?: AuthRequest | undefined;
|
|
212
212
|
}
|
|
213
213
|
export interface ConnectAppAuthorizationResponse {
|
|
214
214
|
appAuthorizationSummary: AppAuthorizationSummary | undefined;
|
|
@@ -254,8 +254,8 @@ export interface CreateAppAuthorizationRequest {
|
|
|
254
254
|
credential: Credential | undefined;
|
|
255
255
|
tenant: Tenant | undefined;
|
|
256
256
|
authType: AuthType | undefined;
|
|
257
|
-
clientToken?: string;
|
|
258
|
-
tags?: Tag[];
|
|
257
|
+
clientToken?: string | undefined;
|
|
258
|
+
tags?: Tag[] | undefined;
|
|
259
259
|
}
|
|
260
260
|
export interface CreateAppAuthorizationResponse {
|
|
261
261
|
appAuthorization: AppAuthorization | undefined;
|
|
@@ -272,9 +272,9 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
272
272
|
);
|
|
273
273
|
}
|
|
274
274
|
export interface CreateAppBundleRequest {
|
|
275
|
-
clientToken?: string;
|
|
276
|
-
customerManagedKeyIdentifier?: string;
|
|
277
|
-
tags?: Tag[];
|
|
275
|
+
clientToken?: string | undefined;
|
|
276
|
+
customerManagedKeyIdentifier?: string | undefined;
|
|
277
|
+
tags?: Tag[] | undefined;
|
|
278
278
|
}
|
|
279
279
|
export interface CreateAppBundleResponse {
|
|
280
280
|
appBundle: AppBundle | undefined;
|
|
@@ -288,8 +288,8 @@ export interface CreateIngestionRequest {
|
|
|
288
288
|
app: string | undefined;
|
|
289
289
|
tenantId: string | undefined;
|
|
290
290
|
ingestionType: IngestionType | undefined;
|
|
291
|
-
clientToken?: string;
|
|
292
|
-
tags?: Tag[];
|
|
291
|
+
clientToken?: string | undefined;
|
|
292
|
+
tags?: Tag[] | undefined;
|
|
293
293
|
}
|
|
294
294
|
export declare const IngestionState: {
|
|
295
295
|
readonly DISABLED: "disabled";
|
|
@@ -351,8 +351,8 @@ export interface CreateIngestionDestinationRequest {
|
|
|
351
351
|
ingestionIdentifier: string | undefined;
|
|
352
352
|
processingConfiguration: ProcessingConfiguration | undefined;
|
|
353
353
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
354
|
-
clientToken?: string;
|
|
355
|
-
tags?: Tag[];
|
|
354
|
+
clientToken?: string | undefined;
|
|
355
|
+
tags?: Tag[] | undefined;
|
|
356
356
|
}
|
|
357
357
|
export declare const IngestionDestinationStatus: {
|
|
358
358
|
readonly ACTIVE: "Active";
|
|
@@ -365,10 +365,10 @@ export interface IngestionDestination {
|
|
|
365
365
|
ingestionArn: string | undefined;
|
|
366
366
|
processingConfiguration: ProcessingConfiguration | undefined;
|
|
367
367
|
destinationConfiguration: DestinationConfiguration | undefined;
|
|
368
|
-
status?: IngestionDestinationStatus;
|
|
369
|
-
statusReason?: string;
|
|
370
|
-
createdAt?: Date;
|
|
371
|
-
updatedAt?: Date;
|
|
368
|
+
status?: IngestionDestinationStatus | undefined;
|
|
369
|
+
statusReason?: string | undefined;
|
|
370
|
+
createdAt?: Date | undefined;
|
|
371
|
+
updatedAt?: Date | undefined;
|
|
372
372
|
}
|
|
373
373
|
export interface CreateIngestionDestinationResponse {
|
|
374
374
|
ingestionDestination: IngestionDestination | undefined;
|
|
@@ -423,38 +423,38 @@ export interface GetIngestionDestinationResponse {
|
|
|
423
423
|
}
|
|
424
424
|
export interface ListAppAuthorizationsRequest {
|
|
425
425
|
appBundleIdentifier: string | undefined;
|
|
426
|
-
maxResults?: number;
|
|
427
|
-
nextToken?: string;
|
|
426
|
+
maxResults?: number | undefined;
|
|
427
|
+
nextToken?: string | undefined;
|
|
428
428
|
}
|
|
429
429
|
export interface ListAppAuthorizationsResponse {
|
|
430
430
|
appAuthorizationSummaryList: AppAuthorizationSummary[] | undefined;
|
|
431
|
-
nextToken?: string;
|
|
431
|
+
nextToken?: string | undefined;
|
|
432
432
|
}
|
|
433
433
|
export interface ListAppBundlesRequest {
|
|
434
|
-
maxResults?: number;
|
|
435
|
-
nextToken?: string;
|
|
434
|
+
maxResults?: number | undefined;
|
|
435
|
+
nextToken?: string | undefined;
|
|
436
436
|
}
|
|
437
437
|
export interface ListAppBundlesResponse {
|
|
438
438
|
appBundleSummaryList: AppBundleSummary[] | undefined;
|
|
439
|
-
nextToken?: string;
|
|
439
|
+
nextToken?: string | undefined;
|
|
440
440
|
}
|
|
441
441
|
export interface ListIngestionDestinationsRequest {
|
|
442
442
|
appBundleIdentifier: string | undefined;
|
|
443
443
|
ingestionIdentifier: string | undefined;
|
|
444
|
-
maxResults?: number;
|
|
445
|
-
nextToken?: string;
|
|
444
|
+
maxResults?: number | undefined;
|
|
445
|
+
nextToken?: string | undefined;
|
|
446
446
|
}
|
|
447
447
|
export interface IngestionDestinationSummary {
|
|
448
448
|
arn: string | undefined;
|
|
449
449
|
}
|
|
450
450
|
export interface ListIngestionDestinationsResponse {
|
|
451
451
|
ingestionDestinations: IngestionDestinationSummary[] | undefined;
|
|
452
|
-
nextToken?: string;
|
|
452
|
+
nextToken?: string | undefined;
|
|
453
453
|
}
|
|
454
454
|
export interface ListIngestionsRequest {
|
|
455
455
|
appBundleIdentifier: string | undefined;
|
|
456
|
-
maxResults?: number;
|
|
457
|
-
nextToken?: string;
|
|
456
|
+
maxResults?: number | undefined;
|
|
457
|
+
nextToken?: string | undefined;
|
|
458
458
|
}
|
|
459
459
|
export interface IngestionSummary {
|
|
460
460
|
arn: string | undefined;
|
|
@@ -464,13 +464,13 @@ export interface IngestionSummary {
|
|
|
464
464
|
}
|
|
465
465
|
export interface ListIngestionsResponse {
|
|
466
466
|
ingestions: IngestionSummary[] | undefined;
|
|
467
|
-
nextToken?: string;
|
|
467
|
+
nextToken?: string | undefined;
|
|
468
468
|
}
|
|
469
469
|
export interface ListTagsForResourceRequest {
|
|
470
470
|
resourceArn: string | undefined;
|
|
471
471
|
}
|
|
472
472
|
export interface ListTagsForResourceResponse {
|
|
473
|
-
tags?: Tag[];
|
|
473
|
+
tags?: Tag[] | undefined;
|
|
474
474
|
}
|
|
475
475
|
export interface StartIngestionRequest {
|
|
476
476
|
ingestionIdentifier: string | undefined;
|
|
@@ -484,11 +484,11 @@ export interface StartUserAccessTasksRequest {
|
|
|
484
484
|
export interface UserAccessTaskItem {
|
|
485
485
|
app: string | undefined;
|
|
486
486
|
tenantId: string | undefined;
|
|
487
|
-
taskId?: string;
|
|
488
|
-
error?: TaskError;
|
|
487
|
+
taskId?: string | undefined;
|
|
488
|
+
error?: TaskError | undefined;
|
|
489
489
|
}
|
|
490
490
|
export interface StartUserAccessTasksResponse {
|
|
491
|
-
userAccessTasksList?: UserAccessTaskItem[];
|
|
491
|
+
userAccessTasksList?: UserAccessTaskItem[] | undefined;
|
|
492
492
|
}
|
|
493
493
|
export interface StopIngestionRequest {
|
|
494
494
|
ingestionIdentifier: string | undefined;
|
|
@@ -508,8 +508,8 @@ export interface UntagResourceResponse {}
|
|
|
508
508
|
export interface UpdateAppAuthorizationRequest {
|
|
509
509
|
appBundleIdentifier: string | undefined;
|
|
510
510
|
appAuthorizationIdentifier: string | undefined;
|
|
511
|
-
credential?: Credential;
|
|
512
|
-
tenant?: Tenant;
|
|
511
|
+
credential?: Credential | undefined;
|
|
512
|
+
tenant?: Tenant | undefined;
|
|
513
513
|
}
|
|
514
514
|
export interface UpdateAppAuthorizationResponse {
|
|
515
515
|
appAuthorization: AppAuthorization | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-appfabric",
|
|
3
3
|
"description": "AWS SDK for JavaScript Appfabric Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.691.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-appfabric",
|
|
@@ -20,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|