@aws-sdk/client-workspaces-web 3.398.0 → 3.405.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/dist-cjs/commands/GetUserSettingsCommand.js +2 -1
- package/dist-cjs/commands/ListUserSettingsCommand.js +2 -1
- package/dist-cjs/commands/UpdateUserSettingsCommand.js +3 -2
- package/dist-cjs/endpoint/ruleset.js +1 -1
- package/dist-cjs/models/models_0.js +136 -98
- package/dist-cjs/protocols/Aws_restJson1.js +4 -0
- package/dist-es/commands/GetUserSettingsCommand.js +2 -1
- package/dist-es/commands/ListUserSettingsCommand.js +2 -1
- package/dist-es/commands/UpdateUserSettingsCommand.js +3 -2
- package/dist-es/endpoint/ruleset.js +1 -1
- package/dist-es/models/models_0.js +100 -70
- package/dist-es/protocols/Aws_restJson1.js +4 -0
- package/dist-types/commands/CreateUserSettingsCommand.d.ts +20 -0
- package/dist-types/commands/GetPortalCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCertificateCommand.d.ts +1 -1
- package/dist-types/commands/GetTrustStoreCommand.d.ts +1 -1
- package/dist-types/commands/GetUserSettingsCommand.d.ts +16 -0
- package/dist-types/commands/ListBrowserSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListIdentityProvidersCommand.d.ts +1 -1
- package/dist-types/commands/ListIpAccessSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListNetworkSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListPortalsCommand.d.ts +1 -1
- package/dist-types/commands/ListTrustStoreCertificatesCommand.d.ts +1 -1
- package/dist-types/commands/ListUserAccessLoggingSettingsCommand.d.ts +1 -1
- package/dist-types/commands/ListUserSettingsCommand.d.ts +17 -1
- package/dist-types/commands/UpdatePortalCommand.d.ts +1 -1
- package/dist-types/commands/UpdateUserSettingsCommand.d.ts +32 -0
- package/dist-types/models/models_0.d.ts +1375 -1279
- package/dist-types/ts3.4/models/models_0.d.ts +403 -369
- package/package.json +7 -7
|
@@ -437,6 +437,142 @@ export declare class ServiceQuotaExceededException extends __BaseException {
|
|
|
437
437
|
*/
|
|
438
438
|
constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
|
|
439
439
|
}
|
|
440
|
+
/**
|
|
441
|
+
* @public
|
|
442
|
+
*/
|
|
443
|
+
export interface DeleteBrowserSettingsRequest {
|
|
444
|
+
/**
|
|
445
|
+
* @public
|
|
446
|
+
* <p>The ARN of the browser settings.</p>
|
|
447
|
+
*/
|
|
448
|
+
browserSettingsArn: string | undefined;
|
|
449
|
+
}
|
|
450
|
+
/**
|
|
451
|
+
* @public
|
|
452
|
+
*/
|
|
453
|
+
export interface DeleteBrowserSettingsResponse {
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
* @public
|
|
457
|
+
*/
|
|
458
|
+
export interface GetBrowserSettingsRequest {
|
|
459
|
+
/**
|
|
460
|
+
* @public
|
|
461
|
+
* <p>The ARN of the browser settings.</p>
|
|
462
|
+
*/
|
|
463
|
+
browserSettingsArn: string | undefined;
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* @public
|
|
467
|
+
* <p>The browser settings resource that can be associated with a web portal. Once associated
|
|
468
|
+
* with a web portal, browser settings control how the browser will behave once a user starts
|
|
469
|
+
* a streaming session for the web portal. </p>
|
|
470
|
+
*/
|
|
471
|
+
export interface BrowserSettings {
|
|
472
|
+
/**
|
|
473
|
+
* @public
|
|
474
|
+
* <p>The ARN of the browser settings.</p>
|
|
475
|
+
*/
|
|
476
|
+
browserSettingsArn: string | undefined;
|
|
477
|
+
/**
|
|
478
|
+
* @public
|
|
479
|
+
* <p>A list of web portal ARNs that this browser settings is associated with.</p>
|
|
480
|
+
*/
|
|
481
|
+
associatedPortalArns?: string[];
|
|
482
|
+
/**
|
|
483
|
+
* @public
|
|
484
|
+
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
485
|
+
* streaming sessions.</p>
|
|
486
|
+
*/
|
|
487
|
+
browserPolicy?: string;
|
|
488
|
+
}
|
|
489
|
+
/**
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
492
|
+
export interface GetBrowserSettingsResponse {
|
|
493
|
+
/**
|
|
494
|
+
* @public
|
|
495
|
+
* <p>The browser settings.</p>
|
|
496
|
+
*/
|
|
497
|
+
browserSettings?: BrowserSettings;
|
|
498
|
+
}
|
|
499
|
+
/**
|
|
500
|
+
* @public
|
|
501
|
+
*/
|
|
502
|
+
export interface ListBrowserSettingsRequest {
|
|
503
|
+
/**
|
|
504
|
+
* @public
|
|
505
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
506
|
+
*/
|
|
507
|
+
nextToken?: string;
|
|
508
|
+
/**
|
|
509
|
+
* @public
|
|
510
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
511
|
+
*/
|
|
512
|
+
maxResults?: number;
|
|
513
|
+
}
|
|
514
|
+
/**
|
|
515
|
+
* @public
|
|
516
|
+
* <p>The summary for browser settings.</p>
|
|
517
|
+
*/
|
|
518
|
+
export interface BrowserSettingsSummary {
|
|
519
|
+
/**
|
|
520
|
+
* @public
|
|
521
|
+
* <p>The ARN of the browser settings.</p>
|
|
522
|
+
*/
|
|
523
|
+
browserSettingsArn: string | undefined;
|
|
524
|
+
}
|
|
525
|
+
/**
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
export interface ListBrowserSettingsResponse {
|
|
529
|
+
/**
|
|
530
|
+
* @public
|
|
531
|
+
* <p>The browser settings.</p>
|
|
532
|
+
*/
|
|
533
|
+
browserSettings?: BrowserSettingsSummary[];
|
|
534
|
+
/**
|
|
535
|
+
* @public
|
|
536
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
537
|
+
*/
|
|
538
|
+
nextToken?: string;
|
|
539
|
+
}
|
|
540
|
+
/**
|
|
541
|
+
* @public
|
|
542
|
+
*/
|
|
543
|
+
export interface UpdateBrowserSettingsRequest {
|
|
544
|
+
/**
|
|
545
|
+
* @public
|
|
546
|
+
* <p>The ARN of the browser settings.</p>
|
|
547
|
+
*/
|
|
548
|
+
browserSettingsArn: string | undefined;
|
|
549
|
+
/**
|
|
550
|
+
* @public
|
|
551
|
+
* <p>A JSON string containing Chrome Enterprise policies that will be applied to all
|
|
552
|
+
* streaming sessions. </p>
|
|
553
|
+
*/
|
|
554
|
+
browserPolicy?: string;
|
|
555
|
+
/**
|
|
556
|
+
* @public
|
|
557
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
558
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
559
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
560
|
+
* client token return the result from the original successful request. </p>
|
|
561
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
562
|
+
* SDK.</p>
|
|
563
|
+
*/
|
|
564
|
+
clientToken?: string;
|
|
565
|
+
}
|
|
566
|
+
/**
|
|
567
|
+
* @public
|
|
568
|
+
*/
|
|
569
|
+
export interface UpdateBrowserSettingsResponse {
|
|
570
|
+
/**
|
|
571
|
+
* @public
|
|
572
|
+
* <p>The browser settings.</p>
|
|
573
|
+
*/
|
|
574
|
+
browserSettings: BrowserSettings | undefined;
|
|
575
|
+
}
|
|
440
576
|
/**
|
|
441
577
|
* @public
|
|
442
578
|
* @enum
|
|
@@ -650,539 +786,233 @@ export interface CreateIdentityProviderResponse {
|
|
|
650
786
|
*/
|
|
651
787
|
identityProviderArn: string | undefined;
|
|
652
788
|
}
|
|
653
|
-
/**
|
|
654
|
-
* @public
|
|
655
|
-
* <p>The IP rules of the IP access settings.</p>
|
|
656
|
-
*/
|
|
657
|
-
export interface IpRule {
|
|
658
|
-
/**
|
|
659
|
-
* @public
|
|
660
|
-
* <p>The IP range of the IP rule.</p>
|
|
661
|
-
*/
|
|
662
|
-
ipRange: string | undefined;
|
|
663
|
-
/**
|
|
664
|
-
* @public
|
|
665
|
-
* <p>The description of the IP rule.</p>
|
|
666
|
-
*/
|
|
667
|
-
description?: string;
|
|
668
|
-
}
|
|
669
|
-
/**
|
|
670
|
-
* @public
|
|
671
|
-
*/
|
|
672
|
-
export interface CreateIpAccessSettingsRequest {
|
|
673
|
-
/**
|
|
674
|
-
* @public
|
|
675
|
-
* <p>The display name of the IP access settings.</p>
|
|
676
|
-
*/
|
|
677
|
-
displayName?: string;
|
|
678
|
-
/**
|
|
679
|
-
* @public
|
|
680
|
-
* <p>The description of the IP access settings.</p>
|
|
681
|
-
*/
|
|
682
|
-
description?: string;
|
|
683
|
-
/**
|
|
684
|
-
* @public
|
|
685
|
-
* <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
|
|
686
|
-
*/
|
|
687
|
-
tags?: Tag[];
|
|
688
|
-
/**
|
|
689
|
-
* @public
|
|
690
|
-
* <p>The custom managed key of the IP access settings.</p>
|
|
691
|
-
*/
|
|
692
|
-
customerManagedKey?: string;
|
|
693
|
-
/**
|
|
694
|
-
* @public
|
|
695
|
-
* <p>Additional encryption context of the IP access settings.</p>
|
|
696
|
-
*/
|
|
697
|
-
additionalEncryptionContext?: Record<string, string>;
|
|
698
|
-
/**
|
|
699
|
-
* @public
|
|
700
|
-
* <p>The IP rules of the IP access settings.</p>
|
|
701
|
-
*/
|
|
702
|
-
ipRules: IpRule[] | undefined;
|
|
703
|
-
/**
|
|
704
|
-
* @public
|
|
705
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
706
|
-
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
707
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
708
|
-
* client token returns the result from the original successful request. </p>
|
|
709
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
710
|
-
* SDK.</p>
|
|
711
|
-
*/
|
|
712
|
-
clientToken?: string;
|
|
713
|
-
}
|
|
714
789
|
/**
|
|
715
790
|
* @public
|
|
716
791
|
*/
|
|
717
|
-
export interface
|
|
792
|
+
export interface DeleteIdentityProviderRequest {
|
|
718
793
|
/**
|
|
719
794
|
* @public
|
|
720
|
-
* <p>The ARN of the
|
|
795
|
+
* <p>The ARN of the identity provider.</p>
|
|
721
796
|
*/
|
|
722
|
-
|
|
797
|
+
identityProviderArn: string | undefined;
|
|
723
798
|
}
|
|
724
799
|
/**
|
|
725
800
|
* @public
|
|
726
801
|
*/
|
|
727
|
-
export interface
|
|
728
|
-
/**
|
|
729
|
-
* @public
|
|
730
|
-
* <p>The VPC that streaming instances will connect to.</p>
|
|
731
|
-
*/
|
|
732
|
-
vpcId: string | undefined;
|
|
733
|
-
/**
|
|
734
|
-
* @public
|
|
735
|
-
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
736
|
-
*/
|
|
737
|
-
subnetIds: string[] | undefined;
|
|
738
|
-
/**
|
|
739
|
-
* @public
|
|
740
|
-
* <p>One or more security groups used to control access from streaming instances to your VPC.</p>
|
|
741
|
-
*/
|
|
742
|
-
securityGroupIds: string[] | undefined;
|
|
743
|
-
/**
|
|
744
|
-
* @public
|
|
745
|
-
* <p>The tags to add to the network settings resource. A tag is a key-value pair.</p>
|
|
746
|
-
*/
|
|
747
|
-
tags?: Tag[];
|
|
748
|
-
/**
|
|
749
|
-
* @public
|
|
750
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
751
|
-
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
752
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
753
|
-
* client token returns the result from the original successful request. </p>
|
|
754
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
755
|
-
* SDK.</p>
|
|
756
|
-
*/
|
|
757
|
-
clientToken?: string;
|
|
802
|
+
export interface DeleteIdentityProviderResponse {
|
|
758
803
|
}
|
|
759
804
|
/**
|
|
760
805
|
* @public
|
|
761
806
|
*/
|
|
762
|
-
export interface
|
|
807
|
+
export interface GetIdentityProviderRequest {
|
|
763
808
|
/**
|
|
764
809
|
* @public
|
|
765
|
-
* <p>The ARN of the
|
|
810
|
+
* <p>The ARN of the identity provider.</p>
|
|
766
811
|
*/
|
|
767
|
-
|
|
812
|
+
identityProviderArn: string | undefined;
|
|
768
813
|
}
|
|
769
814
|
/**
|
|
770
815
|
* @public
|
|
816
|
+
* <p>The identity provider.</p>
|
|
771
817
|
*/
|
|
772
|
-
export interface
|
|
818
|
+
export interface IdentityProvider {
|
|
773
819
|
/**
|
|
774
820
|
* @public
|
|
775
|
-
* <p>The
|
|
821
|
+
* <p>The ARN of the identity provider.</p>
|
|
776
822
|
*/
|
|
777
|
-
|
|
823
|
+
identityProviderArn: string | undefined;
|
|
778
824
|
/**
|
|
779
825
|
* @public
|
|
780
|
-
* <p>The
|
|
826
|
+
* <p>The identity provider name.</p>
|
|
781
827
|
*/
|
|
782
|
-
|
|
828
|
+
identityProviderName?: string;
|
|
783
829
|
/**
|
|
784
830
|
* @public
|
|
785
|
-
* <p>The
|
|
831
|
+
* <p>The identity provider type.</p>
|
|
786
832
|
*/
|
|
787
|
-
|
|
833
|
+
identityProviderType?: IdentityProviderType | string;
|
|
788
834
|
/**
|
|
789
835
|
* @public
|
|
790
|
-
* <p>The
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
*
|
|
795
|
-
*
|
|
796
|
-
*
|
|
797
|
-
*
|
|
798
|
-
*
|
|
799
|
-
*
|
|
800
|
-
*
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
*
|
|
805
|
-
*
|
|
806
|
-
*
|
|
807
|
-
*
|
|
808
|
-
*
|
|
809
|
-
*
|
|
810
|
-
*
|
|
811
|
-
*
|
|
812
|
-
*
|
|
813
|
-
* <
|
|
814
|
-
*
|
|
815
|
-
*
|
|
816
|
-
*
|
|
817
|
-
*
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
*
|
|
827
|
-
*
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
*
|
|
832
|
-
*
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
*
|
|
842
|
-
*
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
*
|
|
847
|
-
*
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
*
|
|
852
|
-
*
|
|
853
|
-
*
|
|
854
|
-
*
|
|
855
|
-
*
|
|
856
|
-
*
|
|
857
|
-
*
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
*
|
|
867
|
-
*
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
*
|
|
877
|
-
*
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
*
|
|
882
|
-
*
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
*
|
|
887
|
-
*
|
|
888
|
-
*
|
|
889
|
-
*
|
|
890
|
-
*
|
|
891
|
-
*
|
|
892
|
-
*
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
*
|
|
902
|
-
*
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
*
|
|
924
|
-
*
|
|
925
|
-
*
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
*
|
|
930
|
-
*
|
|
931
|
-
*
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
*
|
|
936
|
-
*
|
|
937
|
-
*
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
*
|
|
942
|
-
*
|
|
943
|
-
* session.</p>
|
|
944
|
-
*/
|
|
945
|
-
uploadAllowed: EnabledType | string | undefined;
|
|
946
|
-
/**
|
|
947
|
-
* @public
|
|
948
|
-
* <p>Specifies whether the user can print to the local device.</p>
|
|
949
|
-
*/
|
|
950
|
-
printAllowed: EnabledType | string | undefined;
|
|
951
|
-
/**
|
|
952
|
-
* @public
|
|
953
|
-
* <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
|
|
954
|
-
*/
|
|
955
|
-
tags?: Tag[];
|
|
956
|
-
/**
|
|
957
|
-
* @public
|
|
958
|
-
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
959
|
-
*/
|
|
960
|
-
disconnectTimeoutInMinutes?: number;
|
|
961
|
-
/**
|
|
962
|
-
* @public
|
|
963
|
-
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
964
|
-
*/
|
|
965
|
-
idleDisconnectTimeoutInMinutes?: number;
|
|
966
|
-
/**
|
|
967
|
-
* @public
|
|
968
|
-
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
969
|
-
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
970
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
971
|
-
* client token returns the result from the original successful request. </p>
|
|
972
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
973
|
-
* SDK.</p>
|
|
974
|
-
*/
|
|
975
|
-
clientToken?: string;
|
|
976
|
-
}
|
|
977
|
-
/**
|
|
978
|
-
* @public
|
|
979
|
-
*/
|
|
980
|
-
export interface CreateUserSettingsResponse {
|
|
981
|
-
/**
|
|
982
|
-
* @public
|
|
983
|
-
* <p>The ARN of the user settings.</p>
|
|
984
|
-
*/
|
|
985
|
-
userSettingsArn: string | undefined;
|
|
986
|
-
}
|
|
987
|
-
/**
|
|
988
|
-
* @public
|
|
989
|
-
*/
|
|
990
|
-
export interface DeleteBrowserSettingsRequest {
|
|
991
|
-
/**
|
|
992
|
-
* @public
|
|
993
|
-
* <p>The ARN of the browser settings.</p>
|
|
994
|
-
*/
|
|
995
|
-
browserSettingsArn: string | undefined;
|
|
996
|
-
}
|
|
997
|
-
/**
|
|
998
|
-
* @public
|
|
999
|
-
*/
|
|
1000
|
-
export interface DeleteBrowserSettingsResponse {
|
|
1001
|
-
}
|
|
1002
|
-
/**
|
|
1003
|
-
* @public
|
|
1004
|
-
*/
|
|
1005
|
-
export interface DeleteIdentityProviderRequest {
|
|
1006
|
-
/**
|
|
1007
|
-
* @public
|
|
1008
|
-
* <p>The ARN of the identity provider.</p>
|
|
1009
|
-
*/
|
|
1010
|
-
identityProviderArn: string | undefined;
|
|
1011
|
-
}
|
|
1012
|
-
/**
|
|
1013
|
-
* @public
|
|
1014
|
-
*/
|
|
1015
|
-
export interface DeleteIdentityProviderResponse {
|
|
1016
|
-
}
|
|
1017
|
-
/**
|
|
1018
|
-
* @public
|
|
1019
|
-
*/
|
|
1020
|
-
export interface DeleteIpAccessSettingsRequest {
|
|
1021
|
-
/**
|
|
1022
|
-
* @public
|
|
1023
|
-
* <p>The ARN of the IP access settings.</p>
|
|
1024
|
-
*/
|
|
1025
|
-
ipAccessSettingsArn: string | undefined;
|
|
1026
|
-
}
|
|
1027
|
-
/**
|
|
1028
|
-
* @public
|
|
1029
|
-
*/
|
|
1030
|
-
export interface DeleteIpAccessSettingsResponse {
|
|
1031
|
-
}
|
|
1032
|
-
/**
|
|
1033
|
-
* @public
|
|
1034
|
-
*/
|
|
1035
|
-
export interface DeleteNetworkSettingsRequest {
|
|
1036
|
-
/**
|
|
1037
|
-
* @public
|
|
1038
|
-
* <p>The ARN of the network settings.</p>
|
|
1039
|
-
*/
|
|
1040
|
-
networkSettingsArn: string | undefined;
|
|
1041
|
-
}
|
|
1042
|
-
/**
|
|
1043
|
-
* @public
|
|
1044
|
-
*/
|
|
1045
|
-
export interface DeleteNetworkSettingsResponse {
|
|
1046
|
-
}
|
|
1047
|
-
/**
|
|
1048
|
-
* @public
|
|
1049
|
-
*/
|
|
1050
|
-
export interface DeletePortalRequest {
|
|
1051
|
-
/**
|
|
1052
|
-
* @public
|
|
1053
|
-
* <p>The ARN of the web portal.</p>
|
|
1054
|
-
*/
|
|
1055
|
-
portalArn: string | undefined;
|
|
1056
|
-
}
|
|
1057
|
-
/**
|
|
1058
|
-
* @public
|
|
1059
|
-
*/
|
|
1060
|
-
export interface DeletePortalResponse {
|
|
1061
|
-
}
|
|
1062
|
-
/**
|
|
1063
|
-
* @public
|
|
1064
|
-
*/
|
|
1065
|
-
export interface DeleteTrustStoreRequest {
|
|
1066
|
-
/**
|
|
1067
|
-
* @public
|
|
1068
|
-
* <p>The ARN of the trust store.</p>
|
|
1069
|
-
*/
|
|
1070
|
-
trustStoreArn: string | undefined;
|
|
1071
|
-
}
|
|
1072
|
-
/**
|
|
1073
|
-
* @public
|
|
1074
|
-
*/
|
|
1075
|
-
export interface DeleteTrustStoreResponse {
|
|
1076
|
-
}
|
|
1077
|
-
/**
|
|
1078
|
-
* @public
|
|
1079
|
-
*/
|
|
1080
|
-
export interface DeleteUserAccessLoggingSettingsRequest {
|
|
1081
|
-
/**
|
|
1082
|
-
* @public
|
|
1083
|
-
* <p>The ARN of the user access logging settings.</p>
|
|
1084
|
-
*/
|
|
1085
|
-
userAccessLoggingSettingsArn: string | undefined;
|
|
1086
|
-
}
|
|
1087
|
-
/**
|
|
1088
|
-
* @public
|
|
1089
|
-
*/
|
|
1090
|
-
export interface DeleteUserAccessLoggingSettingsResponse {
|
|
1091
|
-
}
|
|
1092
|
-
/**
|
|
1093
|
-
* @public
|
|
1094
|
-
*/
|
|
1095
|
-
export interface DeleteUserSettingsRequest {
|
|
1096
|
-
/**
|
|
1097
|
-
* @public
|
|
1098
|
-
* <p>The ARN of the user settings.</p>
|
|
1099
|
-
*/
|
|
1100
|
-
userSettingsArn: string | undefined;
|
|
1101
|
-
}
|
|
1102
|
-
/**
|
|
1103
|
-
* @public
|
|
1104
|
-
*/
|
|
1105
|
-
export interface DeleteUserSettingsResponse {
|
|
1106
|
-
}
|
|
1107
|
-
/**
|
|
1108
|
-
* @public
|
|
1109
|
-
*/
|
|
1110
|
-
export interface DisassociateBrowserSettingsRequest {
|
|
1111
|
-
/**
|
|
1112
|
-
* @public
|
|
1113
|
-
* <p>The ARN of the web portal.</p>
|
|
1114
|
-
*/
|
|
1115
|
-
portalArn: string | undefined;
|
|
1116
|
-
}
|
|
1117
|
-
/**
|
|
1118
|
-
* @public
|
|
1119
|
-
*/
|
|
1120
|
-
export interface DisassociateBrowserSettingsResponse {
|
|
1121
|
-
}
|
|
1122
|
-
/**
|
|
1123
|
-
* @public
|
|
1124
|
-
*/
|
|
1125
|
-
export interface DisassociateIpAccessSettingsRequest {
|
|
1126
|
-
/**
|
|
1127
|
-
* @public
|
|
1128
|
-
* <p>The ARN of the web portal.</p>
|
|
836
|
+
* <p>The identity provider details. The following list describes the provider detail keys for
|
|
837
|
+
* each identity provider type. </p>
|
|
838
|
+
* <ul>
|
|
839
|
+
* <li>
|
|
840
|
+
* <p>For Google and Login with Amazon:</p>
|
|
841
|
+
* <ul>
|
|
842
|
+
* <li>
|
|
843
|
+
* <p>
|
|
844
|
+
* <code>client_id</code>
|
|
845
|
+
* </p>
|
|
846
|
+
* </li>
|
|
847
|
+
* <li>
|
|
848
|
+
* <p>
|
|
849
|
+
* <code>client_secret</code>
|
|
850
|
+
* </p>
|
|
851
|
+
* </li>
|
|
852
|
+
* <li>
|
|
853
|
+
* <p>
|
|
854
|
+
* <code>authorize_scopes</code>
|
|
855
|
+
* </p>
|
|
856
|
+
* </li>
|
|
857
|
+
* </ul>
|
|
858
|
+
* </li>
|
|
859
|
+
* <li>
|
|
860
|
+
* <p>For Facebook:</p>
|
|
861
|
+
* <ul>
|
|
862
|
+
* <li>
|
|
863
|
+
* <p>
|
|
864
|
+
* <code>client_id</code>
|
|
865
|
+
* </p>
|
|
866
|
+
* </li>
|
|
867
|
+
* <li>
|
|
868
|
+
* <p>
|
|
869
|
+
* <code>client_secret</code>
|
|
870
|
+
* </p>
|
|
871
|
+
* </li>
|
|
872
|
+
* <li>
|
|
873
|
+
* <p>
|
|
874
|
+
* <code>authorize_scopes</code>
|
|
875
|
+
* </p>
|
|
876
|
+
* </li>
|
|
877
|
+
* <li>
|
|
878
|
+
* <p>
|
|
879
|
+
* <code>api_version</code>
|
|
880
|
+
* </p>
|
|
881
|
+
* </li>
|
|
882
|
+
* </ul>
|
|
883
|
+
* </li>
|
|
884
|
+
* <li>
|
|
885
|
+
* <p>For Sign in with Apple:</p>
|
|
886
|
+
* <ul>
|
|
887
|
+
* <li>
|
|
888
|
+
* <p>
|
|
889
|
+
* <code>client_id</code>
|
|
890
|
+
* </p>
|
|
891
|
+
* </li>
|
|
892
|
+
* <li>
|
|
893
|
+
* <p>
|
|
894
|
+
* <code>team_id</code>
|
|
895
|
+
* </p>
|
|
896
|
+
* </li>
|
|
897
|
+
* <li>
|
|
898
|
+
* <p>
|
|
899
|
+
* <code>key_id</code>
|
|
900
|
+
* </p>
|
|
901
|
+
* </li>
|
|
902
|
+
* <li>
|
|
903
|
+
* <p>
|
|
904
|
+
* <code>private_key</code>
|
|
905
|
+
* </p>
|
|
906
|
+
* </li>
|
|
907
|
+
* <li>
|
|
908
|
+
* <p>
|
|
909
|
+
* <code>authorize_scopes</code>
|
|
910
|
+
* </p>
|
|
911
|
+
* </li>
|
|
912
|
+
* </ul>
|
|
913
|
+
* </li>
|
|
914
|
+
* <li>
|
|
915
|
+
* <p>For OIDC providers:</p>
|
|
916
|
+
* <ul>
|
|
917
|
+
* <li>
|
|
918
|
+
* <p>
|
|
919
|
+
* <code>client_id</code>
|
|
920
|
+
* </p>
|
|
921
|
+
* </li>
|
|
922
|
+
* <li>
|
|
923
|
+
* <p>
|
|
924
|
+
* <code>client_secret</code>
|
|
925
|
+
* </p>
|
|
926
|
+
* </li>
|
|
927
|
+
* <li>
|
|
928
|
+
* <p>
|
|
929
|
+
* <code>attributes_request_method</code>
|
|
930
|
+
* </p>
|
|
931
|
+
* </li>
|
|
932
|
+
* <li>
|
|
933
|
+
* <p>
|
|
934
|
+
* <code>oidc_issuer</code>
|
|
935
|
+
* </p>
|
|
936
|
+
* </li>
|
|
937
|
+
* <li>
|
|
938
|
+
* <p>
|
|
939
|
+
* <code>authorize_scopes</code>
|
|
940
|
+
* </p>
|
|
941
|
+
* </li>
|
|
942
|
+
* <li>
|
|
943
|
+
* <p>
|
|
944
|
+
* <code>authorize_url</code>
|
|
945
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
946
|
+
* key</i>
|
|
947
|
+
* </p>
|
|
948
|
+
* </li>
|
|
949
|
+
* <li>
|
|
950
|
+
* <p>
|
|
951
|
+
* <code>token_url</code>
|
|
952
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
953
|
+
* key</i>
|
|
954
|
+
* </p>
|
|
955
|
+
* </li>
|
|
956
|
+
* <li>
|
|
957
|
+
* <p>
|
|
958
|
+
* <code>attributes_url</code>
|
|
959
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
960
|
+
* key</i>
|
|
961
|
+
* </p>
|
|
962
|
+
* </li>
|
|
963
|
+
* <li>
|
|
964
|
+
* <p>
|
|
965
|
+
* <code>jwks_uri</code>
|
|
966
|
+
* <i>if not available from discovery URL specified by oidc_issuer
|
|
967
|
+
* key</i>
|
|
968
|
+
* </p>
|
|
969
|
+
* </li>
|
|
970
|
+
* </ul>
|
|
971
|
+
* </li>
|
|
972
|
+
* <li>
|
|
973
|
+
* <p>For SAML providers:</p>
|
|
974
|
+
* <ul>
|
|
975
|
+
* <li>
|
|
976
|
+
* <p>
|
|
977
|
+
* <code>MetadataFile</code> OR <code>MetadataURL</code>
|
|
978
|
+
* </p>
|
|
979
|
+
* </li>
|
|
980
|
+
* <li>
|
|
981
|
+
* <p>
|
|
982
|
+
* <code>IDPSignout</code>
|
|
983
|
+
* <i>optional</i>
|
|
984
|
+
* </p>
|
|
985
|
+
* </li>
|
|
986
|
+
* </ul>
|
|
987
|
+
* </li>
|
|
988
|
+
* </ul>
|
|
1129
989
|
*/
|
|
1130
|
-
|
|
1131
|
-
}
|
|
1132
|
-
/**
|
|
1133
|
-
* @public
|
|
1134
|
-
*/
|
|
1135
|
-
export interface DisassociateIpAccessSettingsResponse {
|
|
990
|
+
identityProviderDetails?: Record<string, string>;
|
|
1136
991
|
}
|
|
1137
992
|
/**
|
|
1138
993
|
* @public
|
|
1139
994
|
*/
|
|
1140
|
-
export interface
|
|
995
|
+
export interface GetIdentityProviderResponse {
|
|
1141
996
|
/**
|
|
1142
997
|
* @public
|
|
1143
|
-
* <p>The
|
|
998
|
+
* <p>The identity provider.</p>
|
|
1144
999
|
*/
|
|
1145
|
-
|
|
1146
|
-
}
|
|
1147
|
-
/**
|
|
1148
|
-
* @public
|
|
1149
|
-
*/
|
|
1150
|
-
export interface DisassociateNetworkSettingsResponse {
|
|
1000
|
+
identityProvider?: IdentityProvider;
|
|
1151
1001
|
}
|
|
1152
1002
|
/**
|
|
1153
1003
|
* @public
|
|
1154
1004
|
*/
|
|
1155
|
-
export interface
|
|
1005
|
+
export interface ListIdentityProvidersRequest {
|
|
1156
1006
|
/**
|
|
1157
1007
|
* @public
|
|
1158
|
-
* <p>The
|
|
1008
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1159
1009
|
*/
|
|
1160
|
-
|
|
1161
|
-
}
|
|
1162
|
-
/**
|
|
1163
|
-
* @public
|
|
1164
|
-
*/
|
|
1165
|
-
export interface DisassociateTrustStoreResponse {
|
|
1166
|
-
}
|
|
1167
|
-
/**
|
|
1168
|
-
* @public
|
|
1169
|
-
*/
|
|
1170
|
-
export interface DisassociateUserAccessLoggingSettingsRequest {
|
|
1010
|
+
nextToken?: string;
|
|
1171
1011
|
/**
|
|
1172
1012
|
* @public
|
|
1173
|
-
* <p>The
|
|
1013
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1174
1014
|
*/
|
|
1175
|
-
|
|
1176
|
-
}
|
|
1177
|
-
/**
|
|
1178
|
-
* @public
|
|
1179
|
-
*/
|
|
1180
|
-
export interface DisassociateUserAccessLoggingSettingsResponse {
|
|
1181
|
-
}
|
|
1182
|
-
/**
|
|
1183
|
-
* @public
|
|
1184
|
-
*/
|
|
1185
|
-
export interface DisassociateUserSettingsRequest {
|
|
1015
|
+
maxResults?: number;
|
|
1186
1016
|
/**
|
|
1187
1017
|
* @public
|
|
1188
1018
|
* <p>The ARN of the web portal.</p>
|
|
@@ -1191,68 +1021,44 @@ export interface DisassociateUserSettingsRequest {
|
|
|
1191
1021
|
}
|
|
1192
1022
|
/**
|
|
1193
1023
|
* @public
|
|
1024
|
+
* <p>The summary of the identity provider.</p>
|
|
1194
1025
|
*/
|
|
1195
|
-
export interface
|
|
1196
|
-
}
|
|
1197
|
-
/**
|
|
1198
|
-
* @public
|
|
1199
|
-
*/
|
|
1200
|
-
export interface GetBrowserSettingsRequest {
|
|
1201
|
-
/**
|
|
1202
|
-
* @public
|
|
1203
|
-
* <p>The ARN of the browser settings.</p>
|
|
1204
|
-
*/
|
|
1205
|
-
browserSettingsArn: string | undefined;
|
|
1206
|
-
}
|
|
1207
|
-
/**
|
|
1208
|
-
* @public
|
|
1209
|
-
* <p>The browser settings resource that can be associated with a web portal. Once associated
|
|
1210
|
-
* with a web portal, browser settings control how the browser will behave once a user starts
|
|
1211
|
-
* a streaming session for the web portal. </p>
|
|
1212
|
-
*/
|
|
1213
|
-
export interface BrowserSettings {
|
|
1026
|
+
export interface IdentityProviderSummary {
|
|
1214
1027
|
/**
|
|
1215
1028
|
* @public
|
|
1216
|
-
* <p>The ARN of the
|
|
1029
|
+
* <p>The ARN of the identity provider.</p>
|
|
1217
1030
|
*/
|
|
1218
|
-
|
|
1031
|
+
identityProviderArn: string | undefined;
|
|
1219
1032
|
/**
|
|
1220
1033
|
* @public
|
|
1221
|
-
* <p>
|
|
1034
|
+
* <p>The identity provider name.</p>
|
|
1222
1035
|
*/
|
|
1223
|
-
|
|
1036
|
+
identityProviderName?: string;
|
|
1224
1037
|
/**
|
|
1225
1038
|
* @public
|
|
1226
|
-
* <p>
|
|
1227
|
-
* streaming sessions.</p>
|
|
1039
|
+
* <p>The identity provider type.</p>
|
|
1228
1040
|
*/
|
|
1229
|
-
|
|
1041
|
+
identityProviderType?: IdentityProviderType | string;
|
|
1230
1042
|
}
|
|
1231
1043
|
/**
|
|
1232
1044
|
* @public
|
|
1233
1045
|
*/
|
|
1234
|
-
export interface
|
|
1046
|
+
export interface ListIdentityProvidersResponse {
|
|
1235
1047
|
/**
|
|
1236
1048
|
* @public
|
|
1237
|
-
* <p>The
|
|
1049
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1238
1050
|
*/
|
|
1239
|
-
|
|
1240
|
-
}
|
|
1241
|
-
/**
|
|
1242
|
-
* @public
|
|
1243
|
-
*/
|
|
1244
|
-
export interface GetIdentityProviderRequest {
|
|
1051
|
+
nextToken?: string;
|
|
1245
1052
|
/**
|
|
1246
1053
|
* @public
|
|
1247
|
-
* <p>The
|
|
1054
|
+
* <p>The identity providers.</p>
|
|
1248
1055
|
*/
|
|
1249
|
-
|
|
1056
|
+
identityProviders?: IdentityProviderSummary[];
|
|
1250
1057
|
}
|
|
1251
1058
|
/**
|
|
1252
1059
|
* @public
|
|
1253
|
-
* <p>The identity provider.</p>
|
|
1254
1060
|
*/
|
|
1255
|
-
export interface
|
|
1061
|
+
export interface UpdateIdentityProviderRequest {
|
|
1256
1062
|
/**
|
|
1257
1063
|
* @public
|
|
1258
1064
|
* <p>The ARN of the identity provider.</p>
|
|
@@ -1260,17 +1066,17 @@ export interface IdentityProvider {
|
|
|
1260
1066
|
identityProviderArn: string | undefined;
|
|
1261
1067
|
/**
|
|
1262
1068
|
* @public
|
|
1263
|
-
* <p>The identity provider
|
|
1069
|
+
* <p>The name of the identity provider.</p>
|
|
1264
1070
|
*/
|
|
1265
1071
|
identityProviderName?: string;
|
|
1266
1072
|
/**
|
|
1267
1073
|
* @public
|
|
1268
|
-
* <p>The identity provider
|
|
1074
|
+
* <p>The type of the identity provider.</p>
|
|
1269
1075
|
*/
|
|
1270
1076
|
identityProviderType?: IdentityProviderType | string;
|
|
1271
1077
|
/**
|
|
1272
1078
|
* @public
|
|
1273
|
-
* <p>The identity provider
|
|
1079
|
+
* <p>The details of the identity provider. The following list describes the provider detail keys for
|
|
1274
1080
|
* each identity provider type. </p>
|
|
1275
1081
|
* <ul>
|
|
1276
1082
|
* <li>
|
|
@@ -1379,29 +1185,29 @@ export interface IdentityProvider {
|
|
|
1379
1185
|
* <li>
|
|
1380
1186
|
* <p>
|
|
1381
1187
|
* <code>authorize_url</code>
|
|
1382
|
-
* <i>if not available from discovery URL specified by
|
|
1383
|
-
*
|
|
1188
|
+
* <i>if not available from discovery URL specified by
|
|
1189
|
+
* <code>oidc_issuer</code> key</i>
|
|
1384
1190
|
* </p>
|
|
1385
1191
|
* </li>
|
|
1386
1192
|
* <li>
|
|
1387
1193
|
* <p>
|
|
1388
1194
|
* <code>token_url</code>
|
|
1389
|
-
* <i>if not available from discovery URL specified by
|
|
1390
|
-
*
|
|
1195
|
+
* <i>if not available from discovery URL specified by
|
|
1196
|
+
* <code>oidc_issuer</code> key</i>
|
|
1391
1197
|
* </p>
|
|
1392
1198
|
* </li>
|
|
1393
1199
|
* <li>
|
|
1394
1200
|
* <p>
|
|
1395
1201
|
* <code>attributes_url</code>
|
|
1396
|
-
* <i>if not available from discovery URL specified by
|
|
1397
|
-
*
|
|
1202
|
+
* <i>if not available from discovery URL specified by
|
|
1203
|
+
* <code>oidc_issuer</code> key</i>
|
|
1398
1204
|
* </p>
|
|
1399
1205
|
* </li>
|
|
1400
1206
|
* <li>
|
|
1401
1207
|
* <p>
|
|
1402
1208
|
* <code>jwks_uri</code>
|
|
1403
|
-
* <i>if not available from discovery URL specified by
|
|
1404
|
-
*
|
|
1209
|
+
* <i>if not available from discovery URL specified by
|
|
1210
|
+
* <code>oidc_issuer</code> key</i>
|
|
1405
1211
|
* </p>
|
|
1406
1212
|
* </li>
|
|
1407
1213
|
* </ul>
|
|
@@ -1416,8 +1222,8 @@ export interface IdentityProvider {
|
|
|
1416
1222
|
* </li>
|
|
1417
1223
|
* <li>
|
|
1418
1224
|
* <p>
|
|
1419
|
-
* <code>IDPSignout</code>
|
|
1420
|
-
*
|
|
1225
|
+
* <code>IDPSignout</code> (boolean)
|
|
1226
|
+
* <i>optional</i>
|
|
1421
1227
|
* </p>
|
|
1422
1228
|
* </li>
|
|
1423
1229
|
* </ul>
|
|
@@ -1425,579 +1231,681 @@ export interface IdentityProvider {
|
|
|
1425
1231
|
* </ul>
|
|
1426
1232
|
*/
|
|
1427
1233
|
identityProviderDetails?: Record<string, string>;
|
|
1234
|
+
/**
|
|
1235
|
+
* @public
|
|
1236
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1237
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
1238
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
1239
|
+
* client token return the result from the original successful request. </p>
|
|
1240
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
1241
|
+
* SDK.</p>
|
|
1242
|
+
*/
|
|
1243
|
+
clientToken?: string;
|
|
1428
1244
|
}
|
|
1429
1245
|
/**
|
|
1430
1246
|
* @public
|
|
1431
1247
|
*/
|
|
1432
|
-
export interface
|
|
1248
|
+
export interface UpdateIdentityProviderResponse {
|
|
1433
1249
|
/**
|
|
1434
1250
|
* @public
|
|
1435
1251
|
* <p>The identity provider.</p>
|
|
1436
1252
|
*/
|
|
1437
|
-
identityProvider
|
|
1253
|
+
identityProvider: IdentityProvider | undefined;
|
|
1438
1254
|
}
|
|
1439
1255
|
/**
|
|
1440
1256
|
* @public
|
|
1257
|
+
* <p>The IP rules of the IP access settings.</p>
|
|
1441
1258
|
*/
|
|
1442
|
-
export interface
|
|
1259
|
+
export interface IpRule {
|
|
1443
1260
|
/**
|
|
1444
1261
|
* @public
|
|
1445
|
-
* <p>The
|
|
1262
|
+
* <p>The IP range of the IP rule.</p>
|
|
1446
1263
|
*/
|
|
1447
|
-
|
|
1264
|
+
ipRange: string | undefined;
|
|
1265
|
+
/**
|
|
1266
|
+
* @public
|
|
1267
|
+
* <p>The description of the IP rule.</p>
|
|
1268
|
+
*/
|
|
1269
|
+
description?: string;
|
|
1448
1270
|
}
|
|
1449
1271
|
/**
|
|
1450
1272
|
* @public
|
|
1451
|
-
* <p>The IP access settings resource that can be associated with a web portal. </p>
|
|
1452
1273
|
*/
|
|
1453
|
-
export interface
|
|
1274
|
+
export interface CreateIpAccessSettingsRequest {
|
|
1454
1275
|
/**
|
|
1455
1276
|
* @public
|
|
1456
|
-
* <p>The
|
|
1277
|
+
* <p>The display name of the IP access settings.</p>
|
|
1457
1278
|
*/
|
|
1458
|
-
|
|
1279
|
+
displayName?: string;
|
|
1459
1280
|
/**
|
|
1460
1281
|
* @public
|
|
1461
|
-
* <p>
|
|
1282
|
+
* <p>The description of the IP access settings.</p>
|
|
1462
1283
|
*/
|
|
1463
|
-
|
|
1284
|
+
description?: string;
|
|
1464
1285
|
/**
|
|
1465
1286
|
* @public
|
|
1466
|
-
* <p>The
|
|
1287
|
+
* <p>The tags to add to the browser settings resource. A tag is a key-value pair.</p>
|
|
1467
1288
|
*/
|
|
1468
|
-
|
|
1289
|
+
tags?: Tag[];
|
|
1469
1290
|
/**
|
|
1470
1291
|
* @public
|
|
1471
|
-
* <p>
|
|
1292
|
+
* <p>The custom managed key of the IP access settings.</p>
|
|
1472
1293
|
*/
|
|
1473
|
-
|
|
1294
|
+
customerManagedKey?: string;
|
|
1474
1295
|
/**
|
|
1475
1296
|
* @public
|
|
1476
|
-
* <p>
|
|
1297
|
+
* <p>Additional encryption context of the IP access settings.</p>
|
|
1477
1298
|
*/
|
|
1478
|
-
|
|
1299
|
+
additionalEncryptionContext?: Record<string, string>;
|
|
1479
1300
|
/**
|
|
1480
1301
|
* @public
|
|
1481
|
-
* <p>The
|
|
1302
|
+
* <p>The IP rules of the IP access settings.</p>
|
|
1482
1303
|
*/
|
|
1483
|
-
|
|
1304
|
+
ipRules: IpRule[] | undefined;
|
|
1305
|
+
/**
|
|
1306
|
+
* @public
|
|
1307
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1308
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
1309
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
1310
|
+
* client token returns the result from the original successful request. </p>
|
|
1311
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
1312
|
+
* SDK.</p>
|
|
1313
|
+
*/
|
|
1314
|
+
clientToken?: string;
|
|
1484
1315
|
}
|
|
1485
1316
|
/**
|
|
1486
1317
|
* @public
|
|
1487
1318
|
*/
|
|
1488
|
-
export interface
|
|
1319
|
+
export interface CreateIpAccessSettingsResponse {
|
|
1489
1320
|
/**
|
|
1490
1321
|
* @public
|
|
1491
|
-
* <p>The IP access settings.</p>
|
|
1322
|
+
* <p>The ARN of the IP access settings resource.</p>
|
|
1492
1323
|
*/
|
|
1493
|
-
|
|
1324
|
+
ipAccessSettingsArn: string | undefined;
|
|
1494
1325
|
}
|
|
1495
1326
|
/**
|
|
1496
1327
|
* @public
|
|
1497
1328
|
*/
|
|
1498
|
-
export interface
|
|
1329
|
+
export interface DeleteIpAccessSettingsRequest {
|
|
1499
1330
|
/**
|
|
1500
1331
|
* @public
|
|
1501
|
-
* <p>The ARN of the
|
|
1332
|
+
* <p>The ARN of the IP access settings.</p>
|
|
1502
1333
|
*/
|
|
1503
|
-
|
|
1334
|
+
ipAccessSettingsArn: string | undefined;
|
|
1504
1335
|
}
|
|
1505
1336
|
/**
|
|
1506
1337
|
* @public
|
|
1507
|
-
* <p>A network settings resource that can be associated with a web portal. Once associated
|
|
1508
|
-
* with a web portal, network settings define how streaming instances will connect with your
|
|
1509
|
-
* specified VPC. </p>
|
|
1510
1338
|
*/
|
|
1511
|
-
export interface
|
|
1339
|
+
export interface DeleteIpAccessSettingsResponse {
|
|
1340
|
+
}
|
|
1341
|
+
/**
|
|
1342
|
+
* @public
|
|
1343
|
+
*/
|
|
1344
|
+
export interface GetIpAccessSettingsRequest {
|
|
1512
1345
|
/**
|
|
1513
1346
|
* @public
|
|
1514
|
-
* <p>The ARN of the
|
|
1347
|
+
* <p>The ARN of the IP access settings.</p>
|
|
1515
1348
|
*/
|
|
1516
|
-
|
|
1349
|
+
ipAccessSettingsArn: string | undefined;
|
|
1350
|
+
}
|
|
1351
|
+
/**
|
|
1352
|
+
* @public
|
|
1353
|
+
* <p>The IP access settings resource that can be associated with a web portal. </p>
|
|
1354
|
+
*/
|
|
1355
|
+
export interface IpAccessSettings {
|
|
1517
1356
|
/**
|
|
1518
1357
|
* @public
|
|
1519
|
-
* <p>
|
|
1358
|
+
* <p>The ARN of the IP access settings resource.</p>
|
|
1359
|
+
*/
|
|
1360
|
+
ipAccessSettingsArn: string | undefined;
|
|
1361
|
+
/**
|
|
1362
|
+
* @public
|
|
1363
|
+
* <p>A list of web portal ARNs that this IP access settings resource is associated with.</p>
|
|
1520
1364
|
*/
|
|
1521
1365
|
associatedPortalArns?: string[];
|
|
1522
1366
|
/**
|
|
1523
1367
|
* @public
|
|
1524
|
-
* <p>The
|
|
1368
|
+
* <p>The IP rules of the IP access settings.</p>
|
|
1525
1369
|
*/
|
|
1526
|
-
|
|
1370
|
+
ipRules?: IpRule[];
|
|
1527
1371
|
/**
|
|
1528
1372
|
* @public
|
|
1529
|
-
* <p>The
|
|
1373
|
+
* <p> The display name of the IP access settings.</p>
|
|
1530
1374
|
*/
|
|
1531
|
-
|
|
1375
|
+
displayName?: string;
|
|
1532
1376
|
/**
|
|
1533
1377
|
* @public
|
|
1534
|
-
* <p>
|
|
1378
|
+
* <p>The description of the IP access settings.</p>
|
|
1535
1379
|
*/
|
|
1536
|
-
|
|
1537
|
-
}
|
|
1538
|
-
/**
|
|
1539
|
-
* @public
|
|
1540
|
-
*/
|
|
1541
|
-
export interface GetNetworkSettingsResponse {
|
|
1380
|
+
description?: string;
|
|
1542
1381
|
/**
|
|
1543
1382
|
* @public
|
|
1544
|
-
* <p>The
|
|
1383
|
+
* <p>The creation date timestamp of the IP access settings.</p>
|
|
1545
1384
|
*/
|
|
1546
|
-
|
|
1385
|
+
creationDate?: Date;
|
|
1547
1386
|
}
|
|
1548
1387
|
/**
|
|
1549
1388
|
* @public
|
|
1550
1389
|
*/
|
|
1551
|
-
export interface
|
|
1390
|
+
export interface GetIpAccessSettingsResponse {
|
|
1552
1391
|
/**
|
|
1553
1392
|
* @public
|
|
1554
|
-
* <p>The
|
|
1393
|
+
* <p>The IP access settings.</p>
|
|
1555
1394
|
*/
|
|
1556
|
-
|
|
1395
|
+
ipAccessSettings?: IpAccessSettings;
|
|
1557
1396
|
}
|
|
1558
1397
|
/**
|
|
1559
1398
|
* @public
|
|
1560
|
-
* @enum
|
|
1561
|
-
*/
|
|
1562
|
-
export declare const BrowserType: {
|
|
1563
|
-
readonly CHROME: "Chrome";
|
|
1564
|
-
};
|
|
1565
|
-
/**
|
|
1566
|
-
* @public
|
|
1567
|
-
*/
|
|
1568
|
-
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
1569
|
-
/**
|
|
1570
|
-
* @public
|
|
1571
|
-
* @enum
|
|
1572
|
-
*/
|
|
1573
|
-
export declare const PortalStatus: {
|
|
1574
|
-
readonly ACTIVE: "Active";
|
|
1575
|
-
readonly INCOMPLETE: "Incomplete";
|
|
1576
|
-
readonly PENDING: "Pending";
|
|
1577
|
-
};
|
|
1578
|
-
/**
|
|
1579
|
-
* @public
|
|
1580
|
-
*/
|
|
1581
|
-
export type PortalStatus = (typeof PortalStatus)[keyof typeof PortalStatus];
|
|
1582
|
-
/**
|
|
1583
|
-
* @public
|
|
1584
|
-
* @enum
|
|
1585
|
-
*/
|
|
1586
|
-
export declare const RendererType: {
|
|
1587
|
-
readonly APPSTREAM: "AppStream";
|
|
1588
|
-
};
|
|
1589
|
-
/**
|
|
1590
|
-
* @public
|
|
1591
|
-
*/
|
|
1592
|
-
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
1593
|
-
/**
|
|
1594
|
-
* @public
|
|
1595
|
-
* <p>The web portal.</p>
|
|
1596
1399
|
*/
|
|
1597
|
-
export interface
|
|
1598
|
-
/**
|
|
1599
|
-
* @public
|
|
1600
|
-
* <p>The ARN of the web portal.</p>
|
|
1601
|
-
*/
|
|
1602
|
-
portalArn?: string;
|
|
1400
|
+
export interface ListIpAccessSettingsRequest {
|
|
1603
1401
|
/**
|
|
1604
1402
|
* @public
|
|
1605
|
-
* <p>The
|
|
1403
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1606
1404
|
*/
|
|
1607
|
-
|
|
1405
|
+
nextToken?: string;
|
|
1608
1406
|
/**
|
|
1609
1407
|
* @public
|
|
1610
|
-
* <p>The
|
|
1408
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1611
1409
|
*/
|
|
1612
|
-
|
|
1410
|
+
maxResults?: number;
|
|
1411
|
+
}
|
|
1412
|
+
/**
|
|
1413
|
+
* @public
|
|
1414
|
+
* <p>The summary of IP access settings.</p>
|
|
1415
|
+
*/
|
|
1416
|
+
export interface IpAccessSettingsSummary {
|
|
1613
1417
|
/**
|
|
1614
1418
|
* @public
|
|
1615
|
-
* <p>The
|
|
1419
|
+
* <p>The ARN of IP access settings.</p>
|
|
1616
1420
|
*/
|
|
1617
|
-
|
|
1421
|
+
ipAccessSettingsArn: string | undefined;
|
|
1618
1422
|
/**
|
|
1619
1423
|
* @public
|
|
1620
|
-
* <p>The
|
|
1621
|
-
* sessions.</p>
|
|
1424
|
+
* <p>The display name of the IP access settings.</p>
|
|
1622
1425
|
*/
|
|
1623
|
-
|
|
1426
|
+
displayName?: string;
|
|
1624
1427
|
/**
|
|
1625
1428
|
* @public
|
|
1626
|
-
* <p>The
|
|
1429
|
+
* <p>The description of the IP access settings.</p>
|
|
1627
1430
|
*/
|
|
1628
|
-
|
|
1431
|
+
description?: string;
|
|
1629
1432
|
/**
|
|
1630
1433
|
* @public
|
|
1631
|
-
* <p>The creation date of the
|
|
1434
|
+
* <p>The creation date timestamp of the IP access settings.</p>
|
|
1632
1435
|
*/
|
|
1633
1436
|
creationDate?: Date;
|
|
1437
|
+
}
|
|
1438
|
+
/**
|
|
1439
|
+
* @public
|
|
1440
|
+
*/
|
|
1441
|
+
export interface ListIpAccessSettingsResponse {
|
|
1634
1442
|
/**
|
|
1635
1443
|
* @public
|
|
1636
|
-
* <p>The
|
|
1444
|
+
* <p>The IP access settings.</p>
|
|
1637
1445
|
*/
|
|
1638
|
-
|
|
1446
|
+
ipAccessSettings?: IpAccessSettingsSummary[];
|
|
1639
1447
|
/**
|
|
1640
1448
|
* @public
|
|
1641
|
-
* <p>The
|
|
1449
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1642
1450
|
*/
|
|
1643
|
-
|
|
1451
|
+
nextToken?: string;
|
|
1452
|
+
}
|
|
1453
|
+
/**
|
|
1454
|
+
* @public
|
|
1455
|
+
*/
|
|
1456
|
+
export interface UpdateIpAccessSettingsRequest {
|
|
1644
1457
|
/**
|
|
1645
1458
|
* @public
|
|
1646
|
-
* <p>The ARN of the
|
|
1459
|
+
* <p>The ARN of the IP access settings.</p>
|
|
1647
1460
|
*/
|
|
1648
|
-
|
|
1461
|
+
ipAccessSettingsArn: string | undefined;
|
|
1649
1462
|
/**
|
|
1650
1463
|
* @public
|
|
1651
|
-
* <p>The
|
|
1464
|
+
* <p>The display name of the IP access settings.</p>
|
|
1652
1465
|
*/
|
|
1653
|
-
|
|
1466
|
+
displayName?: string;
|
|
1654
1467
|
/**
|
|
1655
1468
|
* @public
|
|
1656
|
-
* <p>
|
|
1469
|
+
* <p>The description of the IP access settings.</p>
|
|
1657
1470
|
*/
|
|
1658
|
-
|
|
1471
|
+
description?: string;
|
|
1659
1472
|
/**
|
|
1660
1473
|
* @public
|
|
1661
|
-
* <p>The
|
|
1474
|
+
* <p>The updated IP rules of the IP access settings.</p>
|
|
1662
1475
|
*/
|
|
1663
|
-
|
|
1476
|
+
ipRules?: IpRule[];
|
|
1664
1477
|
/**
|
|
1665
1478
|
* @public
|
|
1666
|
-
* <p>
|
|
1667
|
-
*
|
|
1668
|
-
*
|
|
1669
|
-
*
|
|
1670
|
-
*
|
|
1671
|
-
*
|
|
1672
|
-
* through your identity provider.</p>
|
|
1673
|
-
* <p>
|
|
1674
|
-
* <code>IAM_Identity_Center</code> web portals are authenticated through AWS IAM Identity
|
|
1675
|
-
* Center (successor to AWS Single Sign-On). They provide additional features, such as
|
|
1676
|
-
* IdP-initiated authentication. Identity sources (including external identity provider
|
|
1677
|
-
* integration), plus user and group access to your web portal, can be configured in the IAM
|
|
1678
|
-
* Identity Center.</p>
|
|
1479
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1480
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
1481
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
1482
|
+
* client token return the result from the original successful request. </p>
|
|
1483
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
1484
|
+
* SDK.</p>
|
|
1679
1485
|
*/
|
|
1680
|
-
|
|
1486
|
+
clientToken?: string;
|
|
1487
|
+
}
|
|
1488
|
+
/**
|
|
1489
|
+
* @public
|
|
1490
|
+
*/
|
|
1491
|
+
export interface UpdateIpAccessSettingsResponse {
|
|
1681
1492
|
/**
|
|
1682
1493
|
* @public
|
|
1683
|
-
* <p>The
|
|
1494
|
+
* <p>The IP access settings.</p>
|
|
1684
1495
|
*/
|
|
1685
|
-
|
|
1496
|
+
ipAccessSettings: IpAccessSettings | undefined;
|
|
1686
1497
|
}
|
|
1687
1498
|
/**
|
|
1688
1499
|
* @public
|
|
1689
1500
|
*/
|
|
1690
|
-
export interface
|
|
1501
|
+
export interface ListTagsForResourceRequest {
|
|
1691
1502
|
/**
|
|
1692
1503
|
* @public
|
|
1693
|
-
* <p>The
|
|
1504
|
+
* <p>The ARN of the resource.</p>
|
|
1694
1505
|
*/
|
|
1695
|
-
|
|
1506
|
+
resourceArn: string | undefined;
|
|
1696
1507
|
}
|
|
1697
1508
|
/**
|
|
1698
1509
|
* @public
|
|
1699
1510
|
*/
|
|
1700
|
-
export interface
|
|
1511
|
+
export interface ListTagsForResourceResponse {
|
|
1701
1512
|
/**
|
|
1702
1513
|
* @public
|
|
1703
|
-
* <p>The
|
|
1514
|
+
* <p>The tags of the resource.</p>
|
|
1704
1515
|
*/
|
|
1705
|
-
|
|
1516
|
+
tags?: Tag[];
|
|
1706
1517
|
}
|
|
1707
1518
|
/**
|
|
1708
1519
|
* @public
|
|
1709
1520
|
*/
|
|
1710
|
-
export interface
|
|
1521
|
+
export interface CreateNetworkSettingsRequest {
|
|
1711
1522
|
/**
|
|
1712
1523
|
* @public
|
|
1713
|
-
* <p>The
|
|
1524
|
+
* <p>The VPC that streaming instances will connect to.</p>
|
|
1714
1525
|
*/
|
|
1715
|
-
|
|
1526
|
+
vpcId: string | undefined;
|
|
1716
1527
|
/**
|
|
1717
1528
|
* @public
|
|
1718
|
-
* <p>The
|
|
1529
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1719
1530
|
*/
|
|
1720
|
-
|
|
1721
|
-
}
|
|
1722
|
-
/**
|
|
1723
|
-
* @public
|
|
1724
|
-
*/
|
|
1725
|
-
export interface GetTrustStoreRequest {
|
|
1531
|
+
subnetIds: string[] | undefined;
|
|
1726
1532
|
/**
|
|
1727
1533
|
* @public
|
|
1728
|
-
* <p>
|
|
1534
|
+
* <p>One or more security groups used to control access from streaming instances to your VPC.</p>
|
|
1729
1535
|
*/
|
|
1730
|
-
|
|
1731
|
-
}
|
|
1732
|
-
/**
|
|
1733
|
-
* @public
|
|
1734
|
-
* <p>A trust store that can be associated with a web portal. A trust store contains
|
|
1735
|
-
* certificate authority (CA) certificates. Once associated with a web portal, the browser in
|
|
1736
|
-
* a streaming session will recognize certificates that have been issued using any of the CAs
|
|
1737
|
-
* in the trust store. If your organization has internal websites that use certificates issued
|
|
1738
|
-
* by private CAs, you should add the private CA certificate to the trust store. </p>
|
|
1739
|
-
*/
|
|
1740
|
-
export interface TrustStore {
|
|
1536
|
+
securityGroupIds: string[] | undefined;
|
|
1741
1537
|
/**
|
|
1742
1538
|
* @public
|
|
1743
|
-
* <p>
|
|
1539
|
+
* <p>The tags to add to the network settings resource. A tag is a key-value pair.</p>
|
|
1744
1540
|
*/
|
|
1745
|
-
|
|
1541
|
+
tags?: Tag[];
|
|
1746
1542
|
/**
|
|
1747
1543
|
* @public
|
|
1748
|
-
* <p>
|
|
1544
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1545
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
1546
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
1547
|
+
* client token returns the result from the original successful request. </p>
|
|
1548
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
1549
|
+
* SDK.</p>
|
|
1749
1550
|
*/
|
|
1750
|
-
|
|
1551
|
+
clientToken?: string;
|
|
1751
1552
|
}
|
|
1752
1553
|
/**
|
|
1753
1554
|
* @public
|
|
1754
1555
|
*/
|
|
1755
|
-
export interface
|
|
1556
|
+
export interface CreateNetworkSettingsResponse {
|
|
1756
1557
|
/**
|
|
1757
1558
|
* @public
|
|
1758
|
-
* <p>The
|
|
1559
|
+
* <p>The ARN of the network settings.</p>
|
|
1759
1560
|
*/
|
|
1760
|
-
|
|
1561
|
+
networkSettingsArn: string | undefined;
|
|
1761
1562
|
}
|
|
1762
1563
|
/**
|
|
1763
1564
|
* @public
|
|
1764
1565
|
*/
|
|
1765
|
-
export interface
|
|
1566
|
+
export interface DeleteNetworkSettingsRequest {
|
|
1766
1567
|
/**
|
|
1767
1568
|
* @public
|
|
1768
|
-
* <p>The ARN of the
|
|
1569
|
+
* <p>The ARN of the network settings.</p>
|
|
1769
1570
|
*/
|
|
1770
|
-
|
|
1571
|
+
networkSettingsArn: string | undefined;
|
|
1572
|
+
}
|
|
1573
|
+
/**
|
|
1574
|
+
* @public
|
|
1575
|
+
*/
|
|
1576
|
+
export interface DeleteNetworkSettingsResponse {
|
|
1577
|
+
}
|
|
1578
|
+
/**
|
|
1579
|
+
* @public
|
|
1580
|
+
*/
|
|
1581
|
+
export interface GetNetworkSettingsRequest {
|
|
1771
1582
|
/**
|
|
1772
1583
|
* @public
|
|
1773
|
-
* <p>The
|
|
1584
|
+
* <p>The ARN of the network settings.</p>
|
|
1774
1585
|
*/
|
|
1775
|
-
|
|
1586
|
+
networkSettingsArn: string | undefined;
|
|
1776
1587
|
}
|
|
1777
1588
|
/**
|
|
1778
1589
|
* @public
|
|
1779
|
-
* <p>
|
|
1590
|
+
* <p>A network settings resource that can be associated with a web portal. Once associated
|
|
1591
|
+
* with a web portal, network settings define how streaming instances will connect with your
|
|
1592
|
+
* specified VPC. </p>
|
|
1780
1593
|
*/
|
|
1781
|
-
export interface
|
|
1594
|
+
export interface NetworkSettings {
|
|
1782
1595
|
/**
|
|
1783
1596
|
* @public
|
|
1784
|
-
* <p>
|
|
1597
|
+
* <p>The ARN of the network settings.</p>
|
|
1785
1598
|
*/
|
|
1786
|
-
|
|
1599
|
+
networkSettingsArn: string | undefined;
|
|
1787
1600
|
/**
|
|
1788
1601
|
* @public
|
|
1789
|
-
* <p>
|
|
1602
|
+
* <p>A list of web portal ARNs that this network settings is associated with.</p>
|
|
1790
1603
|
*/
|
|
1791
|
-
|
|
1604
|
+
associatedPortalArns?: string[];
|
|
1792
1605
|
/**
|
|
1793
1606
|
* @public
|
|
1794
|
-
* <p>The
|
|
1607
|
+
* <p>The VPC that streaming instances will connect to.</p>
|
|
1795
1608
|
*/
|
|
1796
|
-
|
|
1609
|
+
vpcId?: string;
|
|
1797
1610
|
/**
|
|
1798
1611
|
* @public
|
|
1799
|
-
* <p>The
|
|
1612
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1800
1613
|
*/
|
|
1801
|
-
|
|
1614
|
+
subnetIds?: string[];
|
|
1802
1615
|
/**
|
|
1803
1616
|
* @public
|
|
1804
|
-
* <p>
|
|
1617
|
+
* <p>One or more security groups used to control access from streaming instances to your VPC. </p>
|
|
1805
1618
|
*/
|
|
1806
|
-
|
|
1619
|
+
securityGroupIds?: string[];
|
|
1620
|
+
}
|
|
1621
|
+
/**
|
|
1622
|
+
* @public
|
|
1623
|
+
*/
|
|
1624
|
+
export interface GetNetworkSettingsResponse {
|
|
1807
1625
|
/**
|
|
1808
1626
|
* @public
|
|
1809
|
-
* <p>The
|
|
1627
|
+
* <p>The network settings.</p>
|
|
1810
1628
|
*/
|
|
1811
|
-
|
|
1629
|
+
networkSettings?: NetworkSettings;
|
|
1812
1630
|
}
|
|
1813
1631
|
/**
|
|
1814
1632
|
* @public
|
|
1815
1633
|
*/
|
|
1816
|
-
export interface
|
|
1634
|
+
export interface ListNetworkSettingsRequest {
|
|
1817
1635
|
/**
|
|
1818
1636
|
* @public
|
|
1819
|
-
* <p>The
|
|
1637
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1820
1638
|
*/
|
|
1821
|
-
|
|
1639
|
+
nextToken?: string;
|
|
1822
1640
|
/**
|
|
1823
1641
|
* @public
|
|
1824
|
-
* <p>The
|
|
1642
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
1825
1643
|
*/
|
|
1826
|
-
|
|
1644
|
+
maxResults?: number;
|
|
1827
1645
|
}
|
|
1828
1646
|
/**
|
|
1829
1647
|
* @public
|
|
1648
|
+
* <p>The summary of network settings.</p>
|
|
1830
1649
|
*/
|
|
1831
|
-
export interface
|
|
1650
|
+
export interface NetworkSettingsSummary {
|
|
1832
1651
|
/**
|
|
1833
1652
|
* @public
|
|
1834
|
-
* <p>The ARN of the
|
|
1653
|
+
* <p>The ARN of the network settings.</p>
|
|
1835
1654
|
*/
|
|
1836
|
-
|
|
1655
|
+
networkSettingsArn: string | undefined;
|
|
1656
|
+
/**
|
|
1657
|
+
* @public
|
|
1658
|
+
* <p>The VPC ID of the network settings.</p>
|
|
1659
|
+
*/
|
|
1660
|
+
vpcId?: string;
|
|
1837
1661
|
}
|
|
1838
1662
|
/**
|
|
1839
1663
|
* @public
|
|
1840
|
-
* <p>A user access logging settings resource that can be associated with a web portal.</p>
|
|
1841
1664
|
*/
|
|
1842
|
-
export interface
|
|
1843
|
-
/**
|
|
1844
|
-
* @public
|
|
1845
|
-
* <p>The ARN of the user access logging settings.</p>
|
|
1846
|
-
*/
|
|
1847
|
-
userAccessLoggingSettingsArn: string | undefined;
|
|
1665
|
+
export interface ListNetworkSettingsResponse {
|
|
1848
1666
|
/**
|
|
1849
1667
|
* @public
|
|
1850
|
-
* <p>
|
|
1668
|
+
* <p>The network settings.</p>
|
|
1851
1669
|
*/
|
|
1852
|
-
|
|
1670
|
+
networkSettings?: NetworkSettingsSummary[];
|
|
1853
1671
|
/**
|
|
1854
1672
|
* @public
|
|
1855
|
-
* <p>The
|
|
1673
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
1856
1674
|
*/
|
|
1857
|
-
|
|
1675
|
+
nextToken?: string;
|
|
1858
1676
|
}
|
|
1859
1677
|
/**
|
|
1860
1678
|
* @public
|
|
1861
1679
|
*/
|
|
1862
|
-
export interface
|
|
1680
|
+
export interface UpdateNetworkSettingsRequest {
|
|
1863
1681
|
/**
|
|
1864
1682
|
* @public
|
|
1865
|
-
* <p>The
|
|
1683
|
+
* <p>The ARN of the network settings.</p>
|
|
1866
1684
|
*/
|
|
1867
|
-
|
|
1685
|
+
networkSettingsArn: string | undefined;
|
|
1686
|
+
/**
|
|
1687
|
+
* @public
|
|
1688
|
+
* <p>The VPC that streaming instances will connect to.</p>
|
|
1689
|
+
*/
|
|
1690
|
+
vpcId?: string;
|
|
1691
|
+
/**
|
|
1692
|
+
* @public
|
|
1693
|
+
* <p>The subnets in which network interfaces are created to connect streaming instances to your VPC. At least two of these subnets must be in different availability zones.</p>
|
|
1694
|
+
*/
|
|
1695
|
+
subnetIds?: string[];
|
|
1696
|
+
/**
|
|
1697
|
+
* @public
|
|
1698
|
+
* <p>One or more security groups used to control access from streaming instances to your VPC.</p>
|
|
1699
|
+
*/
|
|
1700
|
+
securityGroupIds?: string[];
|
|
1701
|
+
/**
|
|
1702
|
+
* @public
|
|
1703
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1704
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
1705
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
1706
|
+
* client token return the result from the original successful request. </p>
|
|
1707
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
1708
|
+
* SDK.</p>
|
|
1709
|
+
*/
|
|
1710
|
+
clientToken?: string;
|
|
1868
1711
|
}
|
|
1869
1712
|
/**
|
|
1870
1713
|
* @public
|
|
1871
1714
|
*/
|
|
1872
|
-
export interface
|
|
1715
|
+
export interface UpdateNetworkSettingsResponse {
|
|
1873
1716
|
/**
|
|
1874
1717
|
* @public
|
|
1875
|
-
* <p>The
|
|
1718
|
+
* <p>The network settings.</p>
|
|
1876
1719
|
*/
|
|
1877
|
-
|
|
1720
|
+
networkSettings: NetworkSettings | undefined;
|
|
1878
1721
|
}
|
|
1879
1722
|
/**
|
|
1880
1723
|
* @public
|
|
1881
|
-
*
|
|
1882
|
-
|
|
1883
|
-
|
|
1724
|
+
* @enum
|
|
1725
|
+
*/
|
|
1726
|
+
export declare const BrowserType: {
|
|
1727
|
+
readonly CHROME: "Chrome";
|
|
1728
|
+
};
|
|
1729
|
+
/**
|
|
1730
|
+
* @public
|
|
1731
|
+
*/
|
|
1732
|
+
export type BrowserType = (typeof BrowserType)[keyof typeof BrowserType];
|
|
1733
|
+
/**
|
|
1734
|
+
* @public
|
|
1884
1735
|
*/
|
|
1885
|
-
export interface
|
|
1886
|
-
/**
|
|
1887
|
-
* @public
|
|
1888
|
-
* <p>The ARN of the user settings.</p>
|
|
1889
|
-
*/
|
|
1890
|
-
userSettingsArn: string | undefined;
|
|
1736
|
+
export interface CreatePortalRequest {
|
|
1891
1737
|
/**
|
|
1892
1738
|
* @public
|
|
1893
|
-
* <p>
|
|
1739
|
+
* <p>The name of the web portal. This is not visible to users who log into the web portal.</p>
|
|
1894
1740
|
*/
|
|
1895
|
-
|
|
1741
|
+
displayName?: string;
|
|
1896
1742
|
/**
|
|
1897
1743
|
* @public
|
|
1898
|
-
* <p>
|
|
1899
|
-
* device.</p>
|
|
1744
|
+
* <p>The tags to add to the web portal. A tag is a key-value pair.</p>
|
|
1900
1745
|
*/
|
|
1901
|
-
|
|
1746
|
+
tags?: Tag[];
|
|
1902
1747
|
/**
|
|
1903
1748
|
* @public
|
|
1904
|
-
* <p>
|
|
1905
|
-
* session.</p>
|
|
1749
|
+
* <p>The customer managed key of the web portal.</p>
|
|
1906
1750
|
*/
|
|
1907
|
-
|
|
1751
|
+
customerManagedKey?: string;
|
|
1908
1752
|
/**
|
|
1909
1753
|
* @public
|
|
1910
|
-
* <p>
|
|
1911
|
-
* device.</p>
|
|
1754
|
+
* <p>The additional encryption context of the portal.</p>
|
|
1912
1755
|
*/
|
|
1913
|
-
|
|
1756
|
+
additionalEncryptionContext?: Record<string, string>;
|
|
1914
1757
|
/**
|
|
1915
1758
|
* @public
|
|
1916
|
-
* <p>
|
|
1917
|
-
*
|
|
1759
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
1760
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
1761
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
1762
|
+
* client token returns the result from the original successful request. </p>
|
|
1763
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
1764
|
+
* SDK.</p>
|
|
1918
1765
|
*/
|
|
1919
|
-
|
|
1766
|
+
clientToken?: string;
|
|
1920
1767
|
/**
|
|
1921
1768
|
* @public
|
|
1922
|
-
* <p>
|
|
1769
|
+
* <p>The type of authentication integration points used when signing into the web portal.
|
|
1770
|
+
* Defaults to <code>Standard</code>.</p>
|
|
1771
|
+
* <p>
|
|
1772
|
+
* <code>Standard</code> web portals are authenticated directly through your identity
|
|
1773
|
+
* provider. You need to call <code>CreateIdentityProvider</code> to integrate your identity
|
|
1774
|
+
* provider with your web portal. User and group access to your web portal is controlled
|
|
1775
|
+
* through your identity provider.</p>
|
|
1776
|
+
* <p>
|
|
1777
|
+
* <code>IAM_Identity_Center</code> web portals are authenticated through AWS IAM Identity
|
|
1778
|
+
* Center (successor to AWS Single Sign-On). They provide additional features, such as
|
|
1779
|
+
* IdP-initiated authentication. Identity sources (including external identity provider
|
|
1780
|
+
* integration), plus user and group access to your web portal, can be configured in the IAM
|
|
1781
|
+
* Identity Center.</p>
|
|
1923
1782
|
*/
|
|
1924
|
-
|
|
1783
|
+
authenticationType?: AuthenticationType | string;
|
|
1784
|
+
}
|
|
1785
|
+
/**
|
|
1786
|
+
* @public
|
|
1787
|
+
*/
|
|
1788
|
+
export interface CreatePortalResponse {
|
|
1925
1789
|
/**
|
|
1926
1790
|
* @public
|
|
1927
|
-
* <p>The
|
|
1791
|
+
* <p>The ARN of the web portal.</p>
|
|
1928
1792
|
*/
|
|
1929
|
-
|
|
1793
|
+
portalArn: string | undefined;
|
|
1930
1794
|
/**
|
|
1931
1795
|
* @public
|
|
1932
|
-
* <p>The
|
|
1796
|
+
* <p>The endpoint URL of the web portal that users access in order to start streaming sessions.</p>
|
|
1933
1797
|
*/
|
|
1934
|
-
|
|
1798
|
+
portalEndpoint: string | undefined;
|
|
1935
1799
|
}
|
|
1936
1800
|
/**
|
|
1937
1801
|
* @public
|
|
1938
1802
|
*/
|
|
1939
|
-
export interface
|
|
1803
|
+
export interface DeletePortalRequest {
|
|
1940
1804
|
/**
|
|
1941
1805
|
* @public
|
|
1942
|
-
* <p>The
|
|
1806
|
+
* <p>The ARN of the web portal.</p>
|
|
1943
1807
|
*/
|
|
1944
|
-
|
|
1808
|
+
portalArn: string | undefined;
|
|
1945
1809
|
}
|
|
1946
1810
|
/**
|
|
1947
1811
|
* @public
|
|
1948
1812
|
*/
|
|
1949
|
-
export interface
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1813
|
+
export interface DeletePortalResponse {
|
|
1814
|
+
}
|
|
1815
|
+
/**
|
|
1816
|
+
* @public
|
|
1817
|
+
*/
|
|
1818
|
+
export interface DisassociateBrowserSettingsRequest {
|
|
1955
1819
|
/**
|
|
1956
1820
|
* @public
|
|
1957
|
-
* <p>The
|
|
1821
|
+
* <p>The ARN of the web portal.</p>
|
|
1958
1822
|
*/
|
|
1959
|
-
|
|
1823
|
+
portalArn: string | undefined;
|
|
1960
1824
|
}
|
|
1961
1825
|
/**
|
|
1962
1826
|
* @public
|
|
1963
|
-
* <p>The summary for browser settings.</p>
|
|
1964
1827
|
*/
|
|
1965
|
-
export interface
|
|
1828
|
+
export interface DisassociateBrowserSettingsResponse {
|
|
1829
|
+
}
|
|
1830
|
+
/**
|
|
1831
|
+
* @public
|
|
1832
|
+
*/
|
|
1833
|
+
export interface DisassociateIpAccessSettingsRequest {
|
|
1966
1834
|
/**
|
|
1967
1835
|
* @public
|
|
1968
|
-
* <p>The ARN of the
|
|
1836
|
+
* <p>The ARN of the web portal.</p>
|
|
1969
1837
|
*/
|
|
1970
|
-
|
|
1838
|
+
portalArn: string | undefined;
|
|
1971
1839
|
}
|
|
1972
1840
|
/**
|
|
1973
1841
|
* @public
|
|
1974
1842
|
*/
|
|
1975
|
-
export interface
|
|
1843
|
+
export interface DisassociateIpAccessSettingsResponse {
|
|
1844
|
+
}
|
|
1845
|
+
/**
|
|
1846
|
+
* @public
|
|
1847
|
+
*/
|
|
1848
|
+
export interface DisassociateNetworkSettingsRequest {
|
|
1976
1849
|
/**
|
|
1977
1850
|
* @public
|
|
1978
|
-
* <p>The
|
|
1851
|
+
* <p>The ARN of the web portal.</p>
|
|
1979
1852
|
*/
|
|
1980
|
-
|
|
1853
|
+
portalArn: string | undefined;
|
|
1854
|
+
}
|
|
1855
|
+
/**
|
|
1856
|
+
* @public
|
|
1857
|
+
*/
|
|
1858
|
+
export interface DisassociateNetworkSettingsResponse {
|
|
1859
|
+
}
|
|
1860
|
+
/**
|
|
1861
|
+
* @public
|
|
1862
|
+
*/
|
|
1863
|
+
export interface DisassociateTrustStoreRequest {
|
|
1981
1864
|
/**
|
|
1982
1865
|
* @public
|
|
1983
|
-
* <p>The
|
|
1866
|
+
* <p>The ARN of the web portal.</p>
|
|
1984
1867
|
*/
|
|
1985
|
-
|
|
1868
|
+
portalArn: string | undefined;
|
|
1986
1869
|
}
|
|
1987
1870
|
/**
|
|
1988
1871
|
* @public
|
|
1989
1872
|
*/
|
|
1990
|
-
export interface
|
|
1873
|
+
export interface DisassociateTrustStoreResponse {
|
|
1874
|
+
}
|
|
1875
|
+
/**
|
|
1876
|
+
* @public
|
|
1877
|
+
*/
|
|
1878
|
+
export interface DisassociateUserAccessLoggingSettingsRequest {
|
|
1991
1879
|
/**
|
|
1992
1880
|
* @public
|
|
1993
|
-
* <p>The
|
|
1881
|
+
* <p>The ARN of the web portal.</p>
|
|
1994
1882
|
*/
|
|
1995
|
-
|
|
1883
|
+
portalArn: string | undefined;
|
|
1884
|
+
}
|
|
1885
|
+
/**
|
|
1886
|
+
* @public
|
|
1887
|
+
*/
|
|
1888
|
+
export interface DisassociateUserAccessLoggingSettingsResponse {
|
|
1889
|
+
}
|
|
1890
|
+
/**
|
|
1891
|
+
* @public
|
|
1892
|
+
*/
|
|
1893
|
+
export interface DisassociateUserSettingsRequest {
|
|
1996
1894
|
/**
|
|
1997
1895
|
* @public
|
|
1998
|
-
* <p>The
|
|
1896
|
+
* <p>The ARN of the web portal.</p>
|
|
1999
1897
|
*/
|
|
2000
|
-
|
|
1898
|
+
portalArn: string | undefined;
|
|
1899
|
+
}
|
|
1900
|
+
/**
|
|
1901
|
+
* @public
|
|
1902
|
+
*/
|
|
1903
|
+
export interface DisassociateUserSettingsResponse {
|
|
1904
|
+
}
|
|
1905
|
+
/**
|
|
1906
|
+
* @public
|
|
1907
|
+
*/
|
|
1908
|
+
export interface GetPortalRequest {
|
|
2001
1909
|
/**
|
|
2002
1910
|
* @public
|
|
2003
1911
|
* <p>The ARN of the web portal.</p>
|
|
@@ -2006,141 +1914,156 @@ export interface ListIdentityProvidersRequest {
|
|
|
2006
1914
|
}
|
|
2007
1915
|
/**
|
|
2008
1916
|
* @public
|
|
2009
|
-
*
|
|
1917
|
+
* @enum
|
|
2010
1918
|
*/
|
|
2011
|
-
export
|
|
1919
|
+
export declare const PortalStatus: {
|
|
1920
|
+
readonly ACTIVE: "Active";
|
|
1921
|
+
readonly INCOMPLETE: "Incomplete";
|
|
1922
|
+
readonly PENDING: "Pending";
|
|
1923
|
+
};
|
|
1924
|
+
/**
|
|
1925
|
+
* @public
|
|
1926
|
+
*/
|
|
1927
|
+
export type PortalStatus = (typeof PortalStatus)[keyof typeof PortalStatus];
|
|
1928
|
+
/**
|
|
1929
|
+
* @public
|
|
1930
|
+
* @enum
|
|
1931
|
+
*/
|
|
1932
|
+
export declare const RendererType: {
|
|
1933
|
+
readonly APPSTREAM: "AppStream";
|
|
1934
|
+
};
|
|
1935
|
+
/**
|
|
1936
|
+
* @public
|
|
1937
|
+
*/
|
|
1938
|
+
export type RendererType = (typeof RendererType)[keyof typeof RendererType];
|
|
1939
|
+
/**
|
|
1940
|
+
* @public
|
|
1941
|
+
* <p>The web portal.</p>
|
|
1942
|
+
*/
|
|
1943
|
+
export interface Portal {
|
|
2012
1944
|
/**
|
|
2013
1945
|
* @public
|
|
2014
|
-
* <p>The ARN of the
|
|
1946
|
+
* <p>The ARN of the web portal.</p>
|
|
2015
1947
|
*/
|
|
2016
|
-
|
|
1948
|
+
portalArn: string | undefined;
|
|
2017
1949
|
/**
|
|
2018
1950
|
* @public
|
|
2019
|
-
* <p>The
|
|
1951
|
+
* <p>The renderer that is used in streaming sessions.</p>
|
|
2020
1952
|
*/
|
|
2021
|
-
|
|
1953
|
+
rendererType?: RendererType | string;
|
|
2022
1954
|
/**
|
|
2023
1955
|
* @public
|
|
2024
|
-
* <p>The
|
|
1956
|
+
* <p>The browser that users see when using a streaming session.</p>
|
|
2025
1957
|
*/
|
|
2026
|
-
|
|
2027
|
-
}
|
|
2028
|
-
/**
|
|
2029
|
-
* @public
|
|
2030
|
-
*/
|
|
2031
|
-
export interface ListIdentityProvidersResponse {
|
|
1958
|
+
browserType?: BrowserType | string;
|
|
2032
1959
|
/**
|
|
2033
1960
|
* @public
|
|
2034
|
-
* <p>The
|
|
1961
|
+
* <p>The status of the web portal.</p>
|
|
2035
1962
|
*/
|
|
2036
|
-
|
|
1963
|
+
portalStatus?: PortalStatus | string;
|
|
2037
1964
|
/**
|
|
2038
1965
|
* @public
|
|
2039
|
-
* <p>The
|
|
1966
|
+
* <p>The endpoint URL of the web portal that users access in order to start streaming
|
|
1967
|
+
* sessions.</p>
|
|
2040
1968
|
*/
|
|
2041
|
-
|
|
2042
|
-
}
|
|
2043
|
-
/**
|
|
2044
|
-
* @public
|
|
2045
|
-
*/
|
|
2046
|
-
export interface ListIpAccessSettingsRequest {
|
|
1969
|
+
portalEndpoint?: string;
|
|
2047
1970
|
/**
|
|
2048
1971
|
* @public
|
|
2049
|
-
* <p>The
|
|
1972
|
+
* <p>The name of the web portal.</p>
|
|
2050
1973
|
*/
|
|
2051
|
-
|
|
1974
|
+
displayName?: string;
|
|
2052
1975
|
/**
|
|
2053
1976
|
* @public
|
|
2054
|
-
* <p>The
|
|
1977
|
+
* <p>The creation date of the web portal.</p>
|
|
2055
1978
|
*/
|
|
2056
|
-
|
|
2057
|
-
}
|
|
2058
|
-
/**
|
|
2059
|
-
* @public
|
|
2060
|
-
* <p>The summary of IP access settings.</p>
|
|
2061
|
-
*/
|
|
2062
|
-
export interface IpAccessSettingsSummary {
|
|
1979
|
+
creationDate?: Date;
|
|
2063
1980
|
/**
|
|
2064
1981
|
* @public
|
|
2065
|
-
* <p>The ARN of
|
|
1982
|
+
* <p>The ARN of the browser settings that is associated with this web portal.</p>
|
|
2066
1983
|
*/
|
|
2067
|
-
|
|
1984
|
+
browserSettingsArn?: string;
|
|
2068
1985
|
/**
|
|
2069
1986
|
* @public
|
|
2070
|
-
* <p>The
|
|
1987
|
+
* <p>The ARN of the user settings that is associated with the web portal.</p>
|
|
2071
1988
|
*/
|
|
2072
|
-
|
|
1989
|
+
userSettingsArn?: string;
|
|
2073
1990
|
/**
|
|
2074
1991
|
* @public
|
|
2075
|
-
* <p>The
|
|
1992
|
+
* <p>The ARN of the network settings that is associated with the web portal.</p>
|
|
2076
1993
|
*/
|
|
2077
|
-
|
|
1994
|
+
networkSettingsArn?: string;
|
|
2078
1995
|
/**
|
|
2079
1996
|
* @public
|
|
2080
|
-
* <p>The
|
|
1997
|
+
* <p>The ARN of the trust store that is associated with the web portal.</p>
|
|
2081
1998
|
*/
|
|
2082
|
-
|
|
2083
|
-
}
|
|
2084
|
-
/**
|
|
2085
|
-
* @public
|
|
2086
|
-
*/
|
|
2087
|
-
export interface ListIpAccessSettingsResponse {
|
|
1999
|
+
trustStoreArn?: string;
|
|
2088
2000
|
/**
|
|
2089
2001
|
* @public
|
|
2090
|
-
* <p>
|
|
2002
|
+
* <p>A message that explains why the web portal is in its current status.</p>
|
|
2091
2003
|
*/
|
|
2092
|
-
|
|
2004
|
+
statusReason?: string;
|
|
2093
2005
|
/**
|
|
2094
2006
|
* @public
|
|
2095
|
-
* <p>The
|
|
2007
|
+
* <p>The ARN of the user access logging settings that is associated with the web portal.</p>
|
|
2096
2008
|
*/
|
|
2097
|
-
|
|
2098
|
-
}
|
|
2099
|
-
/**
|
|
2100
|
-
* @public
|
|
2101
|
-
*/
|
|
2102
|
-
export interface ListNetworkSettingsRequest {
|
|
2009
|
+
userAccessLoggingSettingsArn?: string;
|
|
2103
2010
|
/**
|
|
2104
2011
|
* @public
|
|
2105
|
-
* <p>The
|
|
2012
|
+
* <p>The type of authentication integration points used when signing into the web portal.
|
|
2013
|
+
* Defaults to <code>Standard</code>.</p>
|
|
2014
|
+
* <p>
|
|
2015
|
+
* <code>Standard</code> web portals are authenticated directly through your identity
|
|
2016
|
+
* provider. You need to call <code>CreateIdentityProvider</code> to integrate your identity
|
|
2017
|
+
* provider with your web portal. User and group access to your web portal is controlled
|
|
2018
|
+
* through your identity provider.</p>
|
|
2019
|
+
* <p>
|
|
2020
|
+
* <code>IAM_Identity_Center</code> web portals are authenticated through AWS IAM Identity
|
|
2021
|
+
* Center (successor to AWS Single Sign-On). They provide additional features, such as
|
|
2022
|
+
* IdP-initiated authentication. Identity sources (including external identity provider
|
|
2023
|
+
* integration), plus user and group access to your web portal, can be configured in the IAM
|
|
2024
|
+
* Identity Center.</p>
|
|
2106
2025
|
*/
|
|
2107
|
-
|
|
2026
|
+
authenticationType?: AuthenticationType | string;
|
|
2108
2027
|
/**
|
|
2109
2028
|
* @public
|
|
2110
|
-
* <p>The
|
|
2029
|
+
* <p>The ARN of the IP access settings.</p>
|
|
2111
2030
|
*/
|
|
2112
|
-
|
|
2031
|
+
ipAccessSettingsArn?: string;
|
|
2113
2032
|
}
|
|
2114
2033
|
/**
|
|
2115
2034
|
* @public
|
|
2116
|
-
* <p>The summary of network settings.</p>
|
|
2117
2035
|
*/
|
|
2118
|
-
export interface
|
|
2036
|
+
export interface GetPortalResponse {
|
|
2119
2037
|
/**
|
|
2120
2038
|
* @public
|
|
2121
|
-
* <p>The
|
|
2039
|
+
* <p>The web portal.</p>
|
|
2122
2040
|
*/
|
|
2123
|
-
|
|
2041
|
+
portal?: Portal;
|
|
2042
|
+
}
|
|
2043
|
+
/**
|
|
2044
|
+
* @public
|
|
2045
|
+
*/
|
|
2046
|
+
export interface GetPortalServiceProviderMetadataRequest {
|
|
2124
2047
|
/**
|
|
2125
2048
|
* @public
|
|
2126
|
-
* <p>The
|
|
2049
|
+
* <p>The ARN of the web portal.</p>
|
|
2127
2050
|
*/
|
|
2128
|
-
|
|
2051
|
+
portalArn: string | undefined;
|
|
2129
2052
|
}
|
|
2130
2053
|
/**
|
|
2131
2054
|
* @public
|
|
2132
2055
|
*/
|
|
2133
|
-
export interface
|
|
2056
|
+
export interface GetPortalServiceProviderMetadataResponse {
|
|
2134
2057
|
/**
|
|
2135
2058
|
* @public
|
|
2136
|
-
* <p>The
|
|
2059
|
+
* <p>The ARN of the web portal.</p>
|
|
2137
2060
|
*/
|
|
2138
|
-
|
|
2061
|
+
portalArn: string | undefined;
|
|
2139
2062
|
/**
|
|
2140
2063
|
* @public
|
|
2141
|
-
* <p>The
|
|
2064
|
+
* <p>The service provider SAML metadata.</p>
|
|
2142
2065
|
*/
|
|
2143
|
-
|
|
2066
|
+
serviceProviderSamlMetadata?: string;
|
|
2144
2067
|
}
|
|
2145
2068
|
/**
|
|
2146
2069
|
* @public
|
|
@@ -2166,7 +2089,7 @@ export interface PortalSummary {
|
|
|
2166
2089
|
* @public
|
|
2167
2090
|
* <p>The ARN of the web portal.</p>
|
|
2168
2091
|
*/
|
|
2169
|
-
portalArn
|
|
2092
|
+
portalArn: string | undefined;
|
|
2170
2093
|
/**
|
|
2171
2094
|
* @public
|
|
2172
2095
|
* <p>The renderer that is used in streaming sessions.</p>
|
|
@@ -2264,48 +2187,233 @@ export interface ListPortalsResponse {
|
|
|
2264
2187
|
/**
|
|
2265
2188
|
* @public
|
|
2266
2189
|
*/
|
|
2267
|
-
export interface
|
|
2190
|
+
export interface UpdatePortalRequest {
|
|
2191
|
+
/**
|
|
2192
|
+
* @public
|
|
2193
|
+
* <p>The ARN of the web portal.</p>
|
|
2194
|
+
*/
|
|
2195
|
+
portalArn: string | undefined;
|
|
2196
|
+
/**
|
|
2197
|
+
* @public
|
|
2198
|
+
* <p>The name of the web portal. This is not visible to users who log into the web portal.</p>
|
|
2199
|
+
*/
|
|
2200
|
+
displayName?: string;
|
|
2201
|
+
/**
|
|
2202
|
+
* @public
|
|
2203
|
+
* <p>The type of authentication integration points used when signing into the web portal.
|
|
2204
|
+
* Defaults to <code>Standard</code>.</p>
|
|
2205
|
+
* <p>
|
|
2206
|
+
* <code>Standard</code> web portals are authenticated directly through your identity
|
|
2207
|
+
* provider. You need to call <code>CreateIdentityProvider</code> to integrate your identity
|
|
2208
|
+
* provider with your web portal. User and group access to your web portal is controlled
|
|
2209
|
+
* through your identity provider.</p>
|
|
2210
|
+
* <p>
|
|
2211
|
+
* <code>IAM_Identity_Center</code> web portals are authenticated through AWS IAM Identity
|
|
2212
|
+
* Center (successor to AWS Single Sign-On). They provide additional features, such as
|
|
2213
|
+
* IdP-initiated authentication. Identity sources (including external identity provider
|
|
2214
|
+
* integration), plus user and group access to your web portal, can be configured in the IAM
|
|
2215
|
+
* Identity Center.</p>
|
|
2216
|
+
*/
|
|
2217
|
+
authenticationType?: AuthenticationType | string;
|
|
2218
|
+
}
|
|
2219
|
+
/**
|
|
2220
|
+
* @public
|
|
2221
|
+
*/
|
|
2222
|
+
export interface UpdatePortalResponse {
|
|
2223
|
+
/**
|
|
2224
|
+
* @public
|
|
2225
|
+
* <p>The web portal.</p>
|
|
2226
|
+
*/
|
|
2227
|
+
portal?: Portal;
|
|
2228
|
+
}
|
|
2229
|
+
/**
|
|
2230
|
+
* @public
|
|
2231
|
+
*/
|
|
2232
|
+
export interface TagResourceRequest {
|
|
2268
2233
|
/**
|
|
2269
2234
|
* @public
|
|
2270
2235
|
* <p>The ARN of the resource.</p>
|
|
2271
2236
|
*/
|
|
2272
2237
|
resourceArn: string | undefined;
|
|
2238
|
+
/**
|
|
2239
|
+
* @public
|
|
2240
|
+
* <p>The tags of the resource.</p>
|
|
2241
|
+
*/
|
|
2242
|
+
tags: Tag[] | undefined;
|
|
2243
|
+
/**
|
|
2244
|
+
* @public
|
|
2245
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2246
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2247
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2248
|
+
* client token returns the result from the original successful request. </p>
|
|
2249
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2250
|
+
* SDK.</p>
|
|
2251
|
+
*/
|
|
2252
|
+
clientToken?: string;
|
|
2273
2253
|
}
|
|
2274
2254
|
/**
|
|
2275
2255
|
* @public
|
|
2276
2256
|
*/
|
|
2277
|
-
export interface
|
|
2257
|
+
export interface TagResourceResponse {
|
|
2258
|
+
}
|
|
2259
|
+
/**
|
|
2260
|
+
* @public
|
|
2261
|
+
* <p>There are too many tags.</p>
|
|
2262
|
+
*/
|
|
2263
|
+
export declare class TooManyTagsException extends __BaseException {
|
|
2264
|
+
readonly name: "TooManyTagsException";
|
|
2265
|
+
readonly $fault: "client";
|
|
2278
2266
|
/**
|
|
2279
2267
|
* @public
|
|
2280
|
-
* <p>
|
|
2268
|
+
* <p>Name of the resource affected.</p>
|
|
2269
|
+
*/
|
|
2270
|
+
resourceName?: string;
|
|
2271
|
+
/**
|
|
2272
|
+
* @internal
|
|
2273
|
+
*/
|
|
2274
|
+
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
2275
|
+
}
|
|
2276
|
+
/**
|
|
2277
|
+
* @public
|
|
2278
|
+
* <p>The summary of the certificate.</p>
|
|
2279
|
+
*/
|
|
2280
|
+
export interface CertificateSummary {
|
|
2281
|
+
/**
|
|
2282
|
+
* @public
|
|
2283
|
+
* <p>A hexadecimal identifier for the certificate.</p>
|
|
2284
|
+
*/
|
|
2285
|
+
thumbprint?: string;
|
|
2286
|
+
/**
|
|
2287
|
+
* @public
|
|
2288
|
+
* <p>The entity the certificate belongs to.</p>
|
|
2289
|
+
*/
|
|
2290
|
+
subject?: string;
|
|
2291
|
+
/**
|
|
2292
|
+
* @public
|
|
2293
|
+
* <p>The entity that issued the certificate.</p>
|
|
2294
|
+
*/
|
|
2295
|
+
issuer?: string;
|
|
2296
|
+
/**
|
|
2297
|
+
* @public
|
|
2298
|
+
* <p>The certificate is not valid before this date.</p>
|
|
2299
|
+
*/
|
|
2300
|
+
notValidBefore?: Date;
|
|
2301
|
+
/**
|
|
2302
|
+
* @public
|
|
2303
|
+
* <p>The certificate is not valid after this date.</p>
|
|
2304
|
+
*/
|
|
2305
|
+
notValidAfter?: Date;
|
|
2306
|
+
}
|
|
2307
|
+
/**
|
|
2308
|
+
* @public
|
|
2309
|
+
*/
|
|
2310
|
+
export interface CreateTrustStoreRequest {
|
|
2311
|
+
/**
|
|
2312
|
+
* @public
|
|
2313
|
+
* <p>A list of CA certificates to be added to the trust store.</p>
|
|
2314
|
+
*/
|
|
2315
|
+
certificateList: Uint8Array[] | undefined;
|
|
2316
|
+
/**
|
|
2317
|
+
* @public
|
|
2318
|
+
* <p>The tags to add to the trust store. A tag is a key-value pair.</p>
|
|
2281
2319
|
*/
|
|
2282
2320
|
tags?: Tag[];
|
|
2321
|
+
/**
|
|
2322
|
+
* @public
|
|
2323
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2324
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2325
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2326
|
+
* client token returns the result from the original successful request. </p>
|
|
2327
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2328
|
+
* SDK.</p>
|
|
2329
|
+
*/
|
|
2330
|
+
clientToken?: string;
|
|
2283
2331
|
}
|
|
2284
2332
|
/**
|
|
2285
2333
|
* @public
|
|
2286
2334
|
*/
|
|
2287
|
-
export interface
|
|
2335
|
+
export interface CreateTrustStoreResponse {
|
|
2288
2336
|
/**
|
|
2289
2337
|
* @public
|
|
2290
|
-
* <p>The ARN of the trust store
|
|
2338
|
+
* <p>The ARN of the trust store.</p>
|
|
2291
2339
|
*/
|
|
2292
2340
|
trustStoreArn: string | undefined;
|
|
2341
|
+
}
|
|
2342
|
+
/**
|
|
2343
|
+
* @public
|
|
2344
|
+
*/
|
|
2345
|
+
export interface DeleteTrustStoreRequest {
|
|
2293
2346
|
/**
|
|
2294
2347
|
* @public
|
|
2295
|
-
* <p>The
|
|
2348
|
+
* <p>The ARN of the trust store.</p>
|
|
2349
|
+
*/
|
|
2350
|
+
trustStoreArn: string | undefined;
|
|
2351
|
+
}
|
|
2352
|
+
/**
|
|
2353
|
+
* @public
|
|
2354
|
+
*/
|
|
2355
|
+
export interface DeleteTrustStoreResponse {
|
|
2356
|
+
}
|
|
2357
|
+
/**
|
|
2358
|
+
* @public
|
|
2359
|
+
*/
|
|
2360
|
+
export interface GetTrustStoreRequest {
|
|
2361
|
+
/**
|
|
2362
|
+
* @public
|
|
2363
|
+
* <p>The ARN of the trust store.</p>
|
|
2364
|
+
*/
|
|
2365
|
+
trustStoreArn: string | undefined;
|
|
2366
|
+
}
|
|
2367
|
+
/**
|
|
2368
|
+
* @public
|
|
2369
|
+
* <p>A trust store that can be associated with a web portal. A trust store contains
|
|
2370
|
+
* certificate authority (CA) certificates. Once associated with a web portal, the browser in
|
|
2371
|
+
* a streaming session will recognize certificates that have been issued using any of the CAs
|
|
2372
|
+
* in the trust store. If your organization has internal websites that use certificates issued
|
|
2373
|
+
* by private CAs, you should add the private CA certificate to the trust store. </p>
|
|
2374
|
+
*/
|
|
2375
|
+
export interface TrustStore {
|
|
2376
|
+
/**
|
|
2377
|
+
* @public
|
|
2378
|
+
* <p>A list of web portal ARNs that this trust store is associated with.</p>
|
|
2379
|
+
*/
|
|
2380
|
+
associatedPortalArns?: string[];
|
|
2381
|
+
/**
|
|
2382
|
+
* @public
|
|
2383
|
+
* <p>The ARN of the trust store.</p>
|
|
2384
|
+
*/
|
|
2385
|
+
trustStoreArn: string | undefined;
|
|
2386
|
+
}
|
|
2387
|
+
/**
|
|
2388
|
+
* @public
|
|
2389
|
+
*/
|
|
2390
|
+
export interface GetTrustStoreResponse {
|
|
2391
|
+
/**
|
|
2392
|
+
* @public
|
|
2393
|
+
* <p>The trust store.</p>
|
|
2394
|
+
*/
|
|
2395
|
+
trustStore?: TrustStore;
|
|
2396
|
+
}
|
|
2397
|
+
/**
|
|
2398
|
+
* @public
|
|
2399
|
+
*/
|
|
2400
|
+
export interface GetTrustStoreCertificateRequest {
|
|
2401
|
+
/**
|
|
2402
|
+
* @public
|
|
2403
|
+
* <p>The ARN of the trust store certificate.</p>
|
|
2296
2404
|
*/
|
|
2297
|
-
|
|
2405
|
+
trustStoreArn: string | undefined;
|
|
2298
2406
|
/**
|
|
2299
2407
|
* @public
|
|
2300
|
-
* <p>The
|
|
2408
|
+
* <p>The thumbprint of the trust store certificate.</p>
|
|
2301
2409
|
*/
|
|
2302
|
-
|
|
2410
|
+
thumbprint: string | undefined;
|
|
2303
2411
|
}
|
|
2304
2412
|
/**
|
|
2305
2413
|
* @public
|
|
2306
|
-
* <p>The
|
|
2414
|
+
* <p>The certificate.</p>
|
|
2307
2415
|
*/
|
|
2308
|
-
export interface
|
|
2416
|
+
export interface Certificate {
|
|
2309
2417
|
/**
|
|
2310
2418
|
* @public
|
|
2311
2419
|
* <p>A hexadecimal identifier for the certificate.</p>
|
|
@@ -2331,6 +2439,46 @@ export interface CertificateSummary {
|
|
|
2331
2439
|
* <p>The certificate is not valid after this date.</p>
|
|
2332
2440
|
*/
|
|
2333
2441
|
notValidAfter?: Date;
|
|
2442
|
+
/**
|
|
2443
|
+
* @public
|
|
2444
|
+
* <p>The body of the certificate.</p>
|
|
2445
|
+
*/
|
|
2446
|
+
body?: Uint8Array;
|
|
2447
|
+
}
|
|
2448
|
+
/**
|
|
2449
|
+
* @public
|
|
2450
|
+
*/
|
|
2451
|
+
export interface GetTrustStoreCertificateResponse {
|
|
2452
|
+
/**
|
|
2453
|
+
* @public
|
|
2454
|
+
* <p>The ARN of the trust store certificate.</p>
|
|
2455
|
+
*/
|
|
2456
|
+
trustStoreArn: string | undefined;
|
|
2457
|
+
/**
|
|
2458
|
+
* @public
|
|
2459
|
+
* <p>The certificate of the trust store certificate.</p>
|
|
2460
|
+
*/
|
|
2461
|
+
certificate?: Certificate;
|
|
2462
|
+
}
|
|
2463
|
+
/**
|
|
2464
|
+
* @public
|
|
2465
|
+
*/
|
|
2466
|
+
export interface ListTrustStoreCertificatesRequest {
|
|
2467
|
+
/**
|
|
2468
|
+
* @public
|
|
2469
|
+
* <p>The ARN of the trust store</p>
|
|
2470
|
+
*/
|
|
2471
|
+
trustStoreArn: string | undefined;
|
|
2472
|
+
/**
|
|
2473
|
+
* @public
|
|
2474
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2475
|
+
*/
|
|
2476
|
+
nextToken?: string;
|
|
2477
|
+
/**
|
|
2478
|
+
* @public
|
|
2479
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
2480
|
+
*/
|
|
2481
|
+
maxResults?: number;
|
|
2334
2482
|
}
|
|
2335
2483
|
/**
|
|
2336
2484
|
* @public
|
|
@@ -2345,7 +2493,7 @@ export interface ListTrustStoreCertificatesResponse {
|
|
|
2345
2493
|
* @public
|
|
2346
2494
|
* <p>The ARN of the trust store.</p>
|
|
2347
2495
|
*/
|
|
2348
|
-
trustStoreArn
|
|
2496
|
+
trustStoreArn: string | undefined;
|
|
2349
2497
|
/**
|
|
2350
2498
|
* @public
|
|
2351
2499
|
* <p>The pagination token used to retrieve the next page of results for this operation.></p>
|
|
@@ -2396,149 +2544,220 @@ export interface ListTrustStoresResponse {
|
|
|
2396
2544
|
/**
|
|
2397
2545
|
* @public
|
|
2398
2546
|
*/
|
|
2399
|
-
export interface
|
|
2547
|
+
export interface UpdateTrustStoreRequest {
|
|
2400
2548
|
/**
|
|
2401
2549
|
* @public
|
|
2402
|
-
* <p>The
|
|
2550
|
+
* <p>The ARN of the trust store.</p>
|
|
2403
2551
|
*/
|
|
2404
|
-
|
|
2552
|
+
trustStoreArn: string | undefined;
|
|
2405
2553
|
/**
|
|
2406
2554
|
* @public
|
|
2407
|
-
* <p>
|
|
2555
|
+
* <p>A list of CA certificates to add to the trust store.</p>
|
|
2408
2556
|
*/
|
|
2409
|
-
|
|
2557
|
+
certificatesToAdd?: Uint8Array[];
|
|
2558
|
+
/**
|
|
2559
|
+
* @public
|
|
2560
|
+
* <p>A list of CA certificates to delete from a trust store.</p>
|
|
2561
|
+
*/
|
|
2562
|
+
certificatesToDelete?: string[];
|
|
2563
|
+
/**
|
|
2564
|
+
* @public
|
|
2565
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2566
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2567
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2568
|
+
* client token return the result from the original successful request. </p>
|
|
2569
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2570
|
+
* SDK.</p>
|
|
2571
|
+
*/
|
|
2572
|
+
clientToken?: string;
|
|
2410
2573
|
}
|
|
2411
2574
|
/**
|
|
2412
2575
|
* @public
|
|
2413
|
-
* <p>The summary of user access logging settings.</p>
|
|
2414
2576
|
*/
|
|
2415
|
-
export interface
|
|
2577
|
+
export interface UpdateTrustStoreResponse {
|
|
2416
2578
|
/**
|
|
2417
2579
|
* @public
|
|
2418
|
-
* <p>The ARN of the
|
|
2580
|
+
* <p>The ARN of the trust store.</p>
|
|
2419
2581
|
*/
|
|
2420
|
-
|
|
2582
|
+
trustStoreArn: string | undefined;
|
|
2583
|
+
}
|
|
2584
|
+
/**
|
|
2585
|
+
* @public
|
|
2586
|
+
*/
|
|
2587
|
+
export interface UntagResourceRequest {
|
|
2421
2588
|
/**
|
|
2422
2589
|
* @public
|
|
2423
|
-
* <p>The ARN of the
|
|
2590
|
+
* <p>The ARN of the resource.</p>
|
|
2424
2591
|
*/
|
|
2425
|
-
|
|
2592
|
+
resourceArn: string | undefined;
|
|
2593
|
+
/**
|
|
2594
|
+
* @public
|
|
2595
|
+
* <p>The list of tag keys to remove from the resource.</p>
|
|
2596
|
+
*/
|
|
2597
|
+
tagKeys: string[] | undefined;
|
|
2426
2598
|
}
|
|
2427
2599
|
/**
|
|
2428
2600
|
* @public
|
|
2429
2601
|
*/
|
|
2430
|
-
export interface
|
|
2602
|
+
export interface UntagResourceResponse {
|
|
2603
|
+
}
|
|
2604
|
+
/**
|
|
2605
|
+
* @public
|
|
2606
|
+
*/
|
|
2607
|
+
export interface CreateUserAccessLoggingSettingsRequest {
|
|
2431
2608
|
/**
|
|
2432
2609
|
* @public
|
|
2433
|
-
* <p>The
|
|
2610
|
+
* <p>The ARN of the Kinesis stream.</p>
|
|
2434
2611
|
*/
|
|
2435
|
-
|
|
2612
|
+
kinesisStreamArn: string | undefined;
|
|
2436
2613
|
/**
|
|
2437
2614
|
* @public
|
|
2438
|
-
* <p>The
|
|
2615
|
+
* <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
|
|
2439
2616
|
*/
|
|
2440
|
-
|
|
2617
|
+
tags?: Tag[];
|
|
2618
|
+
/**
|
|
2619
|
+
* @public
|
|
2620
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2621
|
+
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2622
|
+
* request, if the original request completes successfully, subsequent retries with the same
|
|
2623
|
+
* client token returns the result from the original successful request. </p>
|
|
2624
|
+
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2625
|
+
* SDK.</p>
|
|
2626
|
+
*/
|
|
2627
|
+
clientToken?: string;
|
|
2441
2628
|
}
|
|
2442
2629
|
/**
|
|
2443
2630
|
* @public
|
|
2444
2631
|
*/
|
|
2445
|
-
export interface
|
|
2632
|
+
export interface CreateUserAccessLoggingSettingsResponse {
|
|
2446
2633
|
/**
|
|
2447
2634
|
* @public
|
|
2448
|
-
* <p>The
|
|
2635
|
+
* <p>The ARN of the user access logging settings.</p>
|
|
2449
2636
|
*/
|
|
2450
|
-
|
|
2637
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
2638
|
+
}
|
|
2639
|
+
/**
|
|
2640
|
+
* @public
|
|
2641
|
+
*/
|
|
2642
|
+
export interface DeleteUserAccessLoggingSettingsRequest {
|
|
2451
2643
|
/**
|
|
2452
2644
|
* @public
|
|
2453
|
-
* <p>The
|
|
2645
|
+
* <p>The ARN of the user access logging settings.</p>
|
|
2454
2646
|
*/
|
|
2455
|
-
|
|
2647
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
2456
2648
|
}
|
|
2457
2649
|
/**
|
|
2458
2650
|
* @public
|
|
2459
|
-
* <p>The summary of user settings.</p>
|
|
2460
2651
|
*/
|
|
2461
|
-
export interface
|
|
2652
|
+
export interface DeleteUserAccessLoggingSettingsResponse {
|
|
2653
|
+
}
|
|
2654
|
+
/**
|
|
2655
|
+
* @public
|
|
2656
|
+
*/
|
|
2657
|
+
export interface GetUserAccessLoggingSettingsRequest {
|
|
2462
2658
|
/**
|
|
2463
2659
|
* @public
|
|
2464
|
-
* <p>The ARN of the user settings.</p>
|
|
2660
|
+
* <p>The ARN of the user access logging settings.</p>
|
|
2465
2661
|
*/
|
|
2466
|
-
|
|
2662
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
2663
|
+
}
|
|
2664
|
+
/**
|
|
2665
|
+
* @public
|
|
2666
|
+
* <p>A user access logging settings resource that can be associated with a web portal.</p>
|
|
2667
|
+
*/
|
|
2668
|
+
export interface UserAccessLoggingSettings {
|
|
2467
2669
|
/**
|
|
2468
2670
|
* @public
|
|
2469
|
-
* <p>
|
|
2470
|
-
* device.</p>
|
|
2671
|
+
* <p>The ARN of the user access logging settings.</p>
|
|
2471
2672
|
*/
|
|
2472
|
-
|
|
2673
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
2473
2674
|
/**
|
|
2474
2675
|
* @public
|
|
2475
|
-
* <p>
|
|
2476
|
-
* session.</p>
|
|
2676
|
+
* <p>A list of web portal ARNs that this user access logging settings is associated with.</p>
|
|
2477
2677
|
*/
|
|
2478
|
-
|
|
2678
|
+
associatedPortalArns?: string[];
|
|
2479
2679
|
/**
|
|
2480
2680
|
* @public
|
|
2481
|
-
* <p>
|
|
2482
|
-
* device.</p>
|
|
2681
|
+
* <p>The ARN of the Kinesis stream.</p>
|
|
2483
2682
|
*/
|
|
2484
|
-
|
|
2683
|
+
kinesisStreamArn?: string;
|
|
2684
|
+
}
|
|
2685
|
+
/**
|
|
2686
|
+
* @public
|
|
2687
|
+
*/
|
|
2688
|
+
export interface GetUserAccessLoggingSettingsResponse {
|
|
2485
2689
|
/**
|
|
2486
2690
|
* @public
|
|
2487
|
-
* <p>
|
|
2488
|
-
* session.</p>
|
|
2691
|
+
* <p>The user access logging settings.</p>
|
|
2489
2692
|
*/
|
|
2490
|
-
|
|
2693
|
+
userAccessLoggingSettings?: UserAccessLoggingSettings;
|
|
2694
|
+
}
|
|
2695
|
+
/**
|
|
2696
|
+
* @public
|
|
2697
|
+
*/
|
|
2698
|
+
export interface ListUserAccessLoggingSettingsRequest {
|
|
2491
2699
|
/**
|
|
2492
2700
|
* @public
|
|
2493
|
-
* <p>
|
|
2701
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2494
2702
|
*/
|
|
2495
|
-
|
|
2703
|
+
nextToken?: string;
|
|
2496
2704
|
/**
|
|
2497
2705
|
* @public
|
|
2498
|
-
* <p>The
|
|
2706
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
2499
2707
|
*/
|
|
2500
|
-
|
|
2708
|
+
maxResults?: number;
|
|
2709
|
+
}
|
|
2710
|
+
/**
|
|
2711
|
+
* @public
|
|
2712
|
+
* <p>The summary of user access logging settings.</p>
|
|
2713
|
+
*/
|
|
2714
|
+
export interface UserAccessLoggingSettingsSummary {
|
|
2501
2715
|
/**
|
|
2502
2716
|
* @public
|
|
2503
|
-
* <p>The
|
|
2717
|
+
* <p>The ARN of the user access logging settings.</p>
|
|
2504
2718
|
*/
|
|
2505
|
-
|
|
2719
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
2720
|
+
/**
|
|
2721
|
+
* @public
|
|
2722
|
+
* <p>The ARN of the Kinesis stream.</p>
|
|
2723
|
+
*/
|
|
2724
|
+
kinesisStreamArn?: string;
|
|
2506
2725
|
}
|
|
2507
2726
|
/**
|
|
2508
2727
|
* @public
|
|
2509
2728
|
*/
|
|
2510
|
-
export interface
|
|
2729
|
+
export interface ListUserAccessLoggingSettingsResponse {
|
|
2511
2730
|
/**
|
|
2512
2731
|
* @public
|
|
2513
|
-
* <p>The user settings.</p>
|
|
2732
|
+
* <p>The user access logging settings.</p>
|
|
2514
2733
|
*/
|
|
2515
|
-
|
|
2734
|
+
userAccessLoggingSettings?: UserAccessLoggingSettingsSummary[];
|
|
2516
2735
|
/**
|
|
2517
2736
|
* @public
|
|
2518
|
-
* <p>The pagination token used to retrieve the next page of results for this operation
|
|
2737
|
+
* <p>The pagination token used to retrieve the next page of results for this operation.</p>
|
|
2519
2738
|
*/
|
|
2520
2739
|
nextToken?: string;
|
|
2521
2740
|
}
|
|
2522
2741
|
/**
|
|
2523
2742
|
* @public
|
|
2524
2743
|
*/
|
|
2525
|
-
export interface
|
|
2744
|
+
export interface UpdateUserAccessLoggingSettingsRequest {
|
|
2526
2745
|
/**
|
|
2527
2746
|
* @public
|
|
2528
|
-
* <p>The ARN of the
|
|
2747
|
+
* <p>The ARN of the user access logging settings.</p>
|
|
2529
2748
|
*/
|
|
2530
|
-
|
|
2749
|
+
userAccessLoggingSettingsArn: string | undefined;
|
|
2531
2750
|
/**
|
|
2532
2751
|
* @public
|
|
2533
|
-
* <p>The
|
|
2752
|
+
* <p>The ARN of the Kinesis stream.</p>
|
|
2534
2753
|
*/
|
|
2535
|
-
|
|
2754
|
+
kinesisStreamArn?: string;
|
|
2536
2755
|
/**
|
|
2537
2756
|
* @public
|
|
2538
2757
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2539
2758
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2540
2759
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
2541
|
-
* client token
|
|
2760
|
+
* client token return the result from the original successful request. </p>
|
|
2542
2761
|
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2543
2762
|
* SDK.</p>
|
|
2544
2763
|
*/
|
|
@@ -2547,484 +2766,327 @@ export interface TagResourceRequest {
|
|
|
2547
2766
|
/**
|
|
2548
2767
|
* @public
|
|
2549
2768
|
*/
|
|
2550
|
-
export interface
|
|
2769
|
+
export interface UpdateUserAccessLoggingSettingsResponse {
|
|
2770
|
+
/**
|
|
2771
|
+
* @public
|
|
2772
|
+
* <p>The user access logging settings.</p>
|
|
2773
|
+
*/
|
|
2774
|
+
userAccessLoggingSettings: UserAccessLoggingSettings | undefined;
|
|
2551
2775
|
}
|
|
2552
2776
|
/**
|
|
2553
2777
|
* @public
|
|
2554
|
-
* <p>
|
|
2778
|
+
* <p>Specifies a single cookie or set of cookies in an end user's browser.</p>
|
|
2555
2779
|
*/
|
|
2556
|
-
export
|
|
2557
|
-
readonly name: "TooManyTagsException";
|
|
2558
|
-
readonly $fault: "client";
|
|
2780
|
+
export interface CookieSpecification {
|
|
2559
2781
|
/**
|
|
2560
2782
|
* @public
|
|
2561
|
-
* <p>
|
|
2783
|
+
* <p>The domain of the cookie.</p>
|
|
2562
2784
|
*/
|
|
2563
|
-
|
|
2785
|
+
domain: string | undefined;
|
|
2564
2786
|
/**
|
|
2565
|
-
* @
|
|
2787
|
+
* @public
|
|
2788
|
+
* <p>The name of the cookie.</p>
|
|
2566
2789
|
*/
|
|
2567
|
-
|
|
2790
|
+
name?: string;
|
|
2791
|
+
/**
|
|
2792
|
+
* @public
|
|
2793
|
+
* <p>The path of the cookie.</p>
|
|
2794
|
+
*/
|
|
2795
|
+
path?: string;
|
|
2568
2796
|
}
|
|
2569
2797
|
/**
|
|
2570
2798
|
* @public
|
|
2799
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.</p>
|
|
2571
2800
|
*/
|
|
2572
|
-
export interface
|
|
2801
|
+
export interface CookieSynchronizationConfiguration {
|
|
2573
2802
|
/**
|
|
2574
2803
|
* @public
|
|
2575
|
-
* <p>The
|
|
2804
|
+
* <p>The list of cookie specifications that are allowed to be synchronized to the remote browser.</p>
|
|
2576
2805
|
*/
|
|
2577
|
-
|
|
2806
|
+
allowlist: CookieSpecification[] | undefined;
|
|
2578
2807
|
/**
|
|
2579
2808
|
* @public
|
|
2580
|
-
* <p>The list of
|
|
2809
|
+
* <p>The list of cookie specifications that are blocked from being synchronized to the remote browser.</p>
|
|
2581
2810
|
*/
|
|
2582
|
-
|
|
2811
|
+
blocklist?: CookieSpecification[];
|
|
2583
2812
|
}
|
|
2813
|
+
/**
|
|
2814
|
+
* @public
|
|
2815
|
+
* @enum
|
|
2816
|
+
*/
|
|
2817
|
+
export declare const EnabledType: {
|
|
2818
|
+
readonly DISABLED: "Disabled";
|
|
2819
|
+
readonly ENABLED: "Enabled";
|
|
2820
|
+
};
|
|
2584
2821
|
/**
|
|
2585
2822
|
* @public
|
|
2586
2823
|
*/
|
|
2587
|
-
export
|
|
2588
|
-
}
|
|
2824
|
+
export type EnabledType = (typeof EnabledType)[keyof typeof EnabledType];
|
|
2589
2825
|
/**
|
|
2590
2826
|
* @public
|
|
2591
2827
|
*/
|
|
2592
|
-
export interface
|
|
2828
|
+
export interface CreateUserSettingsRequest {
|
|
2593
2829
|
/**
|
|
2594
2830
|
* @public
|
|
2595
|
-
* <p>
|
|
2831
|
+
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
2832
|
+
* device.</p>
|
|
2596
2833
|
*/
|
|
2597
|
-
|
|
2834
|
+
copyAllowed: EnabledType | string | undefined;
|
|
2598
2835
|
/**
|
|
2599
2836
|
* @public
|
|
2600
|
-
* <p>
|
|
2601
|
-
*
|
|
2837
|
+
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
2838
|
+
* session.</p>
|
|
2602
2839
|
*/
|
|
2603
|
-
|
|
2840
|
+
pasteAllowed: EnabledType | string | undefined;
|
|
2604
2841
|
/**
|
|
2605
2842
|
* @public
|
|
2606
|
-
* <p>
|
|
2607
|
-
*
|
|
2608
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
2609
|
-
* client token return the result from the original successful request. </p>
|
|
2610
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2611
|
-
* SDK.</p>
|
|
2843
|
+
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
2844
|
+
* device.</p>
|
|
2612
2845
|
*/
|
|
2613
|
-
|
|
2614
|
-
}
|
|
2615
|
-
/**
|
|
2616
|
-
* @public
|
|
2617
|
-
*/
|
|
2618
|
-
export interface UpdateBrowserSettingsResponse {
|
|
2846
|
+
downloadAllowed: EnabledType | string | undefined;
|
|
2619
2847
|
/**
|
|
2620
2848
|
* @public
|
|
2621
|
-
* <p>
|
|
2849
|
+
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
2850
|
+
* session.</p>
|
|
2622
2851
|
*/
|
|
2623
|
-
|
|
2624
|
-
}
|
|
2625
|
-
/**
|
|
2626
|
-
* @public
|
|
2627
|
-
*/
|
|
2628
|
-
export interface UpdateIdentityProviderRequest {
|
|
2852
|
+
uploadAllowed: EnabledType | string | undefined;
|
|
2629
2853
|
/**
|
|
2630
2854
|
* @public
|
|
2631
|
-
* <p>
|
|
2855
|
+
* <p>Specifies whether the user can print to the local device.</p>
|
|
2632
2856
|
*/
|
|
2633
|
-
|
|
2857
|
+
printAllowed: EnabledType | string | undefined;
|
|
2634
2858
|
/**
|
|
2635
2859
|
* @public
|
|
2636
|
-
* <p>The
|
|
2860
|
+
* <p>The tags to add to the user settings resource. A tag is a key-value pair.</p>
|
|
2637
2861
|
*/
|
|
2638
|
-
|
|
2862
|
+
tags?: Tag[];
|
|
2639
2863
|
/**
|
|
2640
2864
|
* @public
|
|
2641
|
-
* <p>The
|
|
2865
|
+
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
2642
2866
|
*/
|
|
2643
|
-
|
|
2867
|
+
disconnectTimeoutInMinutes?: number;
|
|
2644
2868
|
/**
|
|
2645
2869
|
* @public
|
|
2646
|
-
* <p>The
|
|
2647
|
-
* each identity provider type. </p>
|
|
2648
|
-
* <ul>
|
|
2649
|
-
* <li>
|
|
2650
|
-
* <p>For Google and Login with Amazon:</p>
|
|
2651
|
-
* <ul>
|
|
2652
|
-
* <li>
|
|
2653
|
-
* <p>
|
|
2654
|
-
* <code>client_id</code>
|
|
2655
|
-
* </p>
|
|
2656
|
-
* </li>
|
|
2657
|
-
* <li>
|
|
2658
|
-
* <p>
|
|
2659
|
-
* <code>client_secret</code>
|
|
2660
|
-
* </p>
|
|
2661
|
-
* </li>
|
|
2662
|
-
* <li>
|
|
2663
|
-
* <p>
|
|
2664
|
-
* <code>authorize_scopes</code>
|
|
2665
|
-
* </p>
|
|
2666
|
-
* </li>
|
|
2667
|
-
* </ul>
|
|
2668
|
-
* </li>
|
|
2669
|
-
* <li>
|
|
2670
|
-
* <p>For Facebook:</p>
|
|
2671
|
-
* <ul>
|
|
2672
|
-
* <li>
|
|
2673
|
-
* <p>
|
|
2674
|
-
* <code>client_id</code>
|
|
2675
|
-
* </p>
|
|
2676
|
-
* </li>
|
|
2677
|
-
* <li>
|
|
2678
|
-
* <p>
|
|
2679
|
-
* <code>client_secret</code>
|
|
2680
|
-
* </p>
|
|
2681
|
-
* </li>
|
|
2682
|
-
* <li>
|
|
2683
|
-
* <p>
|
|
2684
|
-
* <code>authorize_scopes</code>
|
|
2685
|
-
* </p>
|
|
2686
|
-
* </li>
|
|
2687
|
-
* <li>
|
|
2688
|
-
* <p>
|
|
2689
|
-
* <code>api_version</code>
|
|
2690
|
-
* </p>
|
|
2691
|
-
* </li>
|
|
2692
|
-
* </ul>
|
|
2693
|
-
* </li>
|
|
2694
|
-
* <li>
|
|
2695
|
-
* <p>For Sign in with Apple:</p>
|
|
2696
|
-
* <ul>
|
|
2697
|
-
* <li>
|
|
2698
|
-
* <p>
|
|
2699
|
-
* <code>client_id</code>
|
|
2700
|
-
* </p>
|
|
2701
|
-
* </li>
|
|
2702
|
-
* <li>
|
|
2703
|
-
* <p>
|
|
2704
|
-
* <code>team_id</code>
|
|
2705
|
-
* </p>
|
|
2706
|
-
* </li>
|
|
2707
|
-
* <li>
|
|
2708
|
-
* <p>
|
|
2709
|
-
* <code>key_id</code>
|
|
2710
|
-
* </p>
|
|
2711
|
-
* </li>
|
|
2712
|
-
* <li>
|
|
2713
|
-
* <p>
|
|
2714
|
-
* <code>private_key</code>
|
|
2715
|
-
* </p>
|
|
2716
|
-
* </li>
|
|
2717
|
-
* <li>
|
|
2718
|
-
* <p>
|
|
2719
|
-
* <code>authorize_scopes</code>
|
|
2720
|
-
* </p>
|
|
2721
|
-
* </li>
|
|
2722
|
-
* </ul>
|
|
2723
|
-
* </li>
|
|
2724
|
-
* <li>
|
|
2725
|
-
* <p>For OIDC providers:</p>
|
|
2726
|
-
* <ul>
|
|
2727
|
-
* <li>
|
|
2728
|
-
* <p>
|
|
2729
|
-
* <code>client_id</code>
|
|
2730
|
-
* </p>
|
|
2731
|
-
* </li>
|
|
2732
|
-
* <li>
|
|
2733
|
-
* <p>
|
|
2734
|
-
* <code>client_secret</code>
|
|
2735
|
-
* </p>
|
|
2736
|
-
* </li>
|
|
2737
|
-
* <li>
|
|
2738
|
-
* <p>
|
|
2739
|
-
* <code>attributes_request_method</code>
|
|
2740
|
-
* </p>
|
|
2741
|
-
* </li>
|
|
2742
|
-
* <li>
|
|
2743
|
-
* <p>
|
|
2744
|
-
* <code>oidc_issuer</code>
|
|
2745
|
-
* </p>
|
|
2746
|
-
* </li>
|
|
2747
|
-
* <li>
|
|
2748
|
-
* <p>
|
|
2749
|
-
* <code>authorize_scopes</code>
|
|
2750
|
-
* </p>
|
|
2751
|
-
* </li>
|
|
2752
|
-
* <li>
|
|
2753
|
-
* <p>
|
|
2754
|
-
* <code>authorize_url</code>
|
|
2755
|
-
* <i>if not available from discovery URL specified by
|
|
2756
|
-
* <code>oidc_issuer</code> key</i>
|
|
2757
|
-
* </p>
|
|
2758
|
-
* </li>
|
|
2759
|
-
* <li>
|
|
2760
|
-
* <p>
|
|
2761
|
-
* <code>token_url</code>
|
|
2762
|
-
* <i>if not available from discovery URL specified by
|
|
2763
|
-
* <code>oidc_issuer</code> key</i>
|
|
2764
|
-
* </p>
|
|
2765
|
-
* </li>
|
|
2766
|
-
* <li>
|
|
2767
|
-
* <p>
|
|
2768
|
-
* <code>attributes_url</code>
|
|
2769
|
-
* <i>if not available from discovery URL specified by
|
|
2770
|
-
* <code>oidc_issuer</code> key</i>
|
|
2771
|
-
* </p>
|
|
2772
|
-
* </li>
|
|
2773
|
-
* <li>
|
|
2774
|
-
* <p>
|
|
2775
|
-
* <code>jwks_uri</code>
|
|
2776
|
-
* <i>if not available from discovery URL specified by
|
|
2777
|
-
* <code>oidc_issuer</code> key</i>
|
|
2778
|
-
* </p>
|
|
2779
|
-
* </li>
|
|
2780
|
-
* </ul>
|
|
2781
|
-
* </li>
|
|
2782
|
-
* <li>
|
|
2783
|
-
* <p>For SAML providers:</p>
|
|
2784
|
-
* <ul>
|
|
2785
|
-
* <li>
|
|
2786
|
-
* <p>
|
|
2787
|
-
* <code>MetadataFile</code> OR <code>MetadataURL</code>
|
|
2788
|
-
* </p>
|
|
2789
|
-
* </li>
|
|
2790
|
-
* <li>
|
|
2791
|
-
* <p>
|
|
2792
|
-
* <code>IDPSignout</code> (boolean)
|
|
2793
|
-
* <i>optional</i>
|
|
2794
|
-
* </p>
|
|
2795
|
-
* </li>
|
|
2796
|
-
* </ul>
|
|
2797
|
-
* </li>
|
|
2798
|
-
* </ul>
|
|
2870
|
+
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
2799
2871
|
*/
|
|
2800
|
-
|
|
2872
|
+
idleDisconnectTimeoutInMinutes?: number;
|
|
2801
2873
|
/**
|
|
2802
2874
|
* @public
|
|
2803
2875
|
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the
|
|
2804
2876
|
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2805
2877
|
* request, if the original request completes successfully, subsequent retries with the same
|
|
2806
|
-
* client token
|
|
2878
|
+
* client token returns the result from the original successful request. </p>
|
|
2807
2879
|
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2808
2880
|
* SDK.</p>
|
|
2809
2881
|
*/
|
|
2810
2882
|
clientToken?: string;
|
|
2883
|
+
/**
|
|
2884
|
+
* @public
|
|
2885
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.</p>
|
|
2886
|
+
*/
|
|
2887
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
2888
|
+
/**
|
|
2889
|
+
* @public
|
|
2890
|
+
* <p>The customer managed key used to encrypt sensitive information in the user settings.</p>
|
|
2891
|
+
*/
|
|
2892
|
+
customerManagedKey?: string;
|
|
2893
|
+
/**
|
|
2894
|
+
* @public
|
|
2895
|
+
* <p>The additional encryption context of the user settings.</p>
|
|
2896
|
+
*/
|
|
2897
|
+
additionalEncryptionContext?: Record<string, string>;
|
|
2811
2898
|
}
|
|
2812
2899
|
/**
|
|
2813
2900
|
* @public
|
|
2814
2901
|
*/
|
|
2815
|
-
export interface
|
|
2902
|
+
export interface CreateUserSettingsResponse {
|
|
2816
2903
|
/**
|
|
2817
2904
|
* @public
|
|
2818
|
-
* <p>The
|
|
2905
|
+
* <p>The ARN of the user settings.</p>
|
|
2819
2906
|
*/
|
|
2820
|
-
|
|
2907
|
+
userSettingsArn: string | undefined;
|
|
2821
2908
|
}
|
|
2822
2909
|
/**
|
|
2823
2910
|
* @public
|
|
2824
2911
|
*/
|
|
2825
|
-
export interface
|
|
2912
|
+
export interface DeleteUserSettingsRequest {
|
|
2826
2913
|
/**
|
|
2827
2914
|
* @public
|
|
2828
|
-
* <p>The ARN of the
|
|
2915
|
+
* <p>The ARN of the user settings.</p>
|
|
2829
2916
|
*/
|
|
2830
|
-
|
|
2917
|
+
userSettingsArn: string | undefined;
|
|
2918
|
+
}
|
|
2919
|
+
/**
|
|
2920
|
+
* @public
|
|
2921
|
+
*/
|
|
2922
|
+
export interface DeleteUserSettingsResponse {
|
|
2923
|
+
}
|
|
2924
|
+
/**
|
|
2925
|
+
* @public
|
|
2926
|
+
*/
|
|
2927
|
+
export interface GetUserSettingsRequest {
|
|
2928
|
+
/**
|
|
2929
|
+
* @public
|
|
2930
|
+
* <p>The ARN of the user settings.</p>
|
|
2931
|
+
*/
|
|
2932
|
+
userSettingsArn: string | undefined;
|
|
2933
|
+
}
|
|
2934
|
+
/**
|
|
2935
|
+
* @public
|
|
2936
|
+
* <p>A user settings resource that can be associated with a web portal. Once associated with
|
|
2937
|
+
* a web portal, user settings control how users can transfer data between a streaming session
|
|
2938
|
+
* and the their local devices. </p>
|
|
2939
|
+
*/
|
|
2940
|
+
export interface UserSettings {
|
|
2831
2941
|
/**
|
|
2832
2942
|
* @public
|
|
2833
|
-
* <p>The
|
|
2943
|
+
* <p>The ARN of the user settings.</p>
|
|
2834
2944
|
*/
|
|
2835
|
-
|
|
2945
|
+
userSettingsArn: string | undefined;
|
|
2836
2946
|
/**
|
|
2837
2947
|
* @public
|
|
2838
|
-
* <p>
|
|
2948
|
+
* <p>A list of web portal ARNs that this user settings is associated with.</p>
|
|
2839
2949
|
*/
|
|
2840
|
-
|
|
2950
|
+
associatedPortalArns?: string[];
|
|
2841
2951
|
/**
|
|
2842
2952
|
* @public
|
|
2843
|
-
* <p>
|
|
2953
|
+
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
2954
|
+
* device.</p>
|
|
2844
2955
|
*/
|
|
2845
|
-
|
|
2956
|
+
copyAllowed?: EnabledType | string;
|
|
2846
2957
|
/**
|
|
2847
2958
|
* @public
|
|
2848
|
-
* <p>
|
|
2849
|
-
*
|
|
2850
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
2851
|
-
* client token return the result from the original successful request. </p>
|
|
2852
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2853
|
-
* SDK.</p>
|
|
2959
|
+
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
2960
|
+
* session.</p>
|
|
2854
2961
|
*/
|
|
2855
|
-
|
|
2856
|
-
}
|
|
2857
|
-
/**
|
|
2858
|
-
* @public
|
|
2859
|
-
*/
|
|
2860
|
-
export interface UpdateIpAccessSettingsResponse {
|
|
2962
|
+
pasteAllowed?: EnabledType | string;
|
|
2861
2963
|
/**
|
|
2862
2964
|
* @public
|
|
2863
|
-
* <p>
|
|
2965
|
+
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
2966
|
+
* device.</p>
|
|
2864
2967
|
*/
|
|
2865
|
-
|
|
2866
|
-
}
|
|
2867
|
-
/**
|
|
2868
|
-
* @public
|
|
2869
|
-
*/
|
|
2870
|
-
export interface UpdateNetworkSettingsRequest {
|
|
2968
|
+
downloadAllowed?: EnabledType | string;
|
|
2871
2969
|
/**
|
|
2872
2970
|
* @public
|
|
2873
|
-
* <p>
|
|
2971
|
+
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
2972
|
+
* session.</p>
|
|
2874
2973
|
*/
|
|
2875
|
-
|
|
2974
|
+
uploadAllowed?: EnabledType | string;
|
|
2876
2975
|
/**
|
|
2877
2976
|
* @public
|
|
2878
|
-
* <p>
|
|
2977
|
+
* <p>Specifies whether the user can print to the local device.</p>
|
|
2879
2978
|
*/
|
|
2880
|
-
|
|
2979
|
+
printAllowed?: EnabledType | string;
|
|
2881
2980
|
/**
|
|
2882
2981
|
* @public
|
|
2883
|
-
* <p>The
|
|
2982
|
+
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
2884
2983
|
*/
|
|
2885
|
-
|
|
2984
|
+
disconnectTimeoutInMinutes?: number;
|
|
2886
2985
|
/**
|
|
2887
2986
|
* @public
|
|
2888
|
-
* <p>
|
|
2987
|
+
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
2889
2988
|
*/
|
|
2890
|
-
|
|
2989
|
+
idleDisconnectTimeoutInMinutes?: number;
|
|
2891
2990
|
/**
|
|
2892
2991
|
* @public
|
|
2893
|
-
* <p>
|
|
2894
|
-
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
2895
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
2896
|
-
* client token return the result from the original successful request. </p>
|
|
2897
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2898
|
-
* SDK.</p>
|
|
2992
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.</p>
|
|
2899
2993
|
*/
|
|
2900
|
-
|
|
2994
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
2901
2995
|
}
|
|
2902
2996
|
/**
|
|
2903
2997
|
* @public
|
|
2904
2998
|
*/
|
|
2905
|
-
export interface
|
|
2999
|
+
export interface GetUserSettingsResponse {
|
|
2906
3000
|
/**
|
|
2907
3001
|
* @public
|
|
2908
|
-
* <p>The
|
|
3002
|
+
* <p>The user settings.</p>
|
|
2909
3003
|
*/
|
|
2910
|
-
|
|
3004
|
+
userSettings?: UserSettings;
|
|
2911
3005
|
}
|
|
2912
3006
|
/**
|
|
2913
3007
|
* @public
|
|
2914
3008
|
*/
|
|
2915
|
-
export interface
|
|
2916
|
-
/**
|
|
2917
|
-
* @public
|
|
2918
|
-
* <p>The ARN of the web portal.</p>
|
|
2919
|
-
*/
|
|
2920
|
-
portalArn: string | undefined;
|
|
3009
|
+
export interface ListUserSettingsRequest {
|
|
2921
3010
|
/**
|
|
2922
3011
|
* @public
|
|
2923
|
-
* <p>The
|
|
3012
|
+
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
2924
3013
|
*/
|
|
2925
|
-
|
|
3014
|
+
nextToken?: string;
|
|
2926
3015
|
/**
|
|
2927
3016
|
* @public
|
|
2928
|
-
* <p>The
|
|
2929
|
-
* Defaults to <code>Standard</code>.</p>
|
|
2930
|
-
* <p>
|
|
2931
|
-
* <code>Standard</code> web portals are authenticated directly through your identity
|
|
2932
|
-
* provider. You need to call <code>CreateIdentityProvider</code> to integrate your identity
|
|
2933
|
-
* provider with your web portal. User and group access to your web portal is controlled
|
|
2934
|
-
* through your identity provider.</p>
|
|
2935
|
-
* <p>
|
|
2936
|
-
* <code>IAM_Identity_Center</code> web portals are authenticated through AWS IAM Identity
|
|
2937
|
-
* Center (successor to AWS Single Sign-On). They provide additional features, such as
|
|
2938
|
-
* IdP-initiated authentication. Identity sources (including external identity provider
|
|
2939
|
-
* integration), plus user and group access to your web portal, can be configured in the IAM
|
|
2940
|
-
* Identity Center.</p>
|
|
3017
|
+
* <p>The maximum number of results to be included in the next page.</p>
|
|
2941
3018
|
*/
|
|
2942
|
-
|
|
3019
|
+
maxResults?: number;
|
|
2943
3020
|
}
|
|
2944
3021
|
/**
|
|
2945
3022
|
* @public
|
|
3023
|
+
* <p>The summary of user settings.</p>
|
|
2946
3024
|
*/
|
|
2947
|
-
export interface
|
|
3025
|
+
export interface UserSettingsSummary {
|
|
2948
3026
|
/**
|
|
2949
3027
|
* @public
|
|
2950
|
-
* <p>The
|
|
3028
|
+
* <p>The ARN of the user settings.</p>
|
|
2951
3029
|
*/
|
|
2952
|
-
|
|
2953
|
-
}
|
|
2954
|
-
/**
|
|
2955
|
-
* @public
|
|
2956
|
-
*/
|
|
2957
|
-
export interface UpdateTrustStoreRequest {
|
|
3030
|
+
userSettingsArn: string | undefined;
|
|
2958
3031
|
/**
|
|
2959
3032
|
* @public
|
|
2960
|
-
* <p>
|
|
3033
|
+
* <p>Specifies whether the user can copy text from the streaming session to the local
|
|
3034
|
+
* device.</p>
|
|
2961
3035
|
*/
|
|
2962
|
-
|
|
3036
|
+
copyAllowed?: EnabledType | string;
|
|
2963
3037
|
/**
|
|
2964
3038
|
* @public
|
|
2965
|
-
* <p>
|
|
3039
|
+
* <p>Specifies whether the user can paste text from the local device to the streaming
|
|
3040
|
+
* session.</p>
|
|
2966
3041
|
*/
|
|
2967
|
-
|
|
3042
|
+
pasteAllowed?: EnabledType | string;
|
|
2968
3043
|
/**
|
|
2969
3044
|
* @public
|
|
2970
|
-
* <p>
|
|
3045
|
+
* <p>Specifies whether the user can download files from the streaming session to the local
|
|
3046
|
+
* device.</p>
|
|
2971
3047
|
*/
|
|
2972
|
-
|
|
3048
|
+
downloadAllowed?: EnabledType | string;
|
|
2973
3049
|
/**
|
|
2974
3050
|
* @public
|
|
2975
|
-
* <p>
|
|
2976
|
-
*
|
|
2977
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
2978
|
-
* client token return the result from the original successful request. </p>
|
|
2979
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
2980
|
-
* SDK.</p>
|
|
3051
|
+
* <p>Specifies whether the user can upload files from the local device to the streaming
|
|
3052
|
+
* session.</p>
|
|
2981
3053
|
*/
|
|
2982
|
-
|
|
2983
|
-
}
|
|
2984
|
-
/**
|
|
2985
|
-
* @public
|
|
2986
|
-
*/
|
|
2987
|
-
export interface UpdateTrustStoreResponse {
|
|
3054
|
+
uploadAllowed?: EnabledType | string;
|
|
2988
3055
|
/**
|
|
2989
3056
|
* @public
|
|
2990
|
-
* <p>
|
|
3057
|
+
* <p>Specifies whether the user can print to the local device.</p>
|
|
2991
3058
|
*/
|
|
2992
|
-
|
|
2993
|
-
}
|
|
2994
|
-
/**
|
|
2995
|
-
* @public
|
|
2996
|
-
*/
|
|
2997
|
-
export interface UpdateUserAccessLoggingSettingsRequest {
|
|
3059
|
+
printAllowed?: EnabledType | string;
|
|
2998
3060
|
/**
|
|
2999
3061
|
* @public
|
|
3000
|
-
* <p>The
|
|
3062
|
+
* <p>The amount of time that a streaming session remains active after users disconnect.</p>
|
|
3001
3063
|
*/
|
|
3002
|
-
|
|
3064
|
+
disconnectTimeoutInMinutes?: number;
|
|
3003
3065
|
/**
|
|
3004
3066
|
* @public
|
|
3005
|
-
* <p>The
|
|
3067
|
+
* <p>The amount of time that users can be idle (inactive) before they are disconnected from their streaming session and the disconnect timeout interval begins.</p>
|
|
3006
3068
|
*/
|
|
3007
|
-
|
|
3069
|
+
idleDisconnectTimeoutInMinutes?: number;
|
|
3008
3070
|
/**
|
|
3009
3071
|
* @public
|
|
3010
|
-
* <p>
|
|
3011
|
-
* request. Idempotency ensures that an API request completes only once. With an idempotent
|
|
3012
|
-
* request, if the original request completes successfully, subsequent retries with the same
|
|
3013
|
-
* client token return the result from the original successful request. </p>
|
|
3014
|
-
* <p>If you do not specify a client token, one is automatically generated by the AWS
|
|
3015
|
-
* SDK.</p>
|
|
3072
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.</p>
|
|
3016
3073
|
*/
|
|
3017
|
-
|
|
3074
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
3018
3075
|
}
|
|
3019
3076
|
/**
|
|
3020
3077
|
* @public
|
|
3021
3078
|
*/
|
|
3022
|
-
export interface
|
|
3079
|
+
export interface ListUserSettingsResponse {
|
|
3023
3080
|
/**
|
|
3024
3081
|
* @public
|
|
3025
|
-
* <p>The user
|
|
3082
|
+
* <p>The user settings.</p>
|
|
3026
3083
|
*/
|
|
3027
|
-
|
|
3084
|
+
userSettings?: UserSettingsSummary[];
|
|
3085
|
+
/**
|
|
3086
|
+
* @public
|
|
3087
|
+
* <p>The pagination token used to retrieve the next page of results for this operation. </p>
|
|
3088
|
+
*/
|
|
3089
|
+
nextToken?: string;
|
|
3028
3090
|
}
|
|
3029
3091
|
/**
|
|
3030
3092
|
* @public
|
|
@@ -3084,6 +3146,12 @@ export interface UpdateUserSettingsRequest {
|
|
|
3084
3146
|
* SDK.</p>
|
|
3085
3147
|
*/
|
|
3086
3148
|
clientToken?: string;
|
|
3149
|
+
/**
|
|
3150
|
+
* @public
|
|
3151
|
+
* <p>The configuration that specifies which cookies should be synchronized from the end user's local browser to the remote browser.</p>
|
|
3152
|
+
* <p>If the allowlist and blocklist are empty, the configuration becomes null.</p>
|
|
3153
|
+
*/
|
|
3154
|
+
cookieSynchronizationConfiguration?: CookieSynchronizationConfiguration;
|
|
3087
3155
|
}
|
|
3088
3156
|
/**
|
|
3089
3157
|
* @public
|
|
@@ -3106,51 +3174,55 @@ export declare const CreateBrowserSettingsRequestFilterSensitiveLog: (obj: Creat
|
|
|
3106
3174
|
/**
|
|
3107
3175
|
* @internal
|
|
3108
3176
|
*/
|
|
3109
|
-
export declare const
|
|
3177
|
+
export declare const BrowserSettingsFilterSensitiveLog: (obj: BrowserSettings) => any;
|
|
3110
3178
|
/**
|
|
3111
3179
|
* @internal
|
|
3112
3180
|
*/
|
|
3113
|
-
export declare const
|
|
3181
|
+
export declare const GetBrowserSettingsResponseFilterSensitiveLog: (obj: GetBrowserSettingsResponse) => any;
|
|
3114
3182
|
/**
|
|
3115
3183
|
* @internal
|
|
3116
3184
|
*/
|
|
3117
|
-
export declare const
|
|
3185
|
+
export declare const UpdateBrowserSettingsRequestFilterSensitiveLog: (obj: UpdateBrowserSettingsRequest) => any;
|
|
3118
3186
|
/**
|
|
3119
3187
|
* @internal
|
|
3120
3188
|
*/
|
|
3121
|
-
export declare const
|
|
3189
|
+
export declare const UpdateBrowserSettingsResponseFilterSensitiveLog: (obj: UpdateBrowserSettingsResponse) => any;
|
|
3122
3190
|
/**
|
|
3123
3191
|
* @internal
|
|
3124
3192
|
*/
|
|
3125
|
-
export declare const
|
|
3193
|
+
export declare const CreateIdentityProviderRequestFilterSensitiveLog: (obj: CreateIdentityProviderRequest) => any;
|
|
3126
3194
|
/**
|
|
3127
3195
|
* @internal
|
|
3128
3196
|
*/
|
|
3129
|
-
export declare const
|
|
3197
|
+
export declare const IdentityProviderFilterSensitiveLog: (obj: IdentityProvider) => any;
|
|
3130
3198
|
/**
|
|
3131
3199
|
* @internal
|
|
3132
3200
|
*/
|
|
3133
|
-
export declare const
|
|
3201
|
+
export declare const GetIdentityProviderResponseFilterSensitiveLog: (obj: GetIdentityProviderResponse) => any;
|
|
3134
3202
|
/**
|
|
3135
3203
|
* @internal
|
|
3136
3204
|
*/
|
|
3137
|
-
export declare const
|
|
3205
|
+
export declare const IdentityProviderSummaryFilterSensitiveLog: (obj: IdentityProviderSummary) => any;
|
|
3138
3206
|
/**
|
|
3139
3207
|
* @internal
|
|
3140
3208
|
*/
|
|
3141
|
-
export declare const
|
|
3209
|
+
export declare const ListIdentityProvidersResponseFilterSensitiveLog: (obj: ListIdentityProvidersResponse) => any;
|
|
3142
3210
|
/**
|
|
3143
3211
|
* @internal
|
|
3144
3212
|
*/
|
|
3145
|
-
export declare const
|
|
3213
|
+
export declare const UpdateIdentityProviderRequestFilterSensitiveLog: (obj: UpdateIdentityProviderRequest) => any;
|
|
3146
3214
|
/**
|
|
3147
3215
|
* @internal
|
|
3148
3216
|
*/
|
|
3149
|
-
export declare const
|
|
3217
|
+
export declare const UpdateIdentityProviderResponseFilterSensitiveLog: (obj: UpdateIdentityProviderResponse) => any;
|
|
3150
3218
|
/**
|
|
3151
3219
|
* @internal
|
|
3152
3220
|
*/
|
|
3153
|
-
export declare const
|
|
3221
|
+
export declare const IpRuleFilterSensitiveLog: (obj: IpRule) => any;
|
|
3222
|
+
/**
|
|
3223
|
+
* @internal
|
|
3224
|
+
*/
|
|
3225
|
+
export declare const CreateIpAccessSettingsRequestFilterSensitiveLog: (obj: CreateIpAccessSettingsRequest) => any;
|
|
3154
3226
|
/**
|
|
3155
3227
|
* @internal
|
|
3156
3228
|
*/
|
|
@@ -3162,27 +3234,39 @@ export declare const GetIpAccessSettingsResponseFilterSensitiveLog: (obj: GetIpA
|
|
|
3162
3234
|
/**
|
|
3163
3235
|
* @internal
|
|
3164
3236
|
*/
|
|
3165
|
-
export declare const
|
|
3237
|
+
export declare const IpAccessSettingsSummaryFilterSensitiveLog: (obj: IpAccessSettingsSummary) => any;
|
|
3166
3238
|
/**
|
|
3167
3239
|
* @internal
|
|
3168
3240
|
*/
|
|
3169
|
-
export declare const
|
|
3241
|
+
export declare const ListIpAccessSettingsResponseFilterSensitiveLog: (obj: ListIpAccessSettingsResponse) => any;
|
|
3170
3242
|
/**
|
|
3171
3243
|
* @internal
|
|
3172
3244
|
*/
|
|
3173
|
-
export declare const
|
|
3245
|
+
export declare const UpdateIpAccessSettingsRequestFilterSensitiveLog: (obj: UpdateIpAccessSettingsRequest) => any;
|
|
3174
3246
|
/**
|
|
3175
3247
|
* @internal
|
|
3176
3248
|
*/
|
|
3177
|
-
export declare const
|
|
3249
|
+
export declare const UpdateIpAccessSettingsResponseFilterSensitiveLog: (obj: UpdateIpAccessSettingsResponse) => any;
|
|
3178
3250
|
/**
|
|
3179
3251
|
* @internal
|
|
3180
3252
|
*/
|
|
3181
|
-
export declare const
|
|
3253
|
+
export declare const ListTagsForResourceResponseFilterSensitiveLog: (obj: ListTagsForResourceResponse) => any;
|
|
3182
3254
|
/**
|
|
3183
3255
|
* @internal
|
|
3184
3256
|
*/
|
|
3185
|
-
export declare const
|
|
3257
|
+
export declare const CreateNetworkSettingsRequestFilterSensitiveLog: (obj: CreateNetworkSettingsRequest) => any;
|
|
3258
|
+
/**
|
|
3259
|
+
* @internal
|
|
3260
|
+
*/
|
|
3261
|
+
export declare const CreatePortalRequestFilterSensitiveLog: (obj: CreatePortalRequest) => any;
|
|
3262
|
+
/**
|
|
3263
|
+
* @internal
|
|
3264
|
+
*/
|
|
3265
|
+
export declare const PortalFilterSensitiveLog: (obj: Portal) => any;
|
|
3266
|
+
/**
|
|
3267
|
+
* @internal
|
|
3268
|
+
*/
|
|
3269
|
+
export declare const GetPortalResponseFilterSensitiveLog: (obj: GetPortalResponse) => any;
|
|
3186
3270
|
/**
|
|
3187
3271
|
* @internal
|
|
3188
3272
|
*/
|
|
@@ -3194,11 +3278,19 @@ export declare const ListPortalsResponseFilterSensitiveLog: (obj: ListPortalsRes
|
|
|
3194
3278
|
/**
|
|
3195
3279
|
* @internal
|
|
3196
3280
|
*/
|
|
3197
|
-
export declare const
|
|
3281
|
+
export declare const UpdatePortalRequestFilterSensitiveLog: (obj: UpdatePortalRequest) => any;
|
|
3282
|
+
/**
|
|
3283
|
+
* @internal
|
|
3284
|
+
*/
|
|
3285
|
+
export declare const UpdatePortalResponseFilterSensitiveLog: (obj: UpdatePortalResponse) => any;
|
|
3198
3286
|
/**
|
|
3199
3287
|
* @internal
|
|
3200
3288
|
*/
|
|
3201
3289
|
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
3290
|
+
/**
|
|
3291
|
+
* @internal
|
|
3292
|
+
*/
|
|
3293
|
+
export declare const CreateTrustStoreRequestFilterSensitiveLog: (obj: CreateTrustStoreRequest) => any;
|
|
3202
3294
|
/**
|
|
3203
3295
|
* @internal
|
|
3204
3296
|
*/
|
|
@@ -3206,32 +3298,36 @@ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResource
|
|
|
3206
3298
|
/**
|
|
3207
3299
|
* @internal
|
|
3208
3300
|
*/
|
|
3209
|
-
export declare const
|
|
3301
|
+
export declare const CreateUserAccessLoggingSettingsRequestFilterSensitiveLog: (obj: CreateUserAccessLoggingSettingsRequest) => any;
|
|
3210
3302
|
/**
|
|
3211
3303
|
* @internal
|
|
3212
3304
|
*/
|
|
3213
|
-
export declare const
|
|
3305
|
+
export declare const CookieSynchronizationConfigurationFilterSensitiveLog: (obj: CookieSynchronizationConfiguration) => any;
|
|
3214
3306
|
/**
|
|
3215
3307
|
* @internal
|
|
3216
3308
|
*/
|
|
3217
|
-
export declare const
|
|
3309
|
+
export declare const CreateUserSettingsRequestFilterSensitiveLog: (obj: CreateUserSettingsRequest) => any;
|
|
3218
3310
|
/**
|
|
3219
3311
|
* @internal
|
|
3220
3312
|
*/
|
|
3221
|
-
export declare const
|
|
3313
|
+
export declare const UserSettingsFilterSensitiveLog: (obj: UserSettings) => any;
|
|
3222
3314
|
/**
|
|
3223
3315
|
* @internal
|
|
3224
3316
|
*/
|
|
3225
|
-
export declare const
|
|
3317
|
+
export declare const GetUserSettingsResponseFilterSensitiveLog: (obj: GetUserSettingsResponse) => any;
|
|
3226
3318
|
/**
|
|
3227
3319
|
* @internal
|
|
3228
3320
|
*/
|
|
3229
|
-
export declare const
|
|
3321
|
+
export declare const UserSettingsSummaryFilterSensitiveLog: (obj: UserSettingsSummary) => any;
|
|
3230
3322
|
/**
|
|
3231
3323
|
* @internal
|
|
3232
3324
|
*/
|
|
3233
|
-
export declare const
|
|
3325
|
+
export declare const ListUserSettingsResponseFilterSensitiveLog: (obj: ListUserSettingsResponse) => any;
|
|
3234
3326
|
/**
|
|
3235
3327
|
* @internal
|
|
3236
3328
|
*/
|
|
3237
|
-
export declare const
|
|
3329
|
+
export declare const UpdateUserSettingsRequestFilterSensitiveLog: (obj: UpdateUserSettingsRequest) => any;
|
|
3330
|
+
/**
|
|
3331
|
+
* @internal
|
|
3332
|
+
*/
|
|
3333
|
+
export declare const UpdateUserSettingsResponseFilterSensitiveLog: (obj: UpdateUserSettingsResponse) => any;
|