@aws-sdk/client-transfer 3.696.0 → 3.703.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.
- package/README.md +64 -0
- package/dist-cjs/index.js +377 -5
- package/dist-es/Transfer.js +16 -0
- package/dist-es/commands/CreateWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCommand.js +22 -0
- package/dist-es/commands/DeleteWebAppCustomizationCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCommand.js +22 -0
- package/dist-es/commands/DescribeWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/ListWebAppsCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCommand.js +22 -0
- package/dist-es/commands/UpdateWebAppCustomizationCommand.js +23 -0
- package/dist-es/commands/index.js +8 -0
- package/dist-es/models/models_0.js +48 -0
- package/dist-es/pagination/ListWebAppsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_1.js +171 -3
- package/dist-types/Transfer.d.ts +57 -0
- package/dist-types/TransferClient.d.ts +10 -2
- package/dist-types/commands/CreateWebAppCommand.d.ts +102 -0
- package/dist-types/commands/DeleteWebAppCommand.d.ts +85 -0
- package/dist-types/commands/DeleteWebAppCustomizationCommand.d.ts +90 -0
- package/dist-types/commands/DescribeWebAppCommand.d.ts +108 -0
- package/dist-types/commands/DescribeWebAppCustomizationCommand.d.ts +93 -0
- package/dist-types/commands/ListWebAppsCommand.d.ts +92 -0
- package/dist-types/commands/UpdateWebAppCommand.d.ts +101 -0
- package/dist-types/commands/UpdateWebAppCustomizationCommand.d.ts +95 -0
- package/dist-types/commands/index.d.ts +8 -0
- package/dist-types/models/models_0.d.ts +490 -12
- package/dist-types/pagination/ListWebAppsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_1.d.ts +72 -0
- package/dist-types/ts3.4/Transfer.d.ts +137 -0
- package/dist-types/ts3.4/TransferClient.d.ts +50 -2
- package/dist-types/ts3.4/commands/CreateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCommand.d.ts +45 -0
- package/dist-types/ts3.4/commands/DeleteWebAppCustomizationCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DescribeWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListWebAppsCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UpdateWebAppCustomizationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +8 -0
- package/dist-types/ts3.4/models/models_0.d.ts +179 -0
- package/dist-types/ts3.4/pagination/ListWebAppsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +96 -0
- package/package.json +4 -4
|
@@ -359,7 +359,7 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
359
359
|
*/
|
|
360
360
|
export interface ListAgreementsRequest {
|
|
361
361
|
/**
|
|
362
|
-
* <p>The maximum number of
|
|
362
|
+
* <p>The maximum number of items to return.</p>
|
|
363
363
|
* @public
|
|
364
364
|
*/
|
|
365
365
|
MaxResults?: number | undefined;
|
|
@@ -957,7 +957,7 @@ export interface ImportCertificateResponse {
|
|
|
957
957
|
*/
|
|
958
958
|
export interface ListCertificatesRequest {
|
|
959
959
|
/**
|
|
960
|
-
* <p>The maximum number of
|
|
960
|
+
* <p>The maximum number of items to return.</p>
|
|
961
961
|
* @public
|
|
962
962
|
*/
|
|
963
963
|
MaxResults?: number | undefined;
|
|
@@ -1386,7 +1386,7 @@ export interface DescribeConnectorResponse {
|
|
|
1386
1386
|
*/
|
|
1387
1387
|
export interface ListConnectorsRequest {
|
|
1388
1388
|
/**
|
|
1389
|
-
* <p>The maximum number of
|
|
1389
|
+
* <p>The maximum number of items to return.</p>
|
|
1390
1390
|
* @public
|
|
1391
1391
|
*/
|
|
1392
1392
|
MaxResults?: number | undefined;
|
|
@@ -2438,10 +2438,11 @@ export interface CreateServerRequest {
|
|
|
2438
2438
|
HostKey?: string | undefined;
|
|
2439
2439
|
/**
|
|
2440
2440
|
* <p>Required when <code>IdentityProviderType</code> is set to
|
|
2441
|
-
* <code>AWS_DIRECTORY_SERVICE</code>, <code>Amazon Web Services_LAMBDA</code> or
|
|
2442
|
-
*
|
|
2443
|
-
* invoke a customer-supplied authentication
|
|
2444
|
-
*
|
|
2441
|
+
* <code>AWS_DIRECTORY_SERVICE</code>, <code>Amazon Web Services_LAMBDA</code> or
|
|
2442
|
+
* <code>API_GATEWAY</code>. Accepts an array containing all of the information required to use
|
|
2443
|
+
* a directory in <code>AWS_DIRECTORY_SERVICE</code> or invoke a customer-supplied authentication
|
|
2444
|
+
* API, including the API Gateway URL. Cannot be specified when <code>IdentityProviderType</code>
|
|
2445
|
+
* is set to <code>SERVICE_MANAGED</code>.</p>
|
|
2445
2446
|
* @public
|
|
2446
2447
|
*/
|
|
2447
2448
|
IdentityProviderDetails?: IdentityProviderDetails | undefined;
|
|
@@ -2769,6 +2770,118 @@ export interface CreateUserResponse {
|
|
|
2769
2770
|
*/
|
|
2770
2771
|
UserName: string | undefined;
|
|
2771
2772
|
}
|
|
2773
|
+
/**
|
|
2774
|
+
* <p>A structure that describes the values to use for the IAM Identity Center settings when you create or update a web app.</p>
|
|
2775
|
+
* @public
|
|
2776
|
+
*/
|
|
2777
|
+
export interface IdentityCenterConfig {
|
|
2778
|
+
/**
|
|
2779
|
+
* <p>The Amazon Resource Name (ARN) for the IAM Identity Center used for the web app.</p>
|
|
2780
|
+
* @public
|
|
2781
|
+
*/
|
|
2782
|
+
InstanceArn?: string | undefined;
|
|
2783
|
+
/**
|
|
2784
|
+
* <p>The IAM role in IAM Identity Center used for the web app.</p>
|
|
2785
|
+
* @public
|
|
2786
|
+
*/
|
|
2787
|
+
Role?: string | undefined;
|
|
2788
|
+
}
|
|
2789
|
+
/**
|
|
2790
|
+
* <p>A union that contains the <code>IdentityCenterConfig</code> object.</p>
|
|
2791
|
+
* @public
|
|
2792
|
+
*/
|
|
2793
|
+
export type WebAppIdentityProviderDetails = WebAppIdentityProviderDetails.IdentityCenterConfigMember | WebAppIdentityProviderDetails.$UnknownMember;
|
|
2794
|
+
/**
|
|
2795
|
+
* @public
|
|
2796
|
+
*/
|
|
2797
|
+
export declare namespace WebAppIdentityProviderDetails {
|
|
2798
|
+
/**
|
|
2799
|
+
* <p>A structure that describes the values to use for the IAM Identity Center settings when you create a web app.</p>
|
|
2800
|
+
* @public
|
|
2801
|
+
*/
|
|
2802
|
+
interface IdentityCenterConfigMember {
|
|
2803
|
+
IdentityCenterConfig: IdentityCenterConfig;
|
|
2804
|
+
$unknown?: never;
|
|
2805
|
+
}
|
|
2806
|
+
/**
|
|
2807
|
+
* @public
|
|
2808
|
+
*/
|
|
2809
|
+
interface $UnknownMember {
|
|
2810
|
+
IdentityCenterConfig?: never;
|
|
2811
|
+
$unknown: [string, any];
|
|
2812
|
+
}
|
|
2813
|
+
interface Visitor<T> {
|
|
2814
|
+
IdentityCenterConfig: (value: IdentityCenterConfig) => T;
|
|
2815
|
+
_: (name: string, value: any) => T;
|
|
2816
|
+
}
|
|
2817
|
+
const visit: <T>(value: WebAppIdentityProviderDetails, visitor: Visitor<T>) => T;
|
|
2818
|
+
}
|
|
2819
|
+
/**
|
|
2820
|
+
* <p>Contains an integer value that represents the value for number of concurrent connections or the user sessions on your web app.</p>
|
|
2821
|
+
* @public
|
|
2822
|
+
*/
|
|
2823
|
+
export type WebAppUnits = WebAppUnits.ProvisionedMember | WebAppUnits.$UnknownMember;
|
|
2824
|
+
/**
|
|
2825
|
+
* @public
|
|
2826
|
+
*/
|
|
2827
|
+
export declare namespace WebAppUnits {
|
|
2828
|
+
/**
|
|
2829
|
+
* <p>An integer that represents the number of units for your desired number of concurrent connections, or the number of user sessions on your web app at the same time.</p>
|
|
2830
|
+
* <p>Each increment allows an additional 250 concurrent sessions: a value of <code>1</code> sets the number of concurrent sessions to 250; <code>2</code> sets a value of 500, and so on. </p>
|
|
2831
|
+
* @public
|
|
2832
|
+
*/
|
|
2833
|
+
interface ProvisionedMember {
|
|
2834
|
+
Provisioned: number;
|
|
2835
|
+
$unknown?: never;
|
|
2836
|
+
}
|
|
2837
|
+
/**
|
|
2838
|
+
* @public
|
|
2839
|
+
*/
|
|
2840
|
+
interface $UnknownMember {
|
|
2841
|
+
Provisioned?: never;
|
|
2842
|
+
$unknown: [string, any];
|
|
2843
|
+
}
|
|
2844
|
+
interface Visitor<T> {
|
|
2845
|
+
Provisioned: (value: number) => T;
|
|
2846
|
+
_: (name: string, value: any) => T;
|
|
2847
|
+
}
|
|
2848
|
+
const visit: <T>(value: WebAppUnits, visitor: Visitor<T>) => T;
|
|
2849
|
+
}
|
|
2850
|
+
/**
|
|
2851
|
+
* @public
|
|
2852
|
+
*/
|
|
2853
|
+
export interface CreateWebAppRequest {
|
|
2854
|
+
/**
|
|
2855
|
+
* <p>You can provide a structure that contains the details for the identity provider to use with your web app.</p>
|
|
2856
|
+
* @public
|
|
2857
|
+
*/
|
|
2858
|
+
IdentityProviderDetails: WebAppIdentityProviderDetails | undefined;
|
|
2859
|
+
/**
|
|
2860
|
+
* <p>The <code>AccessEndpoint</code> is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value.</p>
|
|
2861
|
+
* @public
|
|
2862
|
+
*/
|
|
2863
|
+
AccessEndpoint?: string | undefined;
|
|
2864
|
+
/**
|
|
2865
|
+
* <p>A union that contains the value for number of concurrent connections or the user sessions on your web app.</p>
|
|
2866
|
+
* @public
|
|
2867
|
+
*/
|
|
2868
|
+
WebAppUnits?: WebAppUnits | undefined;
|
|
2869
|
+
/**
|
|
2870
|
+
* <p>Key-value pairs that can be used to group and search for web apps.</p>
|
|
2871
|
+
* @public
|
|
2872
|
+
*/
|
|
2873
|
+
Tags?: Tag[] | undefined;
|
|
2874
|
+
}
|
|
2875
|
+
/**
|
|
2876
|
+
* @public
|
|
2877
|
+
*/
|
|
2878
|
+
export interface CreateWebAppResponse {
|
|
2879
|
+
/**
|
|
2880
|
+
* <p>Returns a unique identifier for the web app.</p>
|
|
2881
|
+
* @public
|
|
2882
|
+
*/
|
|
2883
|
+
WebAppId: string | undefined;
|
|
2884
|
+
}
|
|
2772
2885
|
/**
|
|
2773
2886
|
* <p>Each step type has its own <code>StepDetails</code> structure.</p>
|
|
2774
2887
|
* @public
|
|
@@ -3276,6 +3389,26 @@ export interface DeleteUserRequest {
|
|
|
3276
3389
|
*/
|
|
3277
3390
|
UserName: string | undefined;
|
|
3278
3391
|
}
|
|
3392
|
+
/**
|
|
3393
|
+
* @public
|
|
3394
|
+
*/
|
|
3395
|
+
export interface DeleteWebAppRequest {
|
|
3396
|
+
/**
|
|
3397
|
+
* <p>Provide the unique identifier for the web app that you are deleting.</p>
|
|
3398
|
+
* @public
|
|
3399
|
+
*/
|
|
3400
|
+
WebAppId: string | undefined;
|
|
3401
|
+
}
|
|
3402
|
+
/**
|
|
3403
|
+
* @public
|
|
3404
|
+
*/
|
|
3405
|
+
export interface DeleteWebAppCustomizationRequest {
|
|
3406
|
+
/**
|
|
3407
|
+
* <p>Provide the unique identifier for the web app that contains the customizations that you are deleting.</p>
|
|
3408
|
+
* @public
|
|
3409
|
+
*/
|
|
3410
|
+
WebAppId: string | undefined;
|
|
3411
|
+
}
|
|
3279
3412
|
/**
|
|
3280
3413
|
* @public
|
|
3281
3414
|
*/
|
|
@@ -3786,6 +3919,27 @@ export interface DescribedHostKey {
|
|
|
3786
3919
|
*/
|
|
3787
3920
|
Tags?: Tag[] | undefined;
|
|
3788
3921
|
}
|
|
3922
|
+
/**
|
|
3923
|
+
* <p>A structure that contains the details of the IAM Identity Center used for your web app. Returned during a call to <code>DescribeWebApp</code>.</p>
|
|
3924
|
+
* @public
|
|
3925
|
+
*/
|
|
3926
|
+
export interface DescribedIdentityCenterConfig {
|
|
3927
|
+
/**
|
|
3928
|
+
* <p>The Amazon Resource Name (ARN) for the IAM Identity Center application: this value is set automatically when you create your web app.</p>
|
|
3929
|
+
* @public
|
|
3930
|
+
*/
|
|
3931
|
+
ApplicationArn?: string | undefined;
|
|
3932
|
+
/**
|
|
3933
|
+
* <p>The Amazon Resource Name (ARN) for the IAM Identity Center used for the web app.</p>
|
|
3934
|
+
* @public
|
|
3935
|
+
*/
|
|
3936
|
+
InstanceArn?: string | undefined;
|
|
3937
|
+
/**
|
|
3938
|
+
* <p>The IAM role in IAM Identity Center used for the web app.</p>
|
|
3939
|
+
* @public
|
|
3940
|
+
*/
|
|
3941
|
+
Role?: string | undefined;
|
|
3942
|
+
}
|
|
3789
3943
|
/**
|
|
3790
3944
|
* <p>The details for a local or partner AS2 profile. </p>
|
|
3791
3945
|
* @public
|
|
@@ -4311,6 +4465,108 @@ export interface DescribedUser {
|
|
|
4311
4465
|
*/
|
|
4312
4466
|
UserName?: string | undefined;
|
|
4313
4467
|
}
|
|
4468
|
+
/**
|
|
4469
|
+
* <p>Returns a structure that contains the identity provider details for your web app.</p>
|
|
4470
|
+
* @public
|
|
4471
|
+
*/
|
|
4472
|
+
export type DescribedWebAppIdentityProviderDetails = DescribedWebAppIdentityProviderDetails.IdentityCenterConfigMember | DescribedWebAppIdentityProviderDetails.$UnknownMember;
|
|
4473
|
+
/**
|
|
4474
|
+
* @public
|
|
4475
|
+
*/
|
|
4476
|
+
export declare namespace DescribedWebAppIdentityProviderDetails {
|
|
4477
|
+
/**
|
|
4478
|
+
* <p>Returns a structure for your identity provider details. This structure contains the instance ARN and role being used for the web app.</p>
|
|
4479
|
+
* @public
|
|
4480
|
+
*/
|
|
4481
|
+
interface IdentityCenterConfigMember {
|
|
4482
|
+
IdentityCenterConfig: DescribedIdentityCenterConfig;
|
|
4483
|
+
$unknown?: never;
|
|
4484
|
+
}
|
|
4485
|
+
/**
|
|
4486
|
+
* @public
|
|
4487
|
+
*/
|
|
4488
|
+
interface $UnknownMember {
|
|
4489
|
+
IdentityCenterConfig?: never;
|
|
4490
|
+
$unknown: [string, any];
|
|
4491
|
+
}
|
|
4492
|
+
interface Visitor<T> {
|
|
4493
|
+
IdentityCenterConfig: (value: DescribedIdentityCenterConfig) => T;
|
|
4494
|
+
_: (name: string, value: any) => T;
|
|
4495
|
+
}
|
|
4496
|
+
const visit: <T>(value: DescribedWebAppIdentityProviderDetails, visitor: Visitor<T>) => T;
|
|
4497
|
+
}
|
|
4498
|
+
/**
|
|
4499
|
+
* <p>A structure that describes the parameters for the web app, as identified by the <code>WebAppId</code>.</p>
|
|
4500
|
+
* @public
|
|
4501
|
+
*/
|
|
4502
|
+
export interface DescribedWebApp {
|
|
4503
|
+
/**
|
|
4504
|
+
* <p>The Amazon Resource Name (ARN) of the web app.</p>
|
|
4505
|
+
* @public
|
|
4506
|
+
*/
|
|
4507
|
+
Arn: string | undefined;
|
|
4508
|
+
/**
|
|
4509
|
+
* <p>The unique identifier for the web app.</p>
|
|
4510
|
+
* @public
|
|
4511
|
+
*/
|
|
4512
|
+
WebAppId: string | undefined;
|
|
4513
|
+
/**
|
|
4514
|
+
* <p>A structure that contains the details for the identity provider used by the web app.</p>
|
|
4515
|
+
* @public
|
|
4516
|
+
*/
|
|
4517
|
+
DescribedIdentityProviderDetails?: DescribedWebAppIdentityProviderDetails | undefined;
|
|
4518
|
+
/**
|
|
4519
|
+
* <p>The <code>AccessEndpoint</code> is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value.</p>
|
|
4520
|
+
* @public
|
|
4521
|
+
*/
|
|
4522
|
+
AccessEndpoint?: string | undefined;
|
|
4523
|
+
/**
|
|
4524
|
+
* <p>The <code>WebAppEndpoint</code> is the unique URL for your Transfer Family web app. This is the value that you use when you configure <b>Origins</b> on CloudFront.</p>
|
|
4525
|
+
* @public
|
|
4526
|
+
*/
|
|
4527
|
+
WebAppEndpoint?: string | undefined;
|
|
4528
|
+
/**
|
|
4529
|
+
* <p>A union that contains the value for number of concurrent connections or the user sessions on your web app.</p>
|
|
4530
|
+
* @public
|
|
4531
|
+
*/
|
|
4532
|
+
WebAppUnits?: WebAppUnits | undefined;
|
|
4533
|
+
/**
|
|
4534
|
+
* <p>Key-value pairs that can be used to group and search for web apps. Tags are metadata attached to web apps for any purpose.</p>
|
|
4535
|
+
* @public
|
|
4536
|
+
*/
|
|
4537
|
+
Tags?: Tag[] | undefined;
|
|
4538
|
+
}
|
|
4539
|
+
/**
|
|
4540
|
+
* <p>A structure that contains the customization fields for the web app. You can provide a title, logo, and icon to customize the appearance of your web app.</p>
|
|
4541
|
+
* @public
|
|
4542
|
+
*/
|
|
4543
|
+
export interface DescribedWebAppCustomization {
|
|
4544
|
+
/**
|
|
4545
|
+
* <p>Returns the Amazon Resource Name (ARN) for the web app.</p>
|
|
4546
|
+
* @public
|
|
4547
|
+
*/
|
|
4548
|
+
Arn: string | undefined;
|
|
4549
|
+
/**
|
|
4550
|
+
* <p>Returns the unique identifier for your web app.</p>
|
|
4551
|
+
* @public
|
|
4552
|
+
*/
|
|
4553
|
+
WebAppId: string | undefined;
|
|
4554
|
+
/**
|
|
4555
|
+
* <p>Returns the page title that you defined for your web app.</p>
|
|
4556
|
+
* @public
|
|
4557
|
+
*/
|
|
4558
|
+
Title?: string | undefined;
|
|
4559
|
+
/**
|
|
4560
|
+
* <p>Returns a logo file data string (in base64 encoding).</p>
|
|
4561
|
+
* @public
|
|
4562
|
+
*/
|
|
4563
|
+
LogoFile?: Uint8Array | undefined;
|
|
4564
|
+
/**
|
|
4565
|
+
* <p>Returns a icon file data string (in base64 encoding).</p>
|
|
4566
|
+
* @public
|
|
4567
|
+
*/
|
|
4568
|
+
FaviconFile?: Uint8Array | undefined;
|
|
4569
|
+
}
|
|
4314
4570
|
/**
|
|
4315
4571
|
* <p>Describes the properties of the specified workflow</p>
|
|
4316
4572
|
* @public
|
|
@@ -4495,6 +4751,46 @@ export interface DescribeUserResponse {
|
|
|
4495
4751
|
*/
|
|
4496
4752
|
User: DescribedUser | undefined;
|
|
4497
4753
|
}
|
|
4754
|
+
/**
|
|
4755
|
+
* @public
|
|
4756
|
+
*/
|
|
4757
|
+
export interface DescribeWebAppRequest {
|
|
4758
|
+
/**
|
|
4759
|
+
* <p>Provide the unique identifier for the web app.</p>
|
|
4760
|
+
* @public
|
|
4761
|
+
*/
|
|
4762
|
+
WebAppId: string | undefined;
|
|
4763
|
+
}
|
|
4764
|
+
/**
|
|
4765
|
+
* @public
|
|
4766
|
+
*/
|
|
4767
|
+
export interface DescribeWebAppResponse {
|
|
4768
|
+
/**
|
|
4769
|
+
* <p>Returns a structure that contains the details of the web app.</p>
|
|
4770
|
+
* @public
|
|
4771
|
+
*/
|
|
4772
|
+
WebApp: DescribedWebApp | undefined;
|
|
4773
|
+
}
|
|
4774
|
+
/**
|
|
4775
|
+
* @public
|
|
4776
|
+
*/
|
|
4777
|
+
export interface DescribeWebAppCustomizationRequest {
|
|
4778
|
+
/**
|
|
4779
|
+
* <p>Provide the unique identifier for the web app.</p>
|
|
4780
|
+
* @public
|
|
4781
|
+
*/
|
|
4782
|
+
WebAppId: string | undefined;
|
|
4783
|
+
}
|
|
4784
|
+
/**
|
|
4785
|
+
* @public
|
|
4786
|
+
*/
|
|
4787
|
+
export interface DescribeWebAppCustomizationResponse {
|
|
4788
|
+
/**
|
|
4789
|
+
* <p>Returns a structure that contains the details of the web app customizations.</p>
|
|
4790
|
+
* @public
|
|
4791
|
+
*/
|
|
4792
|
+
WebAppCustomization: DescribedWebAppCustomization | undefined;
|
|
4793
|
+
}
|
|
4498
4794
|
/**
|
|
4499
4795
|
* @public
|
|
4500
4796
|
*/
|
|
@@ -4605,7 +4901,7 @@ export interface ImportSshPublicKeyResponse {
|
|
|
4605
4901
|
*/
|
|
4606
4902
|
export interface ListAccessesRequest {
|
|
4607
4903
|
/**
|
|
4608
|
-
* <p>
|
|
4904
|
+
* <p>The maximum number of items to return.</p>
|
|
4609
4905
|
* @public
|
|
4610
4906
|
*/
|
|
4611
4907
|
MaxResults?: number | undefined;
|
|
@@ -4955,6 +5251,32 @@ export interface ListedUser {
|
|
|
4955
5251
|
*/
|
|
4956
5252
|
UserName?: string | undefined;
|
|
4957
5253
|
}
|
|
5254
|
+
/**
|
|
5255
|
+
* <p> a structure that contains details for the web app.</p>
|
|
5256
|
+
* @public
|
|
5257
|
+
*/
|
|
5258
|
+
export interface ListedWebApp {
|
|
5259
|
+
/**
|
|
5260
|
+
* <p>The Amazon Resource Name (ARN) for the web app.</p>
|
|
5261
|
+
* @public
|
|
5262
|
+
*/
|
|
5263
|
+
Arn: string | undefined;
|
|
5264
|
+
/**
|
|
5265
|
+
* <p>The unique identifier for the web app.</p>
|
|
5266
|
+
* @public
|
|
5267
|
+
*/
|
|
5268
|
+
WebAppId: string | undefined;
|
|
5269
|
+
/**
|
|
5270
|
+
* <p>The <code>AccessEndpoint</code> is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value.</p>
|
|
5271
|
+
* @public
|
|
5272
|
+
*/
|
|
5273
|
+
AccessEndpoint?: string | undefined;
|
|
5274
|
+
/**
|
|
5275
|
+
* <p>The <code>WebAppEndpoint</code> is the unique URL for your Transfer Family web app. This is the value that you use when you configure <b>Origins</b> on CloudFront.</p>
|
|
5276
|
+
* @public
|
|
5277
|
+
*/
|
|
5278
|
+
WebAppEndpoint?: string | undefined;
|
|
5279
|
+
}
|
|
4958
5280
|
/**
|
|
4959
5281
|
* <p>Contains the identifier, text description, and Amazon Resource Name (ARN) for the
|
|
4960
5282
|
* workflow.</p>
|
|
@@ -4982,7 +5304,7 @@ export interface ListedWorkflow {
|
|
|
4982
5304
|
*/
|
|
4983
5305
|
export interface ListExecutionsRequest {
|
|
4984
5306
|
/**
|
|
4985
|
-
* <p>
|
|
5307
|
+
* <p>The maximum number of items to return.</p>
|
|
4986
5308
|
* @public
|
|
4987
5309
|
*/
|
|
4988
5310
|
MaxResults?: number | undefined;
|
|
@@ -5111,7 +5433,7 @@ export interface ListFileTransferResultsResponse {
|
|
|
5111
5433
|
*/
|
|
5112
5434
|
export interface ListHostKeysRequest {
|
|
5113
5435
|
/**
|
|
5114
|
-
* <p>The maximum number of
|
|
5436
|
+
* <p>The maximum number of items to return.</p>
|
|
5115
5437
|
* @public
|
|
5116
5438
|
*/
|
|
5117
5439
|
MaxResults?: number | undefined;
|
|
@@ -5154,7 +5476,7 @@ export interface ListHostKeysResponse {
|
|
|
5154
5476
|
*/
|
|
5155
5477
|
export interface ListProfilesRequest {
|
|
5156
5478
|
/**
|
|
5157
|
-
* <p>The maximum number of
|
|
5479
|
+
* <p>The maximum number of items to return.</p>
|
|
5158
5480
|
* @public
|
|
5159
5481
|
*/
|
|
5160
5482
|
MaxResults?: number | undefined;
|
|
@@ -5356,12 +5678,45 @@ export interface ListUsersResponse {
|
|
|
5356
5678
|
*/
|
|
5357
5679
|
Users: ListedUser[] | undefined;
|
|
5358
5680
|
}
|
|
5681
|
+
/**
|
|
5682
|
+
* @public
|
|
5683
|
+
*/
|
|
5684
|
+
export interface ListWebAppsRequest {
|
|
5685
|
+
/**
|
|
5686
|
+
* <p>The maximum number of items to return.</p>
|
|
5687
|
+
* @public
|
|
5688
|
+
*/
|
|
5689
|
+
MaxResults?: number | undefined;
|
|
5690
|
+
/**
|
|
5691
|
+
* <p>Returns the <code>NextToken</code> parameter in the output.
|
|
5692
|
+
* You can then pass the <code>NextToken</code> parameter in a subsequent command to
|
|
5693
|
+
* continue listing additional web apps.</p>
|
|
5694
|
+
* @public
|
|
5695
|
+
*/
|
|
5696
|
+
NextToken?: string | undefined;
|
|
5697
|
+
}
|
|
5698
|
+
/**
|
|
5699
|
+
* @public
|
|
5700
|
+
*/
|
|
5701
|
+
export interface ListWebAppsResponse {
|
|
5702
|
+
/**
|
|
5703
|
+
* <p>Provide this value for the <code>NextToken</code> parameter in a subsequent command to
|
|
5704
|
+
* continue listing additional web apps.</p>
|
|
5705
|
+
* @public
|
|
5706
|
+
*/
|
|
5707
|
+
NextToken?: string | undefined;
|
|
5708
|
+
/**
|
|
5709
|
+
* <p>Returns, for each listed web app, a structure that contains details for the web app.</p>
|
|
5710
|
+
* @public
|
|
5711
|
+
*/
|
|
5712
|
+
WebApps: ListedWebApp[] | undefined;
|
|
5713
|
+
}
|
|
5359
5714
|
/**
|
|
5360
5715
|
* @public
|
|
5361
5716
|
*/
|
|
5362
5717
|
export interface ListWorkflowsRequest {
|
|
5363
5718
|
/**
|
|
5364
|
-
* <p>
|
|
5719
|
+
* <p>The maximum number of items to return.</p>
|
|
5365
5720
|
* @public
|
|
5366
5721
|
*/
|
|
5367
5722
|
MaxResults?: number | undefined;
|
|
@@ -6265,6 +6620,117 @@ export interface UpdateUserResponse {
|
|
|
6265
6620
|
*/
|
|
6266
6621
|
UserName: string | undefined;
|
|
6267
6622
|
}
|
|
6623
|
+
/**
|
|
6624
|
+
* @public
|
|
6625
|
+
*/
|
|
6626
|
+
export interface UpdateWebAppCustomizationRequest {
|
|
6627
|
+
/**
|
|
6628
|
+
* <p>Provide the identifier of the web app that you are updating.</p>
|
|
6629
|
+
* @public
|
|
6630
|
+
*/
|
|
6631
|
+
WebAppId: string | undefined;
|
|
6632
|
+
/**
|
|
6633
|
+
* <p>Provide an updated title.</p>
|
|
6634
|
+
* @public
|
|
6635
|
+
*/
|
|
6636
|
+
Title?: string | undefined;
|
|
6637
|
+
/**
|
|
6638
|
+
* <p>Specify logo file data string (in base64 encoding).</p>
|
|
6639
|
+
* @public
|
|
6640
|
+
*/
|
|
6641
|
+
LogoFile?: Uint8Array | undefined;
|
|
6642
|
+
/**
|
|
6643
|
+
* <p>Specify icon file data string (in base64 encoding).</p>
|
|
6644
|
+
* @public
|
|
6645
|
+
*/
|
|
6646
|
+
FaviconFile?: Uint8Array | undefined;
|
|
6647
|
+
}
|
|
6648
|
+
/**
|
|
6649
|
+
* @public
|
|
6650
|
+
*/
|
|
6651
|
+
export interface UpdateWebAppCustomizationResponse {
|
|
6652
|
+
/**
|
|
6653
|
+
* <p>Returns the unique identifier for the web app being updated.</p>
|
|
6654
|
+
* @public
|
|
6655
|
+
*/
|
|
6656
|
+
WebAppId: string | undefined;
|
|
6657
|
+
}
|
|
6658
|
+
/**
|
|
6659
|
+
* <p>A structure that describes the values to use for the IAM Identity Center settings when you update a web app.</p>
|
|
6660
|
+
* @public
|
|
6661
|
+
*/
|
|
6662
|
+
export interface UpdateWebAppIdentityCenterConfig {
|
|
6663
|
+
/**
|
|
6664
|
+
* <p>The IAM role used to access IAM Identity Center.</p>
|
|
6665
|
+
* @public
|
|
6666
|
+
*/
|
|
6667
|
+
Role?: string | undefined;
|
|
6668
|
+
}
|
|
6669
|
+
/**
|
|
6670
|
+
* <p>A union that contains the <code>UpdateWebAppIdentityCenterConfig</code> object.</p>
|
|
6671
|
+
* @public
|
|
6672
|
+
*/
|
|
6673
|
+
export type UpdateWebAppIdentityProviderDetails = UpdateWebAppIdentityProviderDetails.IdentityCenterConfigMember | UpdateWebAppIdentityProviderDetails.$UnknownMember;
|
|
6674
|
+
/**
|
|
6675
|
+
* @public
|
|
6676
|
+
*/
|
|
6677
|
+
export declare namespace UpdateWebAppIdentityProviderDetails {
|
|
6678
|
+
/**
|
|
6679
|
+
* <p>A structure that describes the values to use for the IAM Identity Center settings when you update a web app.</p>
|
|
6680
|
+
* @public
|
|
6681
|
+
*/
|
|
6682
|
+
interface IdentityCenterConfigMember {
|
|
6683
|
+
IdentityCenterConfig: UpdateWebAppIdentityCenterConfig;
|
|
6684
|
+
$unknown?: never;
|
|
6685
|
+
}
|
|
6686
|
+
/**
|
|
6687
|
+
* @public
|
|
6688
|
+
*/
|
|
6689
|
+
interface $UnknownMember {
|
|
6690
|
+
IdentityCenterConfig?: never;
|
|
6691
|
+
$unknown: [string, any];
|
|
6692
|
+
}
|
|
6693
|
+
interface Visitor<T> {
|
|
6694
|
+
IdentityCenterConfig: (value: UpdateWebAppIdentityCenterConfig) => T;
|
|
6695
|
+
_: (name: string, value: any) => T;
|
|
6696
|
+
}
|
|
6697
|
+
const visit: <T>(value: UpdateWebAppIdentityProviderDetails, visitor: Visitor<T>) => T;
|
|
6698
|
+
}
|
|
6699
|
+
/**
|
|
6700
|
+
* @public
|
|
6701
|
+
*/
|
|
6702
|
+
export interface UpdateWebAppRequest {
|
|
6703
|
+
/**
|
|
6704
|
+
* <p>Provide the identifier of the web app that you are updating.</p>
|
|
6705
|
+
* @public
|
|
6706
|
+
*/
|
|
6707
|
+
WebAppId: string | undefined;
|
|
6708
|
+
/**
|
|
6709
|
+
* <p>Provide updated identity provider values in a <code>WebAppIdentityProviderDetails</code> object.</p>
|
|
6710
|
+
* @public
|
|
6711
|
+
*/
|
|
6712
|
+
IdentityProviderDetails?: UpdateWebAppIdentityProviderDetails | undefined;
|
|
6713
|
+
/**
|
|
6714
|
+
* <p>The <code>AccessEndpoint</code> is the URL that you provide to your users for them to interact with the Transfer Family web app. You can specify a custom URL or use the default value.</p>
|
|
6715
|
+
* @public
|
|
6716
|
+
*/
|
|
6717
|
+
AccessEndpoint?: string | undefined;
|
|
6718
|
+
/**
|
|
6719
|
+
* <p>A union that contains the value for number of concurrent connections or the user sessions on your web app.</p>
|
|
6720
|
+
* @public
|
|
6721
|
+
*/
|
|
6722
|
+
WebAppUnits?: WebAppUnits | undefined;
|
|
6723
|
+
}
|
|
6724
|
+
/**
|
|
6725
|
+
* @public
|
|
6726
|
+
*/
|
|
6727
|
+
export interface UpdateWebAppResponse {
|
|
6728
|
+
/**
|
|
6729
|
+
* <p>Returns the unique identifier for the web app being updated.</p>
|
|
6730
|
+
* @public
|
|
6731
|
+
*/
|
|
6732
|
+
WebAppId: string | undefined;
|
|
6733
|
+
}
|
|
6268
6734
|
/**
|
|
6269
6735
|
* @internal
|
|
6270
6736
|
*/
|
|
@@ -6281,6 +6747,14 @@ export declare const ImportCertificateRequestFilterSensitiveLog: (obj: ImportCer
|
|
|
6281
6747
|
* @internal
|
|
6282
6748
|
*/
|
|
6283
6749
|
export declare const CreateServerRequestFilterSensitiveLog: (obj: CreateServerRequest) => any;
|
|
6750
|
+
/**
|
|
6751
|
+
* @internal
|
|
6752
|
+
*/
|
|
6753
|
+
export declare const DescribedWebAppCustomizationFilterSensitiveLog: (obj: DescribedWebAppCustomization) => any;
|
|
6754
|
+
/**
|
|
6755
|
+
* @internal
|
|
6756
|
+
*/
|
|
6757
|
+
export declare const DescribeWebAppCustomizationResponseFilterSensitiveLog: (obj: DescribeWebAppCustomizationResponse) => any;
|
|
6284
6758
|
/**
|
|
6285
6759
|
* @internal
|
|
6286
6760
|
*/
|
|
@@ -6293,3 +6767,7 @@ export declare const UpdateServerRequestFilterSensitiveLog: (obj: UpdateServerRe
|
|
|
6293
6767
|
* @internal
|
|
6294
6768
|
*/
|
|
6295
6769
|
export declare const TestIdentityProviderRequestFilterSensitiveLog: (obj: TestIdentityProviderRequest) => any;
|
|
6770
|
+
/**
|
|
6771
|
+
* @internal
|
|
6772
|
+
*/
|
|
6773
|
+
export declare const UpdateWebAppCustomizationRequestFilterSensitiveLog: (obj: UpdateWebAppCustomizationRequest) => any;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListWebAppsCommandInput, ListWebAppsCommandOutput } from "../commands/ListWebAppsCommand";
|
|
3
|
+
import { TransferPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListWebApps: (config: TransferPaginationConfiguration, input: ListWebAppsCommandInput, ...rest: any[]) => Paginator<ListWebAppsCommandOutput>;
|
|
@@ -10,4 +10,5 @@ export * from "./ListSecurityPoliciesPaginator";
|
|
|
10
10
|
export * from "./ListServersPaginator";
|
|
11
11
|
export * from "./ListTagsForResourcePaginator";
|
|
12
12
|
export * from "./ListUsersPaginator";
|
|
13
|
+
export * from "./ListWebAppsPaginator";
|
|
13
14
|
export * from "./ListWorkflowsPaginator";
|