@aws-sdk/client-ram 3.130.0 → 3.141.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/CHANGELOG.md +30 -0
- package/README.md +1 -1
- package/dist-cjs/commands/AcceptResourceShareInvitationCommand.js +2 -2
- package/dist-cjs/commands/AssociateResourceShareCommand.js +2 -2
- package/dist-cjs/commands/AssociateResourceSharePermissionCommand.js +2 -2
- package/dist-cjs/commands/CreateResourceShareCommand.js +2 -2
- package/dist-cjs/commands/DeleteResourceShareCommand.js +2 -2
- package/dist-cjs/commands/DisassociateResourceShareCommand.js +2 -2
- package/dist-cjs/commands/DisassociateResourceSharePermissionCommand.js +2 -2
- package/dist-cjs/commands/EnableSharingWithAwsOrganizationCommand.js +2 -2
- package/dist-cjs/commands/GetPermissionCommand.js +2 -2
- package/dist-cjs/commands/GetResourcePoliciesCommand.js +2 -2
- package/dist-cjs/commands/GetResourceShareAssociationsCommand.js +2 -2
- package/dist-cjs/commands/GetResourceShareInvitationsCommand.js +2 -2
- package/dist-cjs/commands/GetResourceSharesCommand.js +2 -2
- package/dist-cjs/commands/ListPendingInvitationResourcesCommand.js +2 -2
- package/dist-cjs/commands/ListPermissionVersionsCommand.js +2 -2
- package/dist-cjs/commands/ListPermissionsCommand.js +2 -2
- package/dist-cjs/commands/ListPrincipalsCommand.js +2 -2
- package/dist-cjs/commands/ListResourceSharePermissionsCommand.js +2 -2
- package/dist-cjs/commands/ListResourceTypesCommand.js +2 -2
- package/dist-cjs/commands/ListResourcesCommand.js +2 -2
- package/dist-cjs/commands/PromoteResourceShareCreatedFromPolicyCommand.js +2 -2
- package/dist-cjs/commands/RejectResourceShareInvitationCommand.js +2 -2
- package/dist-cjs/commands/TagResourceCommand.js +2 -2
- package/dist-cjs/commands/UntagResourceCommand.js +2 -2
- package/dist-cjs/commands/UpdateResourceShareCommand.js +2 -2
- package/dist-cjs/models/models_0.js +242 -362
- package/dist-es/commands/AcceptResourceShareInvitationCommand.js +3 -3
- package/dist-es/commands/AssociateResourceShareCommand.js +3 -3
- package/dist-es/commands/AssociateResourceSharePermissionCommand.js +3 -3
- package/dist-es/commands/CreateResourceShareCommand.js +3 -3
- package/dist-es/commands/DeleteResourceShareCommand.js +3 -3
- package/dist-es/commands/DisassociateResourceShareCommand.js +3 -3
- package/dist-es/commands/DisassociateResourceSharePermissionCommand.js +3 -3
- package/dist-es/commands/EnableSharingWithAwsOrganizationCommand.js +3 -3
- package/dist-es/commands/GetPermissionCommand.js +3 -3
- package/dist-es/commands/GetResourcePoliciesCommand.js +3 -3
- package/dist-es/commands/GetResourceShareAssociationsCommand.js +3 -3
- package/dist-es/commands/GetResourceShareInvitationsCommand.js +3 -3
- package/dist-es/commands/GetResourceSharesCommand.js +3 -3
- package/dist-es/commands/ListPendingInvitationResourcesCommand.js +3 -3
- package/dist-es/commands/ListPermissionVersionsCommand.js +3 -3
- package/dist-es/commands/ListPermissionsCommand.js +3 -3
- package/dist-es/commands/ListPrincipalsCommand.js +3 -3
- package/dist-es/commands/ListResourceSharePermissionsCommand.js +3 -3
- package/dist-es/commands/ListResourceTypesCommand.js +3 -3
- package/dist-es/commands/ListResourcesCommand.js +3 -3
- package/dist-es/commands/PromoteResourceShareCreatedFromPolicyCommand.js +3 -3
- package/dist-es/commands/RejectResourceShareInvitationCommand.js +3 -3
- package/dist-es/commands/TagResourceCommand.js +3 -3
- package/dist-es/commands/UntagResourceCommand.js +3 -3
- package/dist-es/commands/UpdateResourceShareCommand.js +3 -3
- package/dist-es/models/models_0.js +60 -240
- package/dist-types/models/models_0.d.ts +240 -360
- package/dist-types/ts3.4/models/models_0.d.ts +120 -240
- package/package.json +7 -7
|
@@ -17,12 +17,6 @@ export interface AcceptResourceShareInvitationRequest {
|
|
|
17
17
|
*/
|
|
18
18
|
clientToken?: string;
|
|
19
19
|
}
|
|
20
|
-
export declare namespace AcceptResourceShareInvitationRequest {
|
|
21
|
-
/**
|
|
22
|
-
* @internal
|
|
23
|
-
*/
|
|
24
|
-
const filterSensitiveLog: (obj: AcceptResourceShareInvitationRequest) => any;
|
|
25
|
-
}
|
|
26
20
|
export declare type ResourceShareAssociationType = "PRINCIPAL" | "RESOURCE";
|
|
27
21
|
export declare type ResourceShareAssociationStatus = "ASSOCIATED" | "ASSOCIATING" | "DISASSOCIATED" | "DISASSOCIATING" | "FAILED";
|
|
28
22
|
/**
|
|
@@ -92,12 +86,6 @@ export interface ResourceShareAssociation {
|
|
|
92
86
|
*/
|
|
93
87
|
external?: boolean;
|
|
94
88
|
}
|
|
95
|
-
export declare namespace ResourceShareAssociation {
|
|
96
|
-
/**
|
|
97
|
-
* @internal
|
|
98
|
-
*/
|
|
99
|
-
const filterSensitiveLog: (obj: ResourceShareAssociation) => any;
|
|
100
|
-
}
|
|
101
89
|
export declare type ResourceShareInvitationStatus = "ACCEPTED" | "EXPIRED" | "PENDING" | "REJECTED";
|
|
102
90
|
/**
|
|
103
91
|
* <p>Describes an invitation for an Amazon Web Services account to join a resource share.</p>
|
|
@@ -142,12 +130,6 @@ export interface ResourceShareInvitation {
|
|
|
142
130
|
*/
|
|
143
131
|
receiverArn?: string;
|
|
144
132
|
}
|
|
145
|
-
export declare namespace ResourceShareInvitation {
|
|
146
|
-
/**
|
|
147
|
-
* @internal
|
|
148
|
-
*/
|
|
149
|
-
const filterSensitiveLog: (obj: ResourceShareInvitation) => any;
|
|
150
|
-
}
|
|
151
133
|
export interface AcceptResourceShareInvitationResponse {
|
|
152
134
|
/**
|
|
153
135
|
* <p>An object that contains information about the specified invitation.</p>
|
|
@@ -161,12 +143,6 @@ export interface AcceptResourceShareInvitationResponse {
|
|
|
161
143
|
*/
|
|
162
144
|
clientToken?: string;
|
|
163
145
|
}
|
|
164
|
-
export declare namespace AcceptResourceShareInvitationResponse {
|
|
165
|
-
/**
|
|
166
|
-
* @internal
|
|
167
|
-
*/
|
|
168
|
-
const filterSensitiveLog: (obj: AcceptResourceShareInvitationResponse) => any;
|
|
169
|
-
}
|
|
170
146
|
/**
|
|
171
147
|
* <p>The client token input parameter was matched one used with a previous call to the
|
|
172
148
|
* operation, but at least one of the other input parameters is different from the previous
|
|
@@ -341,12 +317,6 @@ export interface AssociateResourceShareRequest {
|
|
|
341
317
|
*/
|
|
342
318
|
clientToken?: string;
|
|
343
319
|
}
|
|
344
|
-
export declare namespace AssociateResourceShareRequest {
|
|
345
|
-
/**
|
|
346
|
-
* @internal
|
|
347
|
-
*/
|
|
348
|
-
const filterSensitiveLog: (obj: AssociateResourceShareRequest) => any;
|
|
349
|
-
}
|
|
350
320
|
export interface AssociateResourceShareResponse {
|
|
351
321
|
/**
|
|
352
322
|
* <p>An array of objects that contain information about the associations.</p>
|
|
@@ -360,12 +330,6 @@ export interface AssociateResourceShareResponse {
|
|
|
360
330
|
*/
|
|
361
331
|
clientToken?: string;
|
|
362
332
|
}
|
|
363
|
-
export declare namespace AssociateResourceShareResponse {
|
|
364
|
-
/**
|
|
365
|
-
* @internal
|
|
366
|
-
*/
|
|
367
|
-
const filterSensitiveLog: (obj: AssociateResourceShareResponse) => any;
|
|
368
|
-
}
|
|
369
333
|
/**
|
|
370
334
|
* <p>A parameter is not valid.</p>
|
|
371
335
|
*/
|
|
@@ -466,12 +430,6 @@ export interface AssociateResourceSharePermissionRequest {
|
|
|
466
430
|
*/
|
|
467
431
|
permissionVersion?: number;
|
|
468
432
|
}
|
|
469
|
-
export declare namespace AssociateResourceSharePermissionRequest {
|
|
470
|
-
/**
|
|
471
|
-
* @internal
|
|
472
|
-
*/
|
|
473
|
-
const filterSensitiveLog: (obj: AssociateResourceSharePermissionRequest) => any;
|
|
474
|
-
}
|
|
475
433
|
export interface AssociateResourceSharePermissionResponse {
|
|
476
434
|
/**
|
|
477
435
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -486,12 +444,6 @@ export interface AssociateResourceSharePermissionResponse {
|
|
|
486
444
|
*/
|
|
487
445
|
clientToken?: string;
|
|
488
446
|
}
|
|
489
|
-
export declare namespace AssociateResourceSharePermissionResponse {
|
|
490
|
-
/**
|
|
491
|
-
* @internal
|
|
492
|
-
*/
|
|
493
|
-
const filterSensitiveLog: (obj: AssociateResourceSharePermissionResponse) => any;
|
|
494
|
-
}
|
|
495
447
|
/**
|
|
496
448
|
* <p>A structure containing a tag. A tag is metadata that you can attach to your resources
|
|
497
449
|
* to help organize and categorize them. You can also use them to help you secure your
|
|
@@ -512,12 +464,6 @@ export interface Tag {
|
|
|
512
464
|
*/
|
|
513
465
|
value?: string;
|
|
514
466
|
}
|
|
515
|
-
export declare namespace Tag {
|
|
516
|
-
/**
|
|
517
|
-
* @internal
|
|
518
|
-
*/
|
|
519
|
-
const filterSensitiveLog: (obj: Tag) => any;
|
|
520
|
-
}
|
|
521
467
|
export interface CreateResourceShareRequest {
|
|
522
468
|
/**
|
|
523
469
|
* <p>Specifies the name of the resource share.</p>
|
|
@@ -596,12 +542,6 @@ export interface CreateResourceShareRequest {
|
|
|
596
542
|
*/
|
|
597
543
|
permissionArns?: string[];
|
|
598
544
|
}
|
|
599
|
-
export declare namespace CreateResourceShareRequest {
|
|
600
|
-
/**
|
|
601
|
-
* @internal
|
|
602
|
-
*/
|
|
603
|
-
const filterSensitiveLog: (obj: CreateResourceShareRequest) => any;
|
|
604
|
-
}
|
|
605
545
|
export declare type ResourceShareFeatureSet = "CREATED_FROM_POLICY" | "PROMOTING_TO_STANDARD" | "STANDARD";
|
|
606
546
|
export declare type ResourceShareStatus = "ACTIVE" | "DELETED" | "DELETING" | "FAILED" | "PENDING";
|
|
607
547
|
/**
|
|
@@ -670,12 +610,6 @@ export interface ResourceShare {
|
|
|
670
610
|
*/
|
|
671
611
|
featureSet?: ResourceShareFeatureSet | string;
|
|
672
612
|
}
|
|
673
|
-
export declare namespace ResourceShare {
|
|
674
|
-
/**
|
|
675
|
-
* @internal
|
|
676
|
-
*/
|
|
677
|
-
const filterSensitiveLog: (obj: ResourceShare) => any;
|
|
678
|
-
}
|
|
679
613
|
export interface CreateResourceShareResponse {
|
|
680
614
|
/**
|
|
681
615
|
* <p>An object with information about the new resource share.</p>
|
|
@@ -689,12 +623,6 @@ export interface CreateResourceShareResponse {
|
|
|
689
623
|
*/
|
|
690
624
|
clientToken?: string;
|
|
691
625
|
}
|
|
692
|
-
export declare namespace CreateResourceShareResponse {
|
|
693
|
-
/**
|
|
694
|
-
* @internal
|
|
695
|
-
*/
|
|
696
|
-
const filterSensitiveLog: (obj: CreateResourceShareResponse) => any;
|
|
697
|
-
}
|
|
698
626
|
/**
|
|
699
627
|
* <p>The specified tag key is a reserved word and can't be used.</p>
|
|
700
628
|
*/
|
|
@@ -723,12 +651,6 @@ export interface DeleteResourceShareRequest {
|
|
|
723
651
|
*/
|
|
724
652
|
clientToken?: string;
|
|
725
653
|
}
|
|
726
|
-
export declare namespace DeleteResourceShareRequest {
|
|
727
|
-
/**
|
|
728
|
-
* @internal
|
|
729
|
-
*/
|
|
730
|
-
const filterSensitiveLog: (obj: DeleteResourceShareRequest) => any;
|
|
731
|
-
}
|
|
732
654
|
export interface DeleteResourceShareResponse {
|
|
733
655
|
/**
|
|
734
656
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -743,12 +665,6 @@ export interface DeleteResourceShareResponse {
|
|
|
743
665
|
*/
|
|
744
666
|
clientToken?: string;
|
|
745
667
|
}
|
|
746
|
-
export declare namespace DeleteResourceShareResponse {
|
|
747
|
-
/**
|
|
748
|
-
* @internal
|
|
749
|
-
*/
|
|
750
|
-
const filterSensitiveLog: (obj: DeleteResourceShareResponse) => any;
|
|
751
|
-
}
|
|
752
668
|
export interface DisassociateResourceShareRequest {
|
|
753
669
|
/**
|
|
754
670
|
* <p>Specifies <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the resource share that you want to remove resources from.</p>
|
|
@@ -809,12 +725,6 @@ export interface DisassociateResourceShareRequest {
|
|
|
809
725
|
*/
|
|
810
726
|
clientToken?: string;
|
|
811
727
|
}
|
|
812
|
-
export declare namespace DisassociateResourceShareRequest {
|
|
813
|
-
/**
|
|
814
|
-
* @internal
|
|
815
|
-
*/
|
|
816
|
-
const filterSensitiveLog: (obj: DisassociateResourceShareRequest) => any;
|
|
817
|
-
}
|
|
818
728
|
export interface DisassociateResourceShareResponse {
|
|
819
729
|
/**
|
|
820
730
|
* <p>An array of objects that contain information about the updated associations for this
|
|
@@ -829,12 +739,6 @@ export interface DisassociateResourceShareResponse {
|
|
|
829
739
|
*/
|
|
830
740
|
clientToken?: string;
|
|
831
741
|
}
|
|
832
|
-
export declare namespace DisassociateResourceShareResponse {
|
|
833
|
-
/**
|
|
834
|
-
* @internal
|
|
835
|
-
*/
|
|
836
|
-
const filterSensitiveLog: (obj: DisassociateResourceShareResponse) => any;
|
|
837
|
-
}
|
|
838
742
|
export interface DisassociateResourceSharePermissionRequest {
|
|
839
743
|
/**
|
|
840
744
|
* <p>The <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the resource share from which you want to disassociate a permission.</p>
|
|
@@ -857,12 +761,6 @@ export interface DisassociateResourceSharePermissionRequest {
|
|
|
857
761
|
*/
|
|
858
762
|
clientToken?: string;
|
|
859
763
|
}
|
|
860
|
-
export declare namespace DisassociateResourceSharePermissionRequest {
|
|
861
|
-
/**
|
|
862
|
-
* @internal
|
|
863
|
-
*/
|
|
864
|
-
const filterSensitiveLog: (obj: DisassociateResourceSharePermissionRequest) => any;
|
|
865
|
-
}
|
|
866
764
|
export interface DisassociateResourceSharePermissionResponse {
|
|
867
765
|
/**
|
|
868
766
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -877,20 +775,8 @@ export interface DisassociateResourceSharePermissionResponse {
|
|
|
877
775
|
*/
|
|
878
776
|
clientToken?: string;
|
|
879
777
|
}
|
|
880
|
-
export declare namespace DisassociateResourceSharePermissionResponse {
|
|
881
|
-
/**
|
|
882
|
-
* @internal
|
|
883
|
-
*/
|
|
884
|
-
const filterSensitiveLog: (obj: DisassociateResourceSharePermissionResponse) => any;
|
|
885
|
-
}
|
|
886
778
|
export interface EnableSharingWithAwsOrganizationRequest {
|
|
887
779
|
}
|
|
888
|
-
export declare namespace EnableSharingWithAwsOrganizationRequest {
|
|
889
|
-
/**
|
|
890
|
-
* @internal
|
|
891
|
-
*/
|
|
892
|
-
const filterSensitiveLog: (obj: EnableSharingWithAwsOrganizationRequest) => any;
|
|
893
|
-
}
|
|
894
780
|
export interface EnableSharingWithAwsOrganizationResponse {
|
|
895
781
|
/**
|
|
896
782
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -898,12 +784,6 @@ export interface EnableSharingWithAwsOrganizationResponse {
|
|
|
898
784
|
*/
|
|
899
785
|
returnValue?: boolean;
|
|
900
786
|
}
|
|
901
|
-
export declare namespace EnableSharingWithAwsOrganizationResponse {
|
|
902
|
-
/**
|
|
903
|
-
* @internal
|
|
904
|
-
*/
|
|
905
|
-
const filterSensitiveLog: (obj: EnableSharingWithAwsOrganizationResponse) => any;
|
|
906
|
-
}
|
|
907
787
|
export interface GetPermissionRequest {
|
|
908
788
|
/**
|
|
909
789
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the permission whose contents you want to retrieve.
|
|
@@ -917,12 +797,6 @@ export interface GetPermissionRequest {
|
|
|
917
797
|
*/
|
|
918
798
|
permissionVersion?: number;
|
|
919
799
|
}
|
|
920
|
-
export declare namespace GetPermissionRequest {
|
|
921
|
-
/**
|
|
922
|
-
* @internal
|
|
923
|
-
*/
|
|
924
|
-
const filterSensitiveLog: (obj: GetPermissionRequest) => any;
|
|
925
|
-
}
|
|
926
800
|
/**
|
|
927
801
|
* <p>Information about an RAM permission.</p>
|
|
928
802
|
*/
|
|
@@ -968,24 +842,12 @@ export interface ResourceSharePermissionDetail {
|
|
|
968
842
|
*/
|
|
969
843
|
isResourceTypeDefault?: boolean;
|
|
970
844
|
}
|
|
971
|
-
export declare namespace ResourceSharePermissionDetail {
|
|
972
|
-
/**
|
|
973
|
-
* @internal
|
|
974
|
-
*/
|
|
975
|
-
const filterSensitiveLog: (obj: ResourceSharePermissionDetail) => any;
|
|
976
|
-
}
|
|
977
845
|
export interface GetPermissionResponse {
|
|
978
846
|
/**
|
|
979
847
|
* <p>An object that contains information about the permission.</p>
|
|
980
848
|
*/
|
|
981
849
|
permission?: ResourceSharePermissionDetail;
|
|
982
850
|
}
|
|
983
|
-
export declare namespace GetPermissionResponse {
|
|
984
|
-
/**
|
|
985
|
-
* @internal
|
|
986
|
-
*/
|
|
987
|
-
const filterSensitiveLog: (obj: GetPermissionResponse) => any;
|
|
988
|
-
}
|
|
989
851
|
export interface GetResourcePoliciesRequest {
|
|
990
852
|
/**
|
|
991
853
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> of the resources whose policies you want to retrieve.</p>
|
|
@@ -1016,12 +878,6 @@ export interface GetResourcePoliciesRequest {
|
|
|
1016
878
|
*/
|
|
1017
879
|
maxResults?: number;
|
|
1018
880
|
}
|
|
1019
|
-
export declare namespace GetResourcePoliciesRequest {
|
|
1020
|
-
/**
|
|
1021
|
-
* @internal
|
|
1022
|
-
*/
|
|
1023
|
-
const filterSensitiveLog: (obj: GetResourcePoliciesRequest) => any;
|
|
1024
|
-
}
|
|
1025
881
|
export interface GetResourcePoliciesResponse {
|
|
1026
882
|
/**
|
|
1027
883
|
* <p>An array of resource policy documents in JSON format.</p>
|
|
@@ -1036,12 +892,6 @@ export interface GetResourcePoliciesResponse {
|
|
|
1036
892
|
*/
|
|
1037
893
|
nextToken?: string;
|
|
1038
894
|
}
|
|
1039
|
-
export declare namespace GetResourcePoliciesResponse {
|
|
1040
|
-
/**
|
|
1041
|
-
* @internal
|
|
1042
|
-
*/
|
|
1043
|
-
const filterSensitiveLog: (obj: GetResourcePoliciesResponse) => any;
|
|
1044
|
-
}
|
|
1045
895
|
/**
|
|
1046
896
|
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
1047
897
|
*/
|
|
@@ -1126,12 +976,6 @@ export interface GetResourceShareAssociationsRequest {
|
|
|
1126
976
|
*/
|
|
1127
977
|
maxResults?: number;
|
|
1128
978
|
}
|
|
1129
|
-
export declare namespace GetResourceShareAssociationsRequest {
|
|
1130
|
-
/**
|
|
1131
|
-
* @internal
|
|
1132
|
-
*/
|
|
1133
|
-
const filterSensitiveLog: (obj: GetResourceShareAssociationsRequest) => any;
|
|
1134
|
-
}
|
|
1135
979
|
export interface GetResourceShareAssociationsResponse {
|
|
1136
980
|
/**
|
|
1137
981
|
* <p>An array of objects that contain the details about the associations.</p>
|
|
@@ -1146,12 +990,6 @@ export interface GetResourceShareAssociationsResponse {
|
|
|
1146
990
|
*/
|
|
1147
991
|
nextToken?: string;
|
|
1148
992
|
}
|
|
1149
|
-
export declare namespace GetResourceShareAssociationsResponse {
|
|
1150
|
-
/**
|
|
1151
|
-
* @internal
|
|
1152
|
-
*/
|
|
1153
|
-
const filterSensitiveLog: (obj: GetResourceShareAssociationsResponse) => any;
|
|
1154
|
-
}
|
|
1155
993
|
export interface GetResourceShareInvitationsRequest {
|
|
1156
994
|
/**
|
|
1157
995
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> of the resource share invitations you want information about.</p>
|
|
@@ -1184,12 +1022,6 @@ export interface GetResourceShareInvitationsRequest {
|
|
|
1184
1022
|
*/
|
|
1185
1023
|
maxResults?: number;
|
|
1186
1024
|
}
|
|
1187
|
-
export declare namespace GetResourceShareInvitationsRequest {
|
|
1188
|
-
/**
|
|
1189
|
-
* @internal
|
|
1190
|
-
*/
|
|
1191
|
-
const filterSensitiveLog: (obj: GetResourceShareInvitationsRequest) => any;
|
|
1192
|
-
}
|
|
1193
1025
|
export interface GetResourceShareInvitationsResponse {
|
|
1194
1026
|
/**
|
|
1195
1027
|
* <p>An array of objects that contain the details about the invitations.</p>
|
|
@@ -1204,12 +1036,6 @@ export interface GetResourceShareInvitationsResponse {
|
|
|
1204
1036
|
*/
|
|
1205
1037
|
nextToken?: string;
|
|
1206
1038
|
}
|
|
1207
|
-
export declare namespace GetResourceShareInvitationsResponse {
|
|
1208
|
-
/**
|
|
1209
|
-
* @internal
|
|
1210
|
-
*/
|
|
1211
|
-
const filterSensitiveLog: (obj: GetResourceShareInvitationsResponse) => any;
|
|
1212
|
-
}
|
|
1213
1039
|
/**
|
|
1214
1040
|
* <p>The specified value for <code>MaxResults</code> is not valid.</p>
|
|
1215
1041
|
*/
|
|
@@ -1240,12 +1066,6 @@ export interface TagFilter {
|
|
|
1240
1066
|
*/
|
|
1241
1067
|
tagValues?: string[];
|
|
1242
1068
|
}
|
|
1243
|
-
export declare namespace TagFilter {
|
|
1244
|
-
/**
|
|
1245
|
-
* @internal
|
|
1246
|
-
*/
|
|
1247
|
-
const filterSensitiveLog: (obj: TagFilter) => any;
|
|
1248
|
-
}
|
|
1249
1069
|
export interface GetResourceSharesRequest {
|
|
1250
1070
|
/**
|
|
1251
1071
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resource Names (ARNs)</a> of individual resource shares that you want information about.</p>
|
|
@@ -1313,12 +1133,6 @@ export interface GetResourceSharesRequest {
|
|
|
1313
1133
|
*/
|
|
1314
1134
|
permissionArn?: string;
|
|
1315
1135
|
}
|
|
1316
|
-
export declare namespace GetResourceSharesRequest {
|
|
1317
|
-
/**
|
|
1318
|
-
* @internal
|
|
1319
|
-
*/
|
|
1320
|
-
const filterSensitiveLog: (obj: GetResourceSharesRequest) => any;
|
|
1321
|
-
}
|
|
1322
1136
|
export interface GetResourceSharesResponse {
|
|
1323
1137
|
/**
|
|
1324
1138
|
* <p>An array of objects that contain the information about the resource shares.</p>
|
|
@@ -1333,12 +1147,6 @@ export interface GetResourceSharesResponse {
|
|
|
1333
1147
|
*/
|
|
1334
1148
|
nextToken?: string;
|
|
1335
1149
|
}
|
|
1336
|
-
export declare namespace GetResourceSharesResponse {
|
|
1337
|
-
/**
|
|
1338
|
-
* @internal
|
|
1339
|
-
*/
|
|
1340
|
-
const filterSensitiveLog: (obj: GetResourceSharesResponse) => any;
|
|
1341
|
-
}
|
|
1342
1150
|
export declare enum ResourceRegionScopeFilter {
|
|
1343
1151
|
ALL = "ALL",
|
|
1344
1152
|
GLOBAL = "GLOBAL",
|
|
@@ -1393,12 +1201,6 @@ export interface ListPendingInvitationResourcesRequest {
|
|
|
1393
1201
|
*/
|
|
1394
1202
|
resourceRegionScope?: ResourceRegionScopeFilter | string;
|
|
1395
1203
|
}
|
|
1396
|
-
export declare namespace ListPendingInvitationResourcesRequest {
|
|
1397
|
-
/**
|
|
1398
|
-
* @internal
|
|
1399
|
-
*/
|
|
1400
|
-
const filterSensitiveLog: (obj: ListPendingInvitationResourcesRequest) => any;
|
|
1401
|
-
}
|
|
1402
1204
|
export declare enum ResourceRegionScope {
|
|
1403
1205
|
GLOBAL = "GLOBAL",
|
|
1404
1206
|
REGIONAL = "REGIONAL"
|
|
@@ -1461,12 +1263,6 @@ export interface Resource {
|
|
|
1461
1263
|
*/
|
|
1462
1264
|
resourceRegionScope?: ResourceRegionScope | string;
|
|
1463
1265
|
}
|
|
1464
|
-
export declare namespace Resource {
|
|
1465
|
-
/**
|
|
1466
|
-
* @internal
|
|
1467
|
-
*/
|
|
1468
|
-
const filterSensitiveLog: (obj: Resource) => any;
|
|
1469
|
-
}
|
|
1470
1266
|
export interface ListPendingInvitationResourcesResponse {
|
|
1471
1267
|
/**
|
|
1472
1268
|
* <p>An array of objects that contain the information about the resources included the
|
|
@@ -1482,12 +1278,6 @@ export interface ListPendingInvitationResourcesResponse {
|
|
|
1482
1278
|
*/
|
|
1483
1279
|
nextToken?: string;
|
|
1484
1280
|
}
|
|
1485
|
-
export declare namespace ListPendingInvitationResourcesResponse {
|
|
1486
|
-
/**
|
|
1487
|
-
* @internal
|
|
1488
|
-
*/
|
|
1489
|
-
const filterSensitiveLog: (obj: ListPendingInvitationResourcesResponse) => any;
|
|
1490
|
-
}
|
|
1491
1281
|
/**
|
|
1492
1282
|
* <p>A required input parameter is missing.</p>
|
|
1493
1283
|
*/
|
|
@@ -1528,12 +1318,6 @@ export interface ListPermissionsRequest {
|
|
|
1528
1318
|
*/
|
|
1529
1319
|
maxResults?: number;
|
|
1530
1320
|
}
|
|
1531
|
-
export declare namespace ListPermissionsRequest {
|
|
1532
|
-
/**
|
|
1533
|
-
* @internal
|
|
1534
|
-
*/
|
|
1535
|
-
const filterSensitiveLog: (obj: ListPermissionsRequest) => any;
|
|
1536
|
-
}
|
|
1537
1321
|
/**
|
|
1538
1322
|
* <p>Information about an RAM permission that is associated with a resource share and any of its
|
|
1539
1323
|
* resources of a specified type.</p>
|
|
@@ -1578,12 +1362,6 @@ export interface ResourceSharePermissionSummary {
|
|
|
1578
1362
|
*/
|
|
1579
1363
|
isResourceTypeDefault?: boolean;
|
|
1580
1364
|
}
|
|
1581
|
-
export declare namespace ResourceSharePermissionSummary {
|
|
1582
|
-
/**
|
|
1583
|
-
* @internal
|
|
1584
|
-
*/
|
|
1585
|
-
const filterSensitiveLog: (obj: ResourceSharePermissionSummary) => any;
|
|
1586
|
-
}
|
|
1587
1365
|
export interface ListPermissionsResponse {
|
|
1588
1366
|
/**
|
|
1589
1367
|
* <p>An array of objects with information about the permissions.</p>
|
|
@@ -1598,12 +1376,6 @@ export interface ListPermissionsResponse {
|
|
|
1598
1376
|
*/
|
|
1599
1377
|
nextToken?: string;
|
|
1600
1378
|
}
|
|
1601
|
-
export declare namespace ListPermissionsResponse {
|
|
1602
|
-
/**
|
|
1603
|
-
* @internal
|
|
1604
|
-
*/
|
|
1605
|
-
const filterSensitiveLog: (obj: ListPermissionsResponse) => any;
|
|
1606
|
-
}
|
|
1607
1379
|
export interface ListPermissionVersionsRequest {
|
|
1608
1380
|
/**
|
|
1609
1381
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the RAM permission whose versions you want to list. You
|
|
@@ -1632,12 +1404,6 @@ export interface ListPermissionVersionsRequest {
|
|
|
1632
1404
|
*/
|
|
1633
1405
|
maxResults?: number;
|
|
1634
1406
|
}
|
|
1635
|
-
export declare namespace ListPermissionVersionsRequest {
|
|
1636
|
-
/**
|
|
1637
|
-
* @internal
|
|
1638
|
-
*/
|
|
1639
|
-
const filterSensitiveLog: (obj: ListPermissionVersionsRequest) => any;
|
|
1640
|
-
}
|
|
1641
1407
|
export interface ListPermissionVersionsResponse {
|
|
1642
1408
|
/**
|
|
1643
1409
|
* <p>An array of objects that contain details for each of the available versions.</p>
|
|
@@ -1652,12 +1418,6 @@ export interface ListPermissionVersionsResponse {
|
|
|
1652
1418
|
*/
|
|
1653
1419
|
nextToken?: string;
|
|
1654
1420
|
}
|
|
1655
|
-
export declare namespace ListPermissionVersionsResponse {
|
|
1656
|
-
/**
|
|
1657
|
-
* @internal
|
|
1658
|
-
*/
|
|
1659
|
-
const filterSensitiveLog: (obj: ListPermissionVersionsResponse) => any;
|
|
1660
|
-
}
|
|
1661
1421
|
export interface ListPrincipalsRequest {
|
|
1662
1422
|
/**
|
|
1663
1423
|
* <p>Specifies that you want to list information for only resource shares that match the
|
|
@@ -1754,12 +1514,6 @@ export interface ListPrincipalsRequest {
|
|
|
1754
1514
|
*/
|
|
1755
1515
|
maxResults?: number;
|
|
1756
1516
|
}
|
|
1757
|
-
export declare namespace ListPrincipalsRequest {
|
|
1758
|
-
/**
|
|
1759
|
-
* @internal
|
|
1760
|
-
*/
|
|
1761
|
-
const filterSensitiveLog: (obj: ListPrincipalsRequest) => any;
|
|
1762
|
-
}
|
|
1763
1517
|
/**
|
|
1764
1518
|
* <p>Describes a principal for use with Resource Access Manager.</p>
|
|
1765
1519
|
*/
|
|
@@ -1786,12 +1540,6 @@ export interface Principal {
|
|
|
1786
1540
|
*/
|
|
1787
1541
|
external?: boolean;
|
|
1788
1542
|
}
|
|
1789
|
-
export declare namespace Principal {
|
|
1790
|
-
/**
|
|
1791
|
-
* @internal
|
|
1792
|
-
*/
|
|
1793
|
-
const filterSensitiveLog: (obj: Principal) => any;
|
|
1794
|
-
}
|
|
1795
1543
|
export interface ListPrincipalsResponse {
|
|
1796
1544
|
/**
|
|
1797
1545
|
* <p>An array of objects that contain the details about the principals.</p>
|
|
@@ -1806,12 +1554,6 @@ export interface ListPrincipalsResponse {
|
|
|
1806
1554
|
*/
|
|
1807
1555
|
nextToken?: string;
|
|
1808
1556
|
}
|
|
1809
|
-
export declare namespace ListPrincipalsResponse {
|
|
1810
|
-
/**
|
|
1811
|
-
* @internal
|
|
1812
|
-
*/
|
|
1813
|
-
const filterSensitiveLog: (obj: ListPrincipalsResponse) => any;
|
|
1814
|
-
}
|
|
1815
1557
|
/**
|
|
1816
1558
|
* <p>The specified resource type is not valid.</p>
|
|
1817
1559
|
*/
|
|
@@ -1909,12 +1651,6 @@ export interface ListResourcesRequest {
|
|
|
1909
1651
|
*/
|
|
1910
1652
|
resourceRegionScope?: ResourceRegionScopeFilter | string;
|
|
1911
1653
|
}
|
|
1912
|
-
export declare namespace ListResourcesRequest {
|
|
1913
|
-
/**
|
|
1914
|
-
* @internal
|
|
1915
|
-
*/
|
|
1916
|
-
const filterSensitiveLog: (obj: ListResourcesRequest) => any;
|
|
1917
|
-
}
|
|
1918
1654
|
export interface ListResourcesResponse {
|
|
1919
1655
|
/**
|
|
1920
1656
|
* <p>An array of objects that contain information about the resources.</p>
|
|
@@ -1929,12 +1665,6 @@ export interface ListResourcesResponse {
|
|
|
1929
1665
|
*/
|
|
1930
1666
|
nextToken?: string;
|
|
1931
1667
|
}
|
|
1932
|
-
export declare namespace ListResourcesResponse {
|
|
1933
|
-
/**
|
|
1934
|
-
* @internal
|
|
1935
|
-
*/
|
|
1936
|
-
const filterSensitiveLog: (obj: ListResourcesResponse) => any;
|
|
1937
|
-
}
|
|
1938
1668
|
export interface ListResourceSharePermissionsRequest {
|
|
1939
1669
|
/**
|
|
1940
1670
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the resource share for which you want to retrieve the associated
|
|
@@ -1962,12 +1692,6 @@ export interface ListResourceSharePermissionsRequest {
|
|
|
1962
1692
|
*/
|
|
1963
1693
|
maxResults?: number;
|
|
1964
1694
|
}
|
|
1965
|
-
export declare namespace ListResourceSharePermissionsRequest {
|
|
1966
|
-
/**
|
|
1967
|
-
* @internal
|
|
1968
|
-
*/
|
|
1969
|
-
const filterSensitiveLog: (obj: ListResourceSharePermissionsRequest) => any;
|
|
1970
|
-
}
|
|
1971
1695
|
export interface ListResourceSharePermissionsResponse {
|
|
1972
1696
|
/**
|
|
1973
1697
|
* <p>An array of objects that describe the permissions associated with the resource share.</p>
|
|
@@ -1982,12 +1706,6 @@ export interface ListResourceSharePermissionsResponse {
|
|
|
1982
1706
|
*/
|
|
1983
1707
|
nextToken?: string;
|
|
1984
1708
|
}
|
|
1985
|
-
export declare namespace ListResourceSharePermissionsResponse {
|
|
1986
|
-
/**
|
|
1987
|
-
* @internal
|
|
1988
|
-
*/
|
|
1989
|
-
const filterSensitiveLog: (obj: ListResourceSharePermissionsResponse) => any;
|
|
1990
|
-
}
|
|
1991
1709
|
export interface ListResourceTypesRequest {
|
|
1992
1710
|
/**
|
|
1993
1711
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
@@ -2033,12 +1751,6 @@ export interface ListResourceTypesRequest {
|
|
|
2033
1751
|
*/
|
|
2034
1752
|
resourceRegionScope?: ResourceRegionScopeFilter | string;
|
|
2035
1753
|
}
|
|
2036
|
-
export declare namespace ListResourceTypesRequest {
|
|
2037
|
-
/**
|
|
2038
|
-
* @internal
|
|
2039
|
-
*/
|
|
2040
|
-
const filterSensitiveLog: (obj: ListResourceTypesRequest) => any;
|
|
2041
|
-
}
|
|
2042
1754
|
/**
|
|
2043
1755
|
* <p>Information about a shareable resource type and the Amazon Web Services service to which resources
|
|
2044
1756
|
* of that type belong.</p>
|
|
@@ -2070,12 +1782,6 @@ export interface ServiceNameAndResourceType {
|
|
|
2070
1782
|
*/
|
|
2071
1783
|
resourceRegionScope?: ResourceRegionScope | string;
|
|
2072
1784
|
}
|
|
2073
|
-
export declare namespace ServiceNameAndResourceType {
|
|
2074
|
-
/**
|
|
2075
|
-
* @internal
|
|
2076
|
-
*/
|
|
2077
|
-
const filterSensitiveLog: (obj: ServiceNameAndResourceType) => any;
|
|
2078
|
-
}
|
|
2079
1785
|
export interface ListResourceTypesResponse {
|
|
2080
1786
|
/**
|
|
2081
1787
|
* <p>An array of objects that contain information about the resource types that can be
|
|
@@ -2091,24 +1797,12 @@ export interface ListResourceTypesResponse {
|
|
|
2091
1797
|
*/
|
|
2092
1798
|
nextToken?: string;
|
|
2093
1799
|
}
|
|
2094
|
-
export declare namespace ListResourceTypesResponse {
|
|
2095
|
-
/**
|
|
2096
|
-
* @internal
|
|
2097
|
-
*/
|
|
2098
|
-
const filterSensitiveLog: (obj: ListResourceTypesResponse) => any;
|
|
2099
|
-
}
|
|
2100
1800
|
export interface PromoteResourceShareCreatedFromPolicyRequest {
|
|
2101
1801
|
/**
|
|
2102
1802
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the resource share to promote.</p>
|
|
2103
1803
|
*/
|
|
2104
1804
|
resourceShareArn: string | undefined;
|
|
2105
1805
|
}
|
|
2106
|
-
export declare namespace PromoteResourceShareCreatedFromPolicyRequest {
|
|
2107
|
-
/**
|
|
2108
|
-
* @internal
|
|
2109
|
-
*/
|
|
2110
|
-
const filterSensitiveLog: (obj: PromoteResourceShareCreatedFromPolicyRequest) => any;
|
|
2111
|
-
}
|
|
2112
1806
|
export interface PromoteResourceShareCreatedFromPolicyResponse {
|
|
2113
1807
|
/**
|
|
2114
1808
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -2116,12 +1810,6 @@ export interface PromoteResourceShareCreatedFromPolicyResponse {
|
|
|
2116
1810
|
*/
|
|
2117
1811
|
returnValue?: boolean;
|
|
2118
1812
|
}
|
|
2119
|
-
export declare namespace PromoteResourceShareCreatedFromPolicyResponse {
|
|
2120
|
-
/**
|
|
2121
|
-
* @internal
|
|
2122
|
-
*/
|
|
2123
|
-
const filterSensitiveLog: (obj: PromoteResourceShareCreatedFromPolicyResponse) => any;
|
|
2124
|
-
}
|
|
2125
1813
|
export interface RejectResourceShareInvitationRequest {
|
|
2126
1814
|
/**
|
|
2127
1815
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the invitation that you want to reject.</p>
|
|
@@ -2139,12 +1827,6 @@ export interface RejectResourceShareInvitationRequest {
|
|
|
2139
1827
|
*/
|
|
2140
1828
|
clientToken?: string;
|
|
2141
1829
|
}
|
|
2142
|
-
export declare namespace RejectResourceShareInvitationRequest {
|
|
2143
|
-
/**
|
|
2144
|
-
* @internal
|
|
2145
|
-
*/
|
|
2146
|
-
const filterSensitiveLog: (obj: RejectResourceShareInvitationRequest) => any;
|
|
2147
|
-
}
|
|
2148
1830
|
export interface RejectResourceShareInvitationResponse {
|
|
2149
1831
|
/**
|
|
2150
1832
|
* <p>An object that contains the details about the rejected invitation.</p>
|
|
@@ -2158,12 +1840,6 @@ export interface RejectResourceShareInvitationResponse {
|
|
|
2158
1840
|
*/
|
|
2159
1841
|
clientToken?: string;
|
|
2160
1842
|
}
|
|
2161
|
-
export declare namespace RejectResourceShareInvitationResponse {
|
|
2162
|
-
/**
|
|
2163
|
-
* @internal
|
|
2164
|
-
*/
|
|
2165
|
-
const filterSensitiveLog: (obj: RejectResourceShareInvitationResponse) => any;
|
|
2166
|
-
}
|
|
2167
1843
|
/**
|
|
2168
1844
|
* <p>This request would exceed the limit for tags for your account.</p>
|
|
2169
1845
|
*/
|
|
@@ -2186,20 +1862,8 @@ export interface TagResourceRequest {
|
|
|
2186
1862
|
*/
|
|
2187
1863
|
tags: Tag[] | undefined;
|
|
2188
1864
|
}
|
|
2189
|
-
export declare namespace TagResourceRequest {
|
|
2190
|
-
/**
|
|
2191
|
-
* @internal
|
|
2192
|
-
*/
|
|
2193
|
-
const filterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2194
|
-
}
|
|
2195
1865
|
export interface TagResourceResponse {
|
|
2196
1866
|
}
|
|
2197
|
-
export declare namespace TagResourceResponse {
|
|
2198
|
-
/**
|
|
2199
|
-
* @internal
|
|
2200
|
-
*/
|
|
2201
|
-
const filterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2202
|
-
}
|
|
2203
1867
|
export interface UntagResourceRequest {
|
|
2204
1868
|
/**
|
|
2205
1869
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the resource share that you want to remove tags from. The tags are
|
|
@@ -2211,20 +1875,8 @@ export interface UntagResourceRequest {
|
|
|
2211
1875
|
*/
|
|
2212
1876
|
tagKeys: string[] | undefined;
|
|
2213
1877
|
}
|
|
2214
|
-
export declare namespace UntagResourceRequest {
|
|
2215
|
-
/**
|
|
2216
|
-
* @internal
|
|
2217
|
-
*/
|
|
2218
|
-
const filterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2219
|
-
}
|
|
2220
1878
|
export interface UntagResourceResponse {
|
|
2221
1879
|
}
|
|
2222
|
-
export declare namespace UntagResourceResponse {
|
|
2223
|
-
/**
|
|
2224
|
-
* @internal
|
|
2225
|
-
*/
|
|
2226
|
-
const filterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2227
|
-
}
|
|
2228
1880
|
export interface UpdateResourceShareRequest {
|
|
2229
1881
|
/**
|
|
2230
1882
|
* <p>Specifies the <a href="https://docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html">Amazon Resoure Name (ARN)</a> of the resource share that you want to modify.</p>
|
|
@@ -2251,12 +1903,6 @@ export interface UpdateResourceShareRequest {
|
|
|
2251
1903
|
*/
|
|
2252
1904
|
clientToken?: string;
|
|
2253
1905
|
}
|
|
2254
|
-
export declare namespace UpdateResourceShareRequest {
|
|
2255
|
-
/**
|
|
2256
|
-
* @internal
|
|
2257
|
-
*/
|
|
2258
|
-
const filterSensitiveLog: (obj: UpdateResourceShareRequest) => any;
|
|
2259
|
-
}
|
|
2260
1906
|
export interface UpdateResourceShareResponse {
|
|
2261
1907
|
/**
|
|
2262
1908
|
* <p>Information about the resource share.</p>
|
|
@@ -2270,9 +1916,243 @@ export interface UpdateResourceShareResponse {
|
|
|
2270
1916
|
*/
|
|
2271
1917
|
clientToken?: string;
|
|
2272
1918
|
}
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
1919
|
+
/**
|
|
1920
|
+
* @internal
|
|
1921
|
+
*/
|
|
1922
|
+
export declare const AcceptResourceShareInvitationRequestFilterSensitiveLog: (obj: AcceptResourceShareInvitationRequest) => any;
|
|
1923
|
+
/**
|
|
1924
|
+
* @internal
|
|
1925
|
+
*/
|
|
1926
|
+
export declare const ResourceShareAssociationFilterSensitiveLog: (obj: ResourceShareAssociation) => any;
|
|
1927
|
+
/**
|
|
1928
|
+
* @internal
|
|
1929
|
+
*/
|
|
1930
|
+
export declare const ResourceShareInvitationFilterSensitiveLog: (obj: ResourceShareInvitation) => any;
|
|
1931
|
+
/**
|
|
1932
|
+
* @internal
|
|
1933
|
+
*/
|
|
1934
|
+
export declare const AcceptResourceShareInvitationResponseFilterSensitiveLog: (obj: AcceptResourceShareInvitationResponse) => any;
|
|
1935
|
+
/**
|
|
1936
|
+
* @internal
|
|
1937
|
+
*/
|
|
1938
|
+
export declare const AssociateResourceShareRequestFilterSensitiveLog: (obj: AssociateResourceShareRequest) => any;
|
|
1939
|
+
/**
|
|
1940
|
+
* @internal
|
|
1941
|
+
*/
|
|
1942
|
+
export declare const AssociateResourceShareResponseFilterSensitiveLog: (obj: AssociateResourceShareResponse) => any;
|
|
1943
|
+
/**
|
|
1944
|
+
* @internal
|
|
1945
|
+
*/
|
|
1946
|
+
export declare const AssociateResourceSharePermissionRequestFilterSensitiveLog: (obj: AssociateResourceSharePermissionRequest) => any;
|
|
1947
|
+
/**
|
|
1948
|
+
* @internal
|
|
1949
|
+
*/
|
|
1950
|
+
export declare const AssociateResourceSharePermissionResponseFilterSensitiveLog: (obj: AssociateResourceSharePermissionResponse) => any;
|
|
1951
|
+
/**
|
|
1952
|
+
* @internal
|
|
1953
|
+
*/
|
|
1954
|
+
export declare const TagFilterSensitiveLog: (obj: Tag) => any;
|
|
1955
|
+
/**
|
|
1956
|
+
* @internal
|
|
1957
|
+
*/
|
|
1958
|
+
export declare const CreateResourceShareRequestFilterSensitiveLog: (obj: CreateResourceShareRequest) => any;
|
|
1959
|
+
/**
|
|
1960
|
+
* @internal
|
|
1961
|
+
*/
|
|
1962
|
+
export declare const ResourceShareFilterSensitiveLog: (obj: ResourceShare) => any;
|
|
1963
|
+
/**
|
|
1964
|
+
* @internal
|
|
1965
|
+
*/
|
|
1966
|
+
export declare const CreateResourceShareResponseFilterSensitiveLog: (obj: CreateResourceShareResponse) => any;
|
|
1967
|
+
/**
|
|
1968
|
+
* @internal
|
|
1969
|
+
*/
|
|
1970
|
+
export declare const DeleteResourceShareRequestFilterSensitiveLog: (obj: DeleteResourceShareRequest) => any;
|
|
1971
|
+
/**
|
|
1972
|
+
* @internal
|
|
1973
|
+
*/
|
|
1974
|
+
export declare const DeleteResourceShareResponseFilterSensitiveLog: (obj: DeleteResourceShareResponse) => any;
|
|
1975
|
+
/**
|
|
1976
|
+
* @internal
|
|
1977
|
+
*/
|
|
1978
|
+
export declare const DisassociateResourceShareRequestFilterSensitiveLog: (obj: DisassociateResourceShareRequest) => any;
|
|
1979
|
+
/**
|
|
1980
|
+
* @internal
|
|
1981
|
+
*/
|
|
1982
|
+
export declare const DisassociateResourceShareResponseFilterSensitiveLog: (obj: DisassociateResourceShareResponse) => any;
|
|
1983
|
+
/**
|
|
1984
|
+
* @internal
|
|
1985
|
+
*/
|
|
1986
|
+
export declare const DisassociateResourceSharePermissionRequestFilterSensitiveLog: (obj: DisassociateResourceSharePermissionRequest) => any;
|
|
1987
|
+
/**
|
|
1988
|
+
* @internal
|
|
1989
|
+
*/
|
|
1990
|
+
export declare const DisassociateResourceSharePermissionResponseFilterSensitiveLog: (obj: DisassociateResourceSharePermissionResponse) => any;
|
|
1991
|
+
/**
|
|
1992
|
+
* @internal
|
|
1993
|
+
*/
|
|
1994
|
+
export declare const EnableSharingWithAwsOrganizationRequestFilterSensitiveLog: (obj: EnableSharingWithAwsOrganizationRequest) => any;
|
|
1995
|
+
/**
|
|
1996
|
+
* @internal
|
|
1997
|
+
*/
|
|
1998
|
+
export declare const EnableSharingWithAwsOrganizationResponseFilterSensitiveLog: (obj: EnableSharingWithAwsOrganizationResponse) => any;
|
|
1999
|
+
/**
|
|
2000
|
+
* @internal
|
|
2001
|
+
*/
|
|
2002
|
+
export declare const GetPermissionRequestFilterSensitiveLog: (obj: GetPermissionRequest) => any;
|
|
2003
|
+
/**
|
|
2004
|
+
* @internal
|
|
2005
|
+
*/
|
|
2006
|
+
export declare const ResourceSharePermissionDetailFilterSensitiveLog: (obj: ResourceSharePermissionDetail) => any;
|
|
2007
|
+
/**
|
|
2008
|
+
* @internal
|
|
2009
|
+
*/
|
|
2010
|
+
export declare const GetPermissionResponseFilterSensitiveLog: (obj: GetPermissionResponse) => any;
|
|
2011
|
+
/**
|
|
2012
|
+
* @internal
|
|
2013
|
+
*/
|
|
2014
|
+
export declare const GetResourcePoliciesRequestFilterSensitiveLog: (obj: GetResourcePoliciesRequest) => any;
|
|
2015
|
+
/**
|
|
2016
|
+
* @internal
|
|
2017
|
+
*/
|
|
2018
|
+
export declare const GetResourcePoliciesResponseFilterSensitiveLog: (obj: GetResourcePoliciesResponse) => any;
|
|
2019
|
+
/**
|
|
2020
|
+
* @internal
|
|
2021
|
+
*/
|
|
2022
|
+
export declare const GetResourceShareAssociationsRequestFilterSensitiveLog: (obj: GetResourceShareAssociationsRequest) => any;
|
|
2023
|
+
/**
|
|
2024
|
+
* @internal
|
|
2025
|
+
*/
|
|
2026
|
+
export declare const GetResourceShareAssociationsResponseFilterSensitiveLog: (obj: GetResourceShareAssociationsResponse) => any;
|
|
2027
|
+
/**
|
|
2028
|
+
* @internal
|
|
2029
|
+
*/
|
|
2030
|
+
export declare const GetResourceShareInvitationsRequestFilterSensitiveLog: (obj: GetResourceShareInvitationsRequest) => any;
|
|
2031
|
+
/**
|
|
2032
|
+
* @internal
|
|
2033
|
+
*/
|
|
2034
|
+
export declare const GetResourceShareInvitationsResponseFilterSensitiveLog: (obj: GetResourceShareInvitationsResponse) => any;
|
|
2035
|
+
/**
|
|
2036
|
+
* @internal
|
|
2037
|
+
*/
|
|
2038
|
+
export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
|
|
2039
|
+
/**
|
|
2040
|
+
* @internal
|
|
2041
|
+
*/
|
|
2042
|
+
export declare const GetResourceSharesRequestFilterSensitiveLog: (obj: GetResourceSharesRequest) => any;
|
|
2043
|
+
/**
|
|
2044
|
+
* @internal
|
|
2045
|
+
*/
|
|
2046
|
+
export declare const GetResourceSharesResponseFilterSensitiveLog: (obj: GetResourceSharesResponse) => any;
|
|
2047
|
+
/**
|
|
2048
|
+
* @internal
|
|
2049
|
+
*/
|
|
2050
|
+
export declare const ListPendingInvitationResourcesRequestFilterSensitiveLog: (obj: ListPendingInvitationResourcesRequest) => any;
|
|
2051
|
+
/**
|
|
2052
|
+
* @internal
|
|
2053
|
+
*/
|
|
2054
|
+
export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
|
|
2055
|
+
/**
|
|
2056
|
+
* @internal
|
|
2057
|
+
*/
|
|
2058
|
+
export declare const ListPendingInvitationResourcesResponseFilterSensitiveLog: (obj: ListPendingInvitationResourcesResponse) => any;
|
|
2059
|
+
/**
|
|
2060
|
+
* @internal
|
|
2061
|
+
*/
|
|
2062
|
+
export declare const ListPermissionsRequestFilterSensitiveLog: (obj: ListPermissionsRequest) => any;
|
|
2063
|
+
/**
|
|
2064
|
+
* @internal
|
|
2065
|
+
*/
|
|
2066
|
+
export declare const ResourceSharePermissionSummaryFilterSensitiveLog: (obj: ResourceSharePermissionSummary) => any;
|
|
2067
|
+
/**
|
|
2068
|
+
* @internal
|
|
2069
|
+
*/
|
|
2070
|
+
export declare const ListPermissionsResponseFilterSensitiveLog: (obj: ListPermissionsResponse) => any;
|
|
2071
|
+
/**
|
|
2072
|
+
* @internal
|
|
2073
|
+
*/
|
|
2074
|
+
export declare const ListPermissionVersionsRequestFilterSensitiveLog: (obj: ListPermissionVersionsRequest) => any;
|
|
2075
|
+
/**
|
|
2076
|
+
* @internal
|
|
2077
|
+
*/
|
|
2078
|
+
export declare const ListPermissionVersionsResponseFilterSensitiveLog: (obj: ListPermissionVersionsResponse) => any;
|
|
2079
|
+
/**
|
|
2080
|
+
* @internal
|
|
2081
|
+
*/
|
|
2082
|
+
export declare const ListPrincipalsRequestFilterSensitiveLog: (obj: ListPrincipalsRequest) => any;
|
|
2083
|
+
/**
|
|
2084
|
+
* @internal
|
|
2085
|
+
*/
|
|
2086
|
+
export declare const PrincipalFilterSensitiveLog: (obj: Principal) => any;
|
|
2087
|
+
/**
|
|
2088
|
+
* @internal
|
|
2089
|
+
*/
|
|
2090
|
+
export declare const ListPrincipalsResponseFilterSensitiveLog: (obj: ListPrincipalsResponse) => any;
|
|
2091
|
+
/**
|
|
2092
|
+
* @internal
|
|
2093
|
+
*/
|
|
2094
|
+
export declare const ListResourcesRequestFilterSensitiveLog: (obj: ListResourcesRequest) => any;
|
|
2095
|
+
/**
|
|
2096
|
+
* @internal
|
|
2097
|
+
*/
|
|
2098
|
+
export declare const ListResourcesResponseFilterSensitiveLog: (obj: ListResourcesResponse) => any;
|
|
2099
|
+
/**
|
|
2100
|
+
* @internal
|
|
2101
|
+
*/
|
|
2102
|
+
export declare const ListResourceSharePermissionsRequestFilterSensitiveLog: (obj: ListResourceSharePermissionsRequest) => any;
|
|
2103
|
+
/**
|
|
2104
|
+
* @internal
|
|
2105
|
+
*/
|
|
2106
|
+
export declare const ListResourceSharePermissionsResponseFilterSensitiveLog: (obj: ListResourceSharePermissionsResponse) => any;
|
|
2107
|
+
/**
|
|
2108
|
+
* @internal
|
|
2109
|
+
*/
|
|
2110
|
+
export declare const ListResourceTypesRequestFilterSensitiveLog: (obj: ListResourceTypesRequest) => any;
|
|
2111
|
+
/**
|
|
2112
|
+
* @internal
|
|
2113
|
+
*/
|
|
2114
|
+
export declare const ServiceNameAndResourceTypeFilterSensitiveLog: (obj: ServiceNameAndResourceType) => any;
|
|
2115
|
+
/**
|
|
2116
|
+
* @internal
|
|
2117
|
+
*/
|
|
2118
|
+
export declare const ListResourceTypesResponseFilterSensitiveLog: (obj: ListResourceTypesResponse) => any;
|
|
2119
|
+
/**
|
|
2120
|
+
* @internal
|
|
2121
|
+
*/
|
|
2122
|
+
export declare const PromoteResourceShareCreatedFromPolicyRequestFilterSensitiveLog: (obj: PromoteResourceShareCreatedFromPolicyRequest) => any;
|
|
2123
|
+
/**
|
|
2124
|
+
* @internal
|
|
2125
|
+
*/
|
|
2126
|
+
export declare const PromoteResourceShareCreatedFromPolicyResponseFilterSensitiveLog: (obj: PromoteResourceShareCreatedFromPolicyResponse) => any;
|
|
2127
|
+
/**
|
|
2128
|
+
* @internal
|
|
2129
|
+
*/
|
|
2130
|
+
export declare const RejectResourceShareInvitationRequestFilterSensitiveLog: (obj: RejectResourceShareInvitationRequest) => any;
|
|
2131
|
+
/**
|
|
2132
|
+
* @internal
|
|
2133
|
+
*/
|
|
2134
|
+
export declare const RejectResourceShareInvitationResponseFilterSensitiveLog: (obj: RejectResourceShareInvitationResponse) => any;
|
|
2135
|
+
/**
|
|
2136
|
+
* @internal
|
|
2137
|
+
*/
|
|
2138
|
+
export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
|
|
2139
|
+
/**
|
|
2140
|
+
* @internal
|
|
2141
|
+
*/
|
|
2142
|
+
export declare const TagResourceResponseFilterSensitiveLog: (obj: TagResourceResponse) => any;
|
|
2143
|
+
/**
|
|
2144
|
+
* @internal
|
|
2145
|
+
*/
|
|
2146
|
+
export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
|
|
2147
|
+
/**
|
|
2148
|
+
* @internal
|
|
2149
|
+
*/
|
|
2150
|
+
export declare const UntagResourceResponseFilterSensitiveLog: (obj: UntagResourceResponse) => any;
|
|
2151
|
+
/**
|
|
2152
|
+
* @internal
|
|
2153
|
+
*/
|
|
2154
|
+
export declare const UpdateResourceShareRequestFilterSensitiveLog: (obj: UpdateResourceShareRequest) => any;
|
|
2155
|
+
/**
|
|
2156
|
+
* @internal
|
|
2157
|
+
*/
|
|
2158
|
+
export declare const UpdateResourceShareResponseFilterSensitiveLog: (obj: UpdateResourceShareResponse) => any;
|