@aws-sdk/client-ram 3.296.0 → 3.297.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-types/RAM.d.ts +26 -0
- package/dist-types/RAMClient.d.ts +24 -4
- package/dist-types/commands/AcceptResourceShareInvitationCommand.d.ts +16 -0
- package/dist-types/commands/AssociateResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/AssociateResourceSharePermissionCommand.d.ts +16 -0
- package/dist-types/commands/CreateResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/DeleteResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateResourceShareCommand.d.ts +16 -0
- package/dist-types/commands/DisassociateResourceSharePermissionCommand.d.ts +16 -0
- package/dist-types/commands/EnableSharingWithAwsOrganizationCommand.d.ts +16 -0
- package/dist-types/commands/GetPermissionCommand.d.ts +16 -0
- package/dist-types/commands/GetResourcePoliciesCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceShareAssociationsCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceShareInvitationsCommand.d.ts +16 -0
- package/dist-types/commands/GetResourceSharesCommand.d.ts +16 -0
- package/dist-types/commands/ListPendingInvitationResourcesCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionVersionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListPrincipalsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceSharePermissionsCommand.d.ts +16 -0
- package/dist-types/commands/ListResourceTypesCommand.d.ts +16 -0
- package/dist-types/commands/ListResourcesCommand.d.ts +16 -0
- package/dist-types/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +16 -0
- package/dist-types/commands/RejectResourceShareInvitationCommand.d.ts +16 -0
- package/dist-types/commands/TagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
- package/dist-types/commands/UpdateResourceShareCommand.d.ts +16 -0
- package/dist-types/models/RAMServiceException.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +209 -0
- package/dist-types/pagination/GetResourcePoliciesPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceShareAssociationsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceShareInvitationsPaginator.d.ts +3 -0
- package/dist-types/pagination/GetResourceSharesPaginator.d.ts +3 -0
- package/dist-types/pagination/Interfaces.d.ts +3 -0
- package/dist-types/pagination/ListPendingInvitationResourcesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionVersionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListPrincipalsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourceSharePermissionsPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourceTypesPaginator.d.ts +3 -0
- package/dist-types/pagination/ListResourcesPaginator.d.ts +3 -0
- package/package.json +3 -3
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
2
|
import { RAMServiceException as __BaseException } from "./RAMServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
*/
|
|
3
6
|
export interface AcceptResourceShareInvitationRequest {
|
|
4
7
|
/**
|
|
5
8
|
* <p>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 accept.</p>
|
|
@@ -17,10 +20,16 @@ export interface AcceptResourceShareInvitationRequest {
|
|
|
17
20
|
*/
|
|
18
21
|
clientToken?: string;
|
|
19
22
|
}
|
|
23
|
+
/**
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
20
26
|
export declare enum ResourceShareAssociationType {
|
|
21
27
|
PRINCIPAL = "PRINCIPAL",
|
|
22
28
|
RESOURCE = "RESOURCE"
|
|
23
29
|
}
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
*/
|
|
24
33
|
export declare enum ResourceShareAssociationStatus {
|
|
25
34
|
ASSOCIATED = "ASSOCIATED",
|
|
26
35
|
ASSOCIATING = "ASSOCIATING",
|
|
@@ -29,6 +38,7 @@ export declare enum ResourceShareAssociationStatus {
|
|
|
29
38
|
FAILED = "FAILED"
|
|
30
39
|
}
|
|
31
40
|
/**
|
|
41
|
+
* @public
|
|
32
42
|
* <p>Describes an association with a resource share and either a principal or a resource.</p>
|
|
33
43
|
*/
|
|
34
44
|
export interface ResourceShareAssociation {
|
|
@@ -95,6 +105,9 @@ export interface ResourceShareAssociation {
|
|
|
95
105
|
*/
|
|
96
106
|
external?: boolean;
|
|
97
107
|
}
|
|
108
|
+
/**
|
|
109
|
+
* @public
|
|
110
|
+
*/
|
|
98
111
|
export declare enum ResourceShareInvitationStatus {
|
|
99
112
|
ACCEPTED = "ACCEPTED",
|
|
100
113
|
EXPIRED = "EXPIRED",
|
|
@@ -102,6 +115,7 @@ export declare enum ResourceShareInvitationStatus {
|
|
|
102
115
|
REJECTED = "REJECTED"
|
|
103
116
|
}
|
|
104
117
|
/**
|
|
118
|
+
* @public
|
|
105
119
|
* <p>Describes an invitation for an Amazon Web Services account to join a resource share.</p>
|
|
106
120
|
*/
|
|
107
121
|
export interface ResourceShareInvitation {
|
|
@@ -144,6 +158,9 @@ export interface ResourceShareInvitation {
|
|
|
144
158
|
*/
|
|
145
159
|
receiverArn?: string;
|
|
146
160
|
}
|
|
161
|
+
/**
|
|
162
|
+
* @public
|
|
163
|
+
*/
|
|
147
164
|
export interface AcceptResourceShareInvitationResponse {
|
|
148
165
|
/**
|
|
149
166
|
* <p>An object that contains information about the specified invitation.</p>
|
|
@@ -158,6 +175,7 @@ export interface AcceptResourceShareInvitationResponse {
|
|
|
158
175
|
clientToken?: string;
|
|
159
176
|
}
|
|
160
177
|
/**
|
|
178
|
+
* @public
|
|
161
179
|
* <p>The client token input parameter was matched one used with a previous call to the
|
|
162
180
|
* operation, but at least one of the other input parameters is different from the previous
|
|
163
181
|
* call.</p>
|
|
@@ -171,6 +189,7 @@ export declare class IdempotentParameterMismatchException extends __BaseExceptio
|
|
|
171
189
|
constructor(opts: __ExceptionOptionType<IdempotentParameterMismatchException, __BaseException>);
|
|
172
190
|
}
|
|
173
191
|
/**
|
|
192
|
+
* @public
|
|
174
193
|
* <p>The client token is not valid.</p>
|
|
175
194
|
*/
|
|
176
195
|
export declare class InvalidClientTokenException extends __BaseException {
|
|
@@ -182,6 +201,7 @@ export declare class InvalidClientTokenException extends __BaseException {
|
|
|
182
201
|
constructor(opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>);
|
|
183
202
|
}
|
|
184
203
|
/**
|
|
204
|
+
* @public
|
|
185
205
|
* <p>The format of an Amazon Resource Name (ARN) is not valid.</p>
|
|
186
206
|
*/
|
|
187
207
|
export declare class MalformedArnException extends __BaseException {
|
|
@@ -193,6 +213,7 @@ export declare class MalformedArnException extends __BaseException {
|
|
|
193
213
|
constructor(opts: __ExceptionOptionType<MalformedArnException, __BaseException>);
|
|
194
214
|
}
|
|
195
215
|
/**
|
|
216
|
+
* @public
|
|
196
217
|
* <p>The requested operation is not permitted.</p>
|
|
197
218
|
*/
|
|
198
219
|
export declare class OperationNotPermittedException extends __BaseException {
|
|
@@ -204,6 +225,7 @@ export declare class OperationNotPermittedException extends __BaseException {
|
|
|
204
225
|
constructor(opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>);
|
|
205
226
|
}
|
|
206
227
|
/**
|
|
228
|
+
* @public
|
|
207
229
|
* <p>The specified invitation was already accepted.</p>
|
|
208
230
|
*/
|
|
209
231
|
export declare class ResourceShareInvitationAlreadyAcceptedException extends __BaseException {
|
|
@@ -215,6 +237,7 @@ export declare class ResourceShareInvitationAlreadyAcceptedException extends __B
|
|
|
215
237
|
constructor(opts: __ExceptionOptionType<ResourceShareInvitationAlreadyAcceptedException, __BaseException>);
|
|
216
238
|
}
|
|
217
239
|
/**
|
|
240
|
+
* @public
|
|
218
241
|
* <p>The specified invitation was already rejected.</p>
|
|
219
242
|
*/
|
|
220
243
|
export declare class ResourceShareInvitationAlreadyRejectedException extends __BaseException {
|
|
@@ -226,6 +249,7 @@ export declare class ResourceShareInvitationAlreadyRejectedException extends __B
|
|
|
226
249
|
constructor(opts: __ExceptionOptionType<ResourceShareInvitationAlreadyRejectedException, __BaseException>);
|
|
227
250
|
}
|
|
228
251
|
/**
|
|
252
|
+
* @public
|
|
229
253
|
* <p>The specified Amazon Resource Name (ARN) for an invitation was not found.</p>
|
|
230
254
|
*/
|
|
231
255
|
export declare class ResourceShareInvitationArnNotFoundException extends __BaseException {
|
|
@@ -237,6 +261,7 @@ export declare class ResourceShareInvitationArnNotFoundException extends __BaseE
|
|
|
237
261
|
constructor(opts: __ExceptionOptionType<ResourceShareInvitationArnNotFoundException, __BaseException>);
|
|
238
262
|
}
|
|
239
263
|
/**
|
|
264
|
+
* @public
|
|
240
265
|
* <p>The specified invitation is expired.</p>
|
|
241
266
|
*/
|
|
242
267
|
export declare class ResourceShareInvitationExpiredException extends __BaseException {
|
|
@@ -248,6 +273,7 @@ export declare class ResourceShareInvitationExpiredException extends __BaseExcep
|
|
|
248
273
|
constructor(opts: __ExceptionOptionType<ResourceShareInvitationExpiredException, __BaseException>);
|
|
249
274
|
}
|
|
250
275
|
/**
|
|
276
|
+
* @public
|
|
251
277
|
* <p>The service could not respond to the request due to an internal problem.</p>
|
|
252
278
|
*/
|
|
253
279
|
export declare class ServerInternalException extends __BaseException {
|
|
@@ -259,6 +285,7 @@ export declare class ServerInternalException extends __BaseException {
|
|
|
259
285
|
constructor(opts: __ExceptionOptionType<ServerInternalException, __BaseException>);
|
|
260
286
|
}
|
|
261
287
|
/**
|
|
288
|
+
* @public
|
|
262
289
|
* <p>The service is not available.</p>
|
|
263
290
|
*/
|
|
264
291
|
export declare class ServiceUnavailableException extends __BaseException {
|
|
@@ -269,6 +296,9 @@ export declare class ServiceUnavailableException extends __BaseException {
|
|
|
269
296
|
*/
|
|
270
297
|
constructor(opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>);
|
|
271
298
|
}
|
|
299
|
+
/**
|
|
300
|
+
* @public
|
|
301
|
+
*/
|
|
272
302
|
export interface AssociateResourceShareRequest {
|
|
273
303
|
/**
|
|
274
304
|
* <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 add principals or resources
|
|
@@ -331,6 +361,9 @@ export interface AssociateResourceShareRequest {
|
|
|
331
361
|
*/
|
|
332
362
|
clientToken?: string;
|
|
333
363
|
}
|
|
364
|
+
/**
|
|
365
|
+
* @public
|
|
366
|
+
*/
|
|
334
367
|
export interface AssociateResourceShareResponse {
|
|
335
368
|
/**
|
|
336
369
|
* <p>An array of objects that contain information about the associations.</p>
|
|
@@ -345,6 +378,7 @@ export interface AssociateResourceShareResponse {
|
|
|
345
378
|
clientToken?: string;
|
|
346
379
|
}
|
|
347
380
|
/**
|
|
381
|
+
* @public
|
|
348
382
|
* <p>A parameter is not valid.</p>
|
|
349
383
|
*/
|
|
350
384
|
export declare class InvalidParameterException extends __BaseException {
|
|
@@ -356,6 +390,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
356
390
|
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
357
391
|
}
|
|
358
392
|
/**
|
|
393
|
+
* @public
|
|
359
394
|
* <p>The requested state transition is not valid.</p>
|
|
360
395
|
*/
|
|
361
396
|
export declare class InvalidStateTransitionException extends __BaseException {
|
|
@@ -367,6 +402,7 @@ export declare class InvalidStateTransitionException extends __BaseException {
|
|
|
367
402
|
constructor(opts: __ExceptionOptionType<InvalidStateTransitionException, __BaseException>);
|
|
368
403
|
}
|
|
369
404
|
/**
|
|
405
|
+
* @public
|
|
370
406
|
* <p>This request would exceed the limit for resource shares for your account.</p>
|
|
371
407
|
*/
|
|
372
408
|
export declare class ResourceShareLimitExceededException extends __BaseException {
|
|
@@ -378,6 +414,7 @@ export declare class ResourceShareLimitExceededException extends __BaseException
|
|
|
378
414
|
constructor(opts: __ExceptionOptionType<ResourceShareLimitExceededException, __BaseException>);
|
|
379
415
|
}
|
|
380
416
|
/**
|
|
417
|
+
* @public
|
|
381
418
|
* <p>You exceeded the rate at which you are allowed to perform this operation. Please try
|
|
382
419
|
* again later.</p>
|
|
383
420
|
*/
|
|
@@ -390,6 +427,7 @@ export declare class ThrottlingException extends __BaseException {
|
|
|
390
427
|
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
391
428
|
}
|
|
392
429
|
/**
|
|
430
|
+
* @public
|
|
393
431
|
* <p>A specified resource was not found.</p>
|
|
394
432
|
*/
|
|
395
433
|
export declare class UnknownResourceException extends __BaseException {
|
|
@@ -400,6 +438,9 @@ export declare class UnknownResourceException extends __BaseException {
|
|
|
400
438
|
*/
|
|
401
439
|
constructor(opts: __ExceptionOptionType<UnknownResourceException, __BaseException>);
|
|
402
440
|
}
|
|
441
|
+
/**
|
|
442
|
+
* @public
|
|
443
|
+
*/
|
|
403
444
|
export interface AssociateResourceSharePermissionRequest {
|
|
404
445
|
/**
|
|
405
446
|
* <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 which you want to add or replace
|
|
@@ -444,6 +485,9 @@ export interface AssociateResourceSharePermissionRequest {
|
|
|
444
485
|
*/
|
|
445
486
|
permissionVersion?: number;
|
|
446
487
|
}
|
|
488
|
+
/**
|
|
489
|
+
* @public
|
|
490
|
+
*/
|
|
447
491
|
export interface AssociateResourceSharePermissionResponse {
|
|
448
492
|
/**
|
|
449
493
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -459,6 +503,7 @@ export interface AssociateResourceSharePermissionResponse {
|
|
|
459
503
|
clientToken?: string;
|
|
460
504
|
}
|
|
461
505
|
/**
|
|
506
|
+
* @public
|
|
462
507
|
* <p>A structure containing a tag. A tag is metadata that you can attach to your resources
|
|
463
508
|
* to help organize and categorize them. You can also use them to help you secure your
|
|
464
509
|
* resources. For more information, see <a href="https://docs.aws.amazon.com/IAM/latest/UserGuide/access_tags.html">Controlling access to Amazon Web Services resources
|
|
@@ -478,6 +523,9 @@ export interface Tag {
|
|
|
478
523
|
*/
|
|
479
524
|
value?: string;
|
|
480
525
|
}
|
|
526
|
+
/**
|
|
527
|
+
* @public
|
|
528
|
+
*/
|
|
481
529
|
export interface CreateResourceShareRequest {
|
|
482
530
|
/**
|
|
483
531
|
* <p>Specifies the name of the resource share.</p>
|
|
@@ -556,11 +604,17 @@ export interface CreateResourceShareRequest {
|
|
|
556
604
|
*/
|
|
557
605
|
permissionArns?: string[];
|
|
558
606
|
}
|
|
607
|
+
/**
|
|
608
|
+
* @public
|
|
609
|
+
*/
|
|
559
610
|
export declare enum ResourceShareFeatureSet {
|
|
560
611
|
CREATED_FROM_POLICY = "CREATED_FROM_POLICY",
|
|
561
612
|
PROMOTING_TO_STANDARD = "PROMOTING_TO_STANDARD",
|
|
562
613
|
STANDARD = "STANDARD"
|
|
563
614
|
}
|
|
615
|
+
/**
|
|
616
|
+
* @public
|
|
617
|
+
*/
|
|
564
618
|
export declare enum ResourceShareStatus {
|
|
565
619
|
ACTIVE = "ACTIVE",
|
|
566
620
|
DELETED = "DELETED",
|
|
@@ -569,6 +623,7 @@ export declare enum ResourceShareStatus {
|
|
|
569
623
|
PENDING = "PENDING"
|
|
570
624
|
}
|
|
571
625
|
/**
|
|
626
|
+
* @public
|
|
572
627
|
* <p>Describes a resource share in RAM.</p>
|
|
573
628
|
*/
|
|
574
629
|
export interface ResourceShare {
|
|
@@ -634,6 +689,9 @@ export interface ResourceShare {
|
|
|
634
689
|
*/
|
|
635
690
|
featureSet?: ResourceShareFeatureSet | string;
|
|
636
691
|
}
|
|
692
|
+
/**
|
|
693
|
+
* @public
|
|
694
|
+
*/
|
|
637
695
|
export interface CreateResourceShareResponse {
|
|
638
696
|
/**
|
|
639
697
|
* <p>An object with information about the new resource share.</p>
|
|
@@ -648,6 +706,7 @@ export interface CreateResourceShareResponse {
|
|
|
648
706
|
clientToken?: string;
|
|
649
707
|
}
|
|
650
708
|
/**
|
|
709
|
+
* @public
|
|
651
710
|
* <p>The specified tag key is a reserved word and can't be used.</p>
|
|
652
711
|
*/
|
|
653
712
|
export declare class TagPolicyViolationException extends __BaseException {
|
|
@@ -658,6 +717,9 @@ export declare class TagPolicyViolationException extends __BaseException {
|
|
|
658
717
|
*/
|
|
659
718
|
constructor(opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>);
|
|
660
719
|
}
|
|
720
|
+
/**
|
|
721
|
+
* @public
|
|
722
|
+
*/
|
|
661
723
|
export interface DeleteResourceShareRequest {
|
|
662
724
|
/**
|
|
663
725
|
* <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 delete.</p>
|
|
@@ -675,6 +737,9 @@ export interface DeleteResourceShareRequest {
|
|
|
675
737
|
*/
|
|
676
738
|
clientToken?: string;
|
|
677
739
|
}
|
|
740
|
+
/**
|
|
741
|
+
* @public
|
|
742
|
+
*/
|
|
678
743
|
export interface DeleteResourceShareResponse {
|
|
679
744
|
/**
|
|
680
745
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -689,6 +754,9 @@ export interface DeleteResourceShareResponse {
|
|
|
689
754
|
*/
|
|
690
755
|
clientToken?: string;
|
|
691
756
|
}
|
|
757
|
+
/**
|
|
758
|
+
* @public
|
|
759
|
+
*/
|
|
692
760
|
export interface DisassociateResourceShareRequest {
|
|
693
761
|
/**
|
|
694
762
|
* <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>
|
|
@@ -749,6 +817,9 @@ export interface DisassociateResourceShareRequest {
|
|
|
749
817
|
*/
|
|
750
818
|
clientToken?: string;
|
|
751
819
|
}
|
|
820
|
+
/**
|
|
821
|
+
* @public
|
|
822
|
+
*/
|
|
752
823
|
export interface DisassociateResourceShareResponse {
|
|
753
824
|
/**
|
|
754
825
|
* <p>An array of objects that contain information about the updated associations for this
|
|
@@ -763,6 +834,9 @@ export interface DisassociateResourceShareResponse {
|
|
|
763
834
|
*/
|
|
764
835
|
clientToken?: string;
|
|
765
836
|
}
|
|
837
|
+
/**
|
|
838
|
+
* @public
|
|
839
|
+
*/
|
|
766
840
|
export interface DisassociateResourceSharePermissionRequest {
|
|
767
841
|
/**
|
|
768
842
|
* <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>
|
|
@@ -785,6 +859,9 @@ export interface DisassociateResourceSharePermissionRequest {
|
|
|
785
859
|
*/
|
|
786
860
|
clientToken?: string;
|
|
787
861
|
}
|
|
862
|
+
/**
|
|
863
|
+
* @public
|
|
864
|
+
*/
|
|
788
865
|
export interface DisassociateResourceSharePermissionResponse {
|
|
789
866
|
/**
|
|
790
867
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -799,8 +876,14 @@ export interface DisassociateResourceSharePermissionResponse {
|
|
|
799
876
|
*/
|
|
800
877
|
clientToken?: string;
|
|
801
878
|
}
|
|
879
|
+
/**
|
|
880
|
+
* @public
|
|
881
|
+
*/
|
|
802
882
|
export interface EnableSharingWithAwsOrganizationRequest {
|
|
803
883
|
}
|
|
884
|
+
/**
|
|
885
|
+
* @public
|
|
886
|
+
*/
|
|
804
887
|
export interface EnableSharingWithAwsOrganizationResponse {
|
|
805
888
|
/**
|
|
806
889
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -808,6 +891,9 @@ export interface EnableSharingWithAwsOrganizationResponse {
|
|
|
808
891
|
*/
|
|
809
892
|
returnValue?: boolean;
|
|
810
893
|
}
|
|
894
|
+
/**
|
|
895
|
+
* @public
|
|
896
|
+
*/
|
|
811
897
|
export interface GetPermissionRequest {
|
|
812
898
|
/**
|
|
813
899
|
* <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.
|
|
@@ -822,6 +908,7 @@ export interface GetPermissionRequest {
|
|
|
822
908
|
permissionVersion?: number;
|
|
823
909
|
}
|
|
824
910
|
/**
|
|
911
|
+
* @public
|
|
825
912
|
* <p>Information about an RAM permission.</p>
|
|
826
913
|
*/
|
|
827
914
|
export interface ResourceSharePermissionDetail {
|
|
@@ -866,12 +953,18 @@ export interface ResourceSharePermissionDetail {
|
|
|
866
953
|
*/
|
|
867
954
|
isResourceTypeDefault?: boolean;
|
|
868
955
|
}
|
|
956
|
+
/**
|
|
957
|
+
* @public
|
|
958
|
+
*/
|
|
869
959
|
export interface GetPermissionResponse {
|
|
870
960
|
/**
|
|
871
961
|
* <p>An object that contains information about the permission.</p>
|
|
872
962
|
*/
|
|
873
963
|
permission?: ResourceSharePermissionDetail;
|
|
874
964
|
}
|
|
965
|
+
/**
|
|
966
|
+
* @public
|
|
967
|
+
*/
|
|
875
968
|
export interface GetResourcePoliciesRequest {
|
|
876
969
|
/**
|
|
877
970
|
* <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>
|
|
@@ -902,6 +995,9 @@ export interface GetResourcePoliciesRequest {
|
|
|
902
995
|
*/
|
|
903
996
|
maxResults?: number;
|
|
904
997
|
}
|
|
998
|
+
/**
|
|
999
|
+
* @public
|
|
1000
|
+
*/
|
|
905
1001
|
export interface GetResourcePoliciesResponse {
|
|
906
1002
|
/**
|
|
907
1003
|
* <p>An array of resource policy documents in JSON format.</p>
|
|
@@ -917,6 +1013,7 @@ export interface GetResourcePoliciesResponse {
|
|
|
917
1013
|
nextToken?: string;
|
|
918
1014
|
}
|
|
919
1015
|
/**
|
|
1016
|
+
* @public
|
|
920
1017
|
* <p>The specified value for <code>NextToken</code> is not valid.</p>
|
|
921
1018
|
*/
|
|
922
1019
|
export declare class InvalidNextTokenException extends __BaseException {
|
|
@@ -928,6 +1025,7 @@ export declare class InvalidNextTokenException extends __BaseException {
|
|
|
928
1025
|
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
929
1026
|
}
|
|
930
1027
|
/**
|
|
1028
|
+
* @public
|
|
931
1029
|
* <p>The specified Amazon Resource Name (ARN) was not found.</p>
|
|
932
1030
|
*/
|
|
933
1031
|
export declare class ResourceArnNotFoundException extends __BaseException {
|
|
@@ -938,6 +1036,9 @@ export declare class ResourceArnNotFoundException extends __BaseException {
|
|
|
938
1036
|
*/
|
|
939
1037
|
constructor(opts: __ExceptionOptionType<ResourceArnNotFoundException, __BaseException>);
|
|
940
1038
|
}
|
|
1039
|
+
/**
|
|
1040
|
+
* @public
|
|
1041
|
+
*/
|
|
941
1042
|
export interface GetResourceShareAssociationsRequest {
|
|
942
1043
|
/**
|
|
943
1044
|
* <p>Specifies whether you want to retrieve the associations that involve a specified
|
|
@@ -1000,6 +1101,9 @@ export interface GetResourceShareAssociationsRequest {
|
|
|
1000
1101
|
*/
|
|
1001
1102
|
maxResults?: number;
|
|
1002
1103
|
}
|
|
1104
|
+
/**
|
|
1105
|
+
* @public
|
|
1106
|
+
*/
|
|
1003
1107
|
export interface GetResourceShareAssociationsResponse {
|
|
1004
1108
|
/**
|
|
1005
1109
|
* <p>An array of objects that contain the details about the associations.</p>
|
|
@@ -1014,6 +1118,9 @@ export interface GetResourceShareAssociationsResponse {
|
|
|
1014
1118
|
*/
|
|
1015
1119
|
nextToken?: string;
|
|
1016
1120
|
}
|
|
1121
|
+
/**
|
|
1122
|
+
* @public
|
|
1123
|
+
*/
|
|
1017
1124
|
export interface GetResourceShareInvitationsRequest {
|
|
1018
1125
|
/**
|
|
1019
1126
|
* <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>
|
|
@@ -1046,6 +1153,9 @@ export interface GetResourceShareInvitationsRequest {
|
|
|
1046
1153
|
*/
|
|
1047
1154
|
maxResults?: number;
|
|
1048
1155
|
}
|
|
1156
|
+
/**
|
|
1157
|
+
* @public
|
|
1158
|
+
*/
|
|
1049
1159
|
export interface GetResourceShareInvitationsResponse {
|
|
1050
1160
|
/**
|
|
1051
1161
|
* <p>An array of objects that contain the details about the invitations.</p>
|
|
@@ -1061,6 +1171,7 @@ export interface GetResourceShareInvitationsResponse {
|
|
|
1061
1171
|
nextToken?: string;
|
|
1062
1172
|
}
|
|
1063
1173
|
/**
|
|
1174
|
+
* @public
|
|
1064
1175
|
* <p>The specified value for <code>MaxResults</code> is not valid.</p>
|
|
1065
1176
|
*/
|
|
1066
1177
|
export declare class InvalidMaxResultsException extends __BaseException {
|
|
@@ -1071,11 +1182,15 @@ export declare class InvalidMaxResultsException extends __BaseException {
|
|
|
1071
1182
|
*/
|
|
1072
1183
|
constructor(opts: __ExceptionOptionType<InvalidMaxResultsException, __BaseException>);
|
|
1073
1184
|
}
|
|
1185
|
+
/**
|
|
1186
|
+
* @public
|
|
1187
|
+
*/
|
|
1074
1188
|
export declare enum ResourceOwner {
|
|
1075
1189
|
OTHER_ACCOUNTS = "OTHER-ACCOUNTS",
|
|
1076
1190
|
SELF = "SELF"
|
|
1077
1191
|
}
|
|
1078
1192
|
/**
|
|
1193
|
+
* @public
|
|
1079
1194
|
* <p>A tag key and optional list of possible values that you can use to filter results for
|
|
1080
1195
|
* tagged resources.</p>
|
|
1081
1196
|
*/
|
|
@@ -1090,6 +1205,9 @@ export interface TagFilter {
|
|
|
1090
1205
|
*/
|
|
1091
1206
|
tagValues?: string[];
|
|
1092
1207
|
}
|
|
1208
|
+
/**
|
|
1209
|
+
* @public
|
|
1210
|
+
*/
|
|
1093
1211
|
export interface GetResourceSharesRequest {
|
|
1094
1212
|
/**
|
|
1095
1213
|
* <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>
|
|
@@ -1157,6 +1275,9 @@ export interface GetResourceSharesRequest {
|
|
|
1157
1275
|
*/
|
|
1158
1276
|
permissionArn?: string;
|
|
1159
1277
|
}
|
|
1278
|
+
/**
|
|
1279
|
+
* @public
|
|
1280
|
+
*/
|
|
1160
1281
|
export interface GetResourceSharesResponse {
|
|
1161
1282
|
/**
|
|
1162
1283
|
* <p>An array of objects that contain the information about the resource shares.</p>
|
|
@@ -1171,11 +1292,17 @@ export interface GetResourceSharesResponse {
|
|
|
1171
1292
|
*/
|
|
1172
1293
|
nextToken?: string;
|
|
1173
1294
|
}
|
|
1295
|
+
/**
|
|
1296
|
+
* @public
|
|
1297
|
+
*/
|
|
1174
1298
|
export declare enum ResourceRegionScopeFilter {
|
|
1175
1299
|
ALL = "ALL",
|
|
1176
1300
|
GLOBAL = "GLOBAL",
|
|
1177
1301
|
REGIONAL = "REGIONAL"
|
|
1178
1302
|
}
|
|
1303
|
+
/**
|
|
1304
|
+
* @public
|
|
1305
|
+
*/
|
|
1179
1306
|
export interface ListPendingInvitationResourcesRequest {
|
|
1180
1307
|
/**
|
|
1181
1308
|
* <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. You can use <a>GetResourceShareInvitations</a> to find the ARN of the invitation.</p>
|
|
@@ -1225,10 +1352,16 @@ export interface ListPendingInvitationResourcesRequest {
|
|
|
1225
1352
|
*/
|
|
1226
1353
|
resourceRegionScope?: ResourceRegionScopeFilter | string;
|
|
1227
1354
|
}
|
|
1355
|
+
/**
|
|
1356
|
+
* @public
|
|
1357
|
+
*/
|
|
1228
1358
|
export declare enum ResourceRegionScope {
|
|
1229
1359
|
GLOBAL = "GLOBAL",
|
|
1230
1360
|
REGIONAL = "REGIONAL"
|
|
1231
1361
|
}
|
|
1362
|
+
/**
|
|
1363
|
+
* @public
|
|
1364
|
+
*/
|
|
1232
1365
|
export declare enum ResourceStatus {
|
|
1233
1366
|
AVAILABLE = "AVAILABLE",
|
|
1234
1367
|
LIMIT_EXCEEDED = "LIMIT_EXCEEDED",
|
|
@@ -1237,6 +1370,7 @@ export declare enum ResourceStatus {
|
|
|
1237
1370
|
ZONAL_RESOURCE_INACCESSIBLE = "ZONAL_RESOURCE_INACCESSIBLE"
|
|
1238
1371
|
}
|
|
1239
1372
|
/**
|
|
1373
|
+
* @public
|
|
1240
1374
|
* <p>Describes a resource associated with a resource share in RAM.</p>
|
|
1241
1375
|
*/
|
|
1242
1376
|
export interface Resource {
|
|
@@ -1293,6 +1427,9 @@ export interface Resource {
|
|
|
1293
1427
|
*/
|
|
1294
1428
|
resourceRegionScope?: ResourceRegionScope | string;
|
|
1295
1429
|
}
|
|
1430
|
+
/**
|
|
1431
|
+
* @public
|
|
1432
|
+
*/
|
|
1296
1433
|
export interface ListPendingInvitationResourcesResponse {
|
|
1297
1434
|
/**
|
|
1298
1435
|
* <p>An array of objects that contain the information about the resources included the
|
|
@@ -1309,6 +1446,7 @@ export interface ListPendingInvitationResourcesResponse {
|
|
|
1309
1446
|
nextToken?: string;
|
|
1310
1447
|
}
|
|
1311
1448
|
/**
|
|
1449
|
+
* @public
|
|
1312
1450
|
* <p>A required input parameter is missing.</p>
|
|
1313
1451
|
*/
|
|
1314
1452
|
export declare class MissingRequiredParameterException extends __BaseException {
|
|
@@ -1319,6 +1457,9 @@ export declare class MissingRequiredParameterException extends __BaseException {
|
|
|
1319
1457
|
*/
|
|
1320
1458
|
constructor(opts: __ExceptionOptionType<MissingRequiredParameterException, __BaseException>);
|
|
1321
1459
|
}
|
|
1460
|
+
/**
|
|
1461
|
+
* @public
|
|
1462
|
+
*/
|
|
1322
1463
|
export interface ListPermissionsRequest {
|
|
1323
1464
|
/**
|
|
1324
1465
|
* <p>Specifies that you want to list permissions for only the specified resource type. For
|
|
@@ -1349,6 +1490,7 @@ export interface ListPermissionsRequest {
|
|
|
1349
1490
|
maxResults?: number;
|
|
1350
1491
|
}
|
|
1351
1492
|
/**
|
|
1493
|
+
* @public
|
|
1352
1494
|
* <p>Information about an RAM permission that is associated with a resource share and any of its
|
|
1353
1495
|
* resources of a specified type.</p>
|
|
1354
1496
|
*/
|
|
@@ -1392,6 +1534,9 @@ export interface ResourceSharePermissionSummary {
|
|
|
1392
1534
|
*/
|
|
1393
1535
|
isResourceTypeDefault?: boolean;
|
|
1394
1536
|
}
|
|
1537
|
+
/**
|
|
1538
|
+
* @public
|
|
1539
|
+
*/
|
|
1395
1540
|
export interface ListPermissionsResponse {
|
|
1396
1541
|
/**
|
|
1397
1542
|
* <p>An array of objects with information about the permissions.</p>
|
|
@@ -1406,6 +1551,9 @@ export interface ListPermissionsResponse {
|
|
|
1406
1551
|
*/
|
|
1407
1552
|
nextToken?: string;
|
|
1408
1553
|
}
|
|
1554
|
+
/**
|
|
1555
|
+
* @public
|
|
1556
|
+
*/
|
|
1409
1557
|
export interface ListPermissionVersionsRequest {
|
|
1410
1558
|
/**
|
|
1411
1559
|
* <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
|
|
@@ -1434,6 +1582,9 @@ export interface ListPermissionVersionsRequest {
|
|
|
1434
1582
|
*/
|
|
1435
1583
|
maxResults?: number;
|
|
1436
1584
|
}
|
|
1585
|
+
/**
|
|
1586
|
+
* @public
|
|
1587
|
+
*/
|
|
1437
1588
|
export interface ListPermissionVersionsResponse {
|
|
1438
1589
|
/**
|
|
1439
1590
|
* <p>An array of objects that contain details for each of the available versions.</p>
|
|
@@ -1448,6 +1599,9 @@ export interface ListPermissionVersionsResponse {
|
|
|
1448
1599
|
*/
|
|
1449
1600
|
nextToken?: string;
|
|
1450
1601
|
}
|
|
1602
|
+
/**
|
|
1603
|
+
* @public
|
|
1604
|
+
*/
|
|
1451
1605
|
export interface ListPrincipalsRequest {
|
|
1452
1606
|
/**
|
|
1453
1607
|
* <p>Specifies that you want to list information for only resource shares that match the
|
|
@@ -1545,6 +1699,7 @@ export interface ListPrincipalsRequest {
|
|
|
1545
1699
|
maxResults?: number;
|
|
1546
1700
|
}
|
|
1547
1701
|
/**
|
|
1702
|
+
* @public
|
|
1548
1703
|
* <p>Describes a principal for use with Resource Access Manager.</p>
|
|
1549
1704
|
*/
|
|
1550
1705
|
export interface Principal {
|
|
@@ -1570,6 +1725,9 @@ export interface Principal {
|
|
|
1570
1725
|
*/
|
|
1571
1726
|
external?: boolean;
|
|
1572
1727
|
}
|
|
1728
|
+
/**
|
|
1729
|
+
* @public
|
|
1730
|
+
*/
|
|
1573
1731
|
export interface ListPrincipalsResponse {
|
|
1574
1732
|
/**
|
|
1575
1733
|
* <p>An array of objects that contain the details about the principals.</p>
|
|
@@ -1585,6 +1743,7 @@ export interface ListPrincipalsResponse {
|
|
|
1585
1743
|
nextToken?: string;
|
|
1586
1744
|
}
|
|
1587
1745
|
/**
|
|
1746
|
+
* @public
|
|
1588
1747
|
* <p>The specified resource type is not valid.</p>
|
|
1589
1748
|
*/
|
|
1590
1749
|
export declare class InvalidResourceTypeException extends __BaseException {
|
|
@@ -1595,6 +1754,9 @@ export declare class InvalidResourceTypeException extends __BaseException {
|
|
|
1595
1754
|
*/
|
|
1596
1755
|
constructor(opts: __ExceptionOptionType<InvalidResourceTypeException, __BaseException>);
|
|
1597
1756
|
}
|
|
1757
|
+
/**
|
|
1758
|
+
* @public
|
|
1759
|
+
*/
|
|
1598
1760
|
export interface ListResourcesRequest {
|
|
1599
1761
|
/**
|
|
1600
1762
|
* <p>Specifies that you want to list only the resource shares that match the following:</p>
|
|
@@ -1681,6 +1843,9 @@ export interface ListResourcesRequest {
|
|
|
1681
1843
|
*/
|
|
1682
1844
|
resourceRegionScope?: ResourceRegionScopeFilter | string;
|
|
1683
1845
|
}
|
|
1846
|
+
/**
|
|
1847
|
+
* @public
|
|
1848
|
+
*/
|
|
1684
1849
|
export interface ListResourcesResponse {
|
|
1685
1850
|
/**
|
|
1686
1851
|
* <p>An array of objects that contain information about the resources.</p>
|
|
@@ -1695,6 +1860,9 @@ export interface ListResourcesResponse {
|
|
|
1695
1860
|
*/
|
|
1696
1861
|
nextToken?: string;
|
|
1697
1862
|
}
|
|
1863
|
+
/**
|
|
1864
|
+
* @public
|
|
1865
|
+
*/
|
|
1698
1866
|
export interface ListResourceSharePermissionsRequest {
|
|
1699
1867
|
/**
|
|
1700
1868
|
* <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
|
|
@@ -1722,6 +1890,9 @@ export interface ListResourceSharePermissionsRequest {
|
|
|
1722
1890
|
*/
|
|
1723
1891
|
maxResults?: number;
|
|
1724
1892
|
}
|
|
1893
|
+
/**
|
|
1894
|
+
* @public
|
|
1895
|
+
*/
|
|
1725
1896
|
export interface ListResourceSharePermissionsResponse {
|
|
1726
1897
|
/**
|
|
1727
1898
|
* <p>An array of objects that describe the permissions associated with the resource share.</p>
|
|
@@ -1736,6 +1907,9 @@ export interface ListResourceSharePermissionsResponse {
|
|
|
1736
1907
|
*/
|
|
1737
1908
|
nextToken?: string;
|
|
1738
1909
|
}
|
|
1910
|
+
/**
|
|
1911
|
+
* @public
|
|
1912
|
+
*/
|
|
1739
1913
|
export interface ListResourceTypesRequest {
|
|
1740
1914
|
/**
|
|
1741
1915
|
* <p>Specifies that you want to receive the next page of results. Valid
|
|
@@ -1782,6 +1956,7 @@ export interface ListResourceTypesRequest {
|
|
|
1782
1956
|
resourceRegionScope?: ResourceRegionScopeFilter | string;
|
|
1783
1957
|
}
|
|
1784
1958
|
/**
|
|
1959
|
+
* @public
|
|
1785
1960
|
* <p>Information about a shareable resource type and the Amazon Web Services service to which resources
|
|
1786
1961
|
* of that type belong.</p>
|
|
1787
1962
|
*/
|
|
@@ -1812,6 +1987,9 @@ export interface ServiceNameAndResourceType {
|
|
|
1812
1987
|
*/
|
|
1813
1988
|
resourceRegionScope?: ResourceRegionScope | string;
|
|
1814
1989
|
}
|
|
1990
|
+
/**
|
|
1991
|
+
* @public
|
|
1992
|
+
*/
|
|
1815
1993
|
export interface ListResourceTypesResponse {
|
|
1816
1994
|
/**
|
|
1817
1995
|
* <p>An array of objects that contain information about the resource types that can be
|
|
@@ -1827,12 +2005,18 @@ export interface ListResourceTypesResponse {
|
|
|
1827
2005
|
*/
|
|
1828
2006
|
nextToken?: string;
|
|
1829
2007
|
}
|
|
2008
|
+
/**
|
|
2009
|
+
* @public
|
|
2010
|
+
*/
|
|
1830
2011
|
export interface PromoteResourceShareCreatedFromPolicyRequest {
|
|
1831
2012
|
/**
|
|
1832
2013
|
* <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>
|
|
1833
2014
|
*/
|
|
1834
2015
|
resourceShareArn: string | undefined;
|
|
1835
2016
|
}
|
|
2017
|
+
/**
|
|
2018
|
+
* @public
|
|
2019
|
+
*/
|
|
1836
2020
|
export interface PromoteResourceShareCreatedFromPolicyResponse {
|
|
1837
2021
|
/**
|
|
1838
2022
|
* <p>A return value of <code>true</code> indicates that the request succeeded.
|
|
@@ -1840,6 +2024,9 @@ export interface PromoteResourceShareCreatedFromPolicyResponse {
|
|
|
1840
2024
|
*/
|
|
1841
2025
|
returnValue?: boolean;
|
|
1842
2026
|
}
|
|
2027
|
+
/**
|
|
2028
|
+
* @public
|
|
2029
|
+
*/
|
|
1843
2030
|
export interface RejectResourceShareInvitationRequest {
|
|
1844
2031
|
/**
|
|
1845
2032
|
* <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>
|
|
@@ -1857,6 +2044,9 @@ export interface RejectResourceShareInvitationRequest {
|
|
|
1857
2044
|
*/
|
|
1858
2045
|
clientToken?: string;
|
|
1859
2046
|
}
|
|
2047
|
+
/**
|
|
2048
|
+
* @public
|
|
2049
|
+
*/
|
|
1860
2050
|
export interface RejectResourceShareInvitationResponse {
|
|
1861
2051
|
/**
|
|
1862
2052
|
* <p>An object that contains the details about the rejected invitation.</p>
|
|
@@ -1871,6 +2061,7 @@ export interface RejectResourceShareInvitationResponse {
|
|
|
1871
2061
|
clientToken?: string;
|
|
1872
2062
|
}
|
|
1873
2063
|
/**
|
|
2064
|
+
* @public
|
|
1874
2065
|
* <p>This request would exceed the limit for tags for your account.</p>
|
|
1875
2066
|
*/
|
|
1876
2067
|
export declare class TagLimitExceededException extends __BaseException {
|
|
@@ -1881,6 +2072,9 @@ export declare class TagLimitExceededException extends __BaseException {
|
|
|
1881
2072
|
*/
|
|
1882
2073
|
constructor(opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>);
|
|
1883
2074
|
}
|
|
2075
|
+
/**
|
|
2076
|
+
* @public
|
|
2077
|
+
*/
|
|
1884
2078
|
export interface TagResourceRequest {
|
|
1885
2079
|
/**
|
|
1886
2080
|
* <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 add tags to.</p>
|
|
@@ -1892,8 +2086,14 @@ export interface TagResourceRequest {
|
|
|
1892
2086
|
*/
|
|
1893
2087
|
tags: Tag[] | undefined;
|
|
1894
2088
|
}
|
|
2089
|
+
/**
|
|
2090
|
+
* @public
|
|
2091
|
+
*/
|
|
1895
2092
|
export interface TagResourceResponse {
|
|
1896
2093
|
}
|
|
2094
|
+
/**
|
|
2095
|
+
* @public
|
|
2096
|
+
*/
|
|
1897
2097
|
export interface UntagResourceRequest {
|
|
1898
2098
|
/**
|
|
1899
2099
|
* <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
|
|
@@ -1905,8 +2105,14 @@ export interface UntagResourceRequest {
|
|
|
1905
2105
|
*/
|
|
1906
2106
|
tagKeys: string[] | undefined;
|
|
1907
2107
|
}
|
|
2108
|
+
/**
|
|
2109
|
+
* @public
|
|
2110
|
+
*/
|
|
1908
2111
|
export interface UntagResourceResponse {
|
|
1909
2112
|
}
|
|
2113
|
+
/**
|
|
2114
|
+
* @public
|
|
2115
|
+
*/
|
|
1910
2116
|
export interface UpdateResourceShareRequest {
|
|
1911
2117
|
/**
|
|
1912
2118
|
* <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>
|
|
@@ -1933,6 +2139,9 @@ export interface UpdateResourceShareRequest {
|
|
|
1933
2139
|
*/
|
|
1934
2140
|
clientToken?: string;
|
|
1935
2141
|
}
|
|
2142
|
+
/**
|
|
2143
|
+
* @public
|
|
2144
|
+
*/
|
|
1936
2145
|
export interface UpdateResourceShareResponse {
|
|
1937
2146
|
/**
|
|
1938
2147
|
* <p>Information about the resource share.</p>
|