@aws-sdk/client-ram 3.170.0 → 3.178.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.
Files changed (38) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  3. package/dist-types/runtimeConfig.d.ts +1 -1
  4. package/dist-types/runtimeConfig.native.d.ts +1 -1
  5. package/dist-types/ts3.4/RAM.d.ts +0 -25
  6. package/dist-types/ts3.4/RAMClient.d.ts +0 -25
  7. package/dist-types/ts3.4/commands/AcceptResourceShareInvitationCommand.d.ts +0 -2
  8. package/dist-types/ts3.4/commands/AssociateResourceShareCommand.d.ts +0 -2
  9. package/dist-types/ts3.4/commands/AssociateResourceSharePermissionCommand.d.ts +0 -2
  10. package/dist-types/ts3.4/commands/CreateResourceShareCommand.d.ts +0 -2
  11. package/dist-types/ts3.4/commands/DeleteResourceShareCommand.d.ts +0 -2
  12. package/dist-types/ts3.4/commands/DisassociateResourceShareCommand.d.ts +0 -2
  13. package/dist-types/ts3.4/commands/DisassociateResourceSharePermissionCommand.d.ts +0 -2
  14. package/dist-types/ts3.4/commands/EnableSharingWithAwsOrganizationCommand.d.ts +0 -2
  15. package/dist-types/ts3.4/commands/GetPermissionCommand.d.ts +0 -2
  16. package/dist-types/ts3.4/commands/GetResourcePoliciesCommand.d.ts +0 -2
  17. package/dist-types/ts3.4/commands/GetResourceShareAssociationsCommand.d.ts +0 -2
  18. package/dist-types/ts3.4/commands/GetResourceShareInvitationsCommand.d.ts +0 -2
  19. package/dist-types/ts3.4/commands/GetResourceSharesCommand.d.ts +0 -2
  20. package/dist-types/ts3.4/commands/ListPendingInvitationResourcesCommand.d.ts +0 -2
  21. package/dist-types/ts3.4/commands/ListPermissionVersionsCommand.d.ts +0 -2
  22. package/dist-types/ts3.4/commands/ListPermissionsCommand.d.ts +0 -2
  23. package/dist-types/ts3.4/commands/ListPrincipalsCommand.d.ts +0 -2
  24. package/dist-types/ts3.4/commands/ListResourceSharePermissionsCommand.d.ts +0 -2
  25. package/dist-types/ts3.4/commands/ListResourceTypesCommand.d.ts +0 -2
  26. package/dist-types/ts3.4/commands/ListResourcesCommand.d.ts +0 -2
  27. package/dist-types/ts3.4/commands/PromoteResourceShareCreatedFromPolicyCommand.d.ts +0 -2
  28. package/dist-types/ts3.4/commands/RejectResourceShareInvitationCommand.d.ts +0 -2
  29. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +0 -2
  30. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +0 -2
  31. package/dist-types/ts3.4/commands/UpdateResourceShareCommand.d.ts +0 -2
  32. package/dist-types/ts3.4/models/RAMServiceException.d.ts +0 -1
  33. package/dist-types/ts3.4/models/models_0.d.ts +0 -261
  34. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +3 -2
  35. package/dist-types/ts3.4/runtimeConfig.d.ts +3 -2
  36. package/dist-types/ts3.4/runtimeConfig.native.d.ts +3 -2
  37. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +0 -1
  38. package/package.json +26 -26
@@ -2,7 +2,6 @@ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-cl
2
2
  import { RAMServiceException as __BaseException } from "./RAMServiceException";
3
3
  export interface AcceptResourceShareInvitationRequest {
4
4
  resourceShareInvitationArn: string | undefined;
5
-
6
5
  clientToken?: string;
7
6
  }
8
7
  export declare type ResourceShareAssociationType = "PRINCIPAL" | "RESOURCE";
@@ -12,24 +11,15 @@ export declare type ResourceShareAssociationStatus =
12
11
  | "DISASSOCIATED"
13
12
  | "DISASSOCIATING"
14
13
  | "FAILED";
15
-
16
14
  export interface ResourceShareAssociation {
17
15
  resourceShareArn?: string;
18
-
19
16
  resourceShareName?: string;
20
-
21
17
  associatedEntity?: string;
22
-
23
18
  associationType?: ResourceShareAssociationType | string;
24
-
25
19
  status?: ResourceShareAssociationStatus | string;
26
-
27
20
  statusMessage?: string;
28
-
29
21
  creationTime?: Date;
30
-
31
22
  lastUpdatedTime?: Date;
32
-
33
23
  external?: boolean;
34
24
  }
35
25
  export declare type ResourceShareInvitationStatus =
@@ -37,36 +27,24 @@ export declare type ResourceShareInvitationStatus =
37
27
  | "EXPIRED"
38
28
  | "PENDING"
39
29
  | "REJECTED";
40
-
41
30
  export interface ResourceShareInvitation {
42
31
  resourceShareInvitationArn?: string;
43
-
44
32
  resourceShareName?: string;
45
-
46
33
  resourceShareArn?: string;
47
-
48
34
  senderAccountId?: string;
49
-
50
35
  receiverAccountId?: string;
51
-
52
36
  invitationTimestamp?: Date;
53
-
54
37
  status?: ResourceShareInvitationStatus | string;
55
-
56
38
  resourceShareAssociations?: ResourceShareAssociation[];
57
-
58
39
  receiverArn?: string;
59
40
  }
60
41
  export interface AcceptResourceShareInvitationResponse {
61
42
  resourceShareInvitation?: ResourceShareInvitation;
62
-
63
43
  clientToken?: string;
64
44
  }
65
-
66
45
  export declare class IdempotentParameterMismatchException extends __BaseException {
67
46
  readonly name: "IdempotentParameterMismatchException";
68
47
  readonly $fault: "client";
69
-
70
48
  constructor(
71
49
  opts: __ExceptionOptionType<
72
50
  IdempotentParameterMismatchException,
@@ -74,38 +52,30 @@ export declare class IdempotentParameterMismatchException extends __BaseExceptio
74
52
  >
75
53
  );
76
54
  }
77
-
78
55
  export declare class InvalidClientTokenException extends __BaseException {
79
56
  readonly name: "InvalidClientTokenException";
80
57
  readonly $fault: "client";
81
-
82
58
  constructor(
83
59
  opts: __ExceptionOptionType<InvalidClientTokenException, __BaseException>
84
60
  );
85
61
  }
86
-
87
62
  export declare class MalformedArnException extends __BaseException {
88
63
  readonly name: "MalformedArnException";
89
64
  readonly $fault: "client";
90
-
91
65
  constructor(
92
66
  opts: __ExceptionOptionType<MalformedArnException, __BaseException>
93
67
  );
94
68
  }
95
-
96
69
  export declare class OperationNotPermittedException extends __BaseException {
97
70
  readonly name: "OperationNotPermittedException";
98
71
  readonly $fault: "client";
99
-
100
72
  constructor(
101
73
  opts: __ExceptionOptionType<OperationNotPermittedException, __BaseException>
102
74
  );
103
75
  }
104
-
105
76
  export declare class ResourceShareInvitationAlreadyAcceptedException extends __BaseException {
106
77
  readonly name: "ResourceShareInvitationAlreadyAcceptedException";
107
78
  readonly $fault: "client";
108
-
109
79
  constructor(
110
80
  opts: __ExceptionOptionType<
111
81
  ResourceShareInvitationAlreadyAcceptedException,
@@ -113,11 +83,9 @@ export declare class ResourceShareInvitationAlreadyAcceptedException extends __B
113
83
  >
114
84
  );
115
85
  }
116
-
117
86
  export declare class ResourceShareInvitationAlreadyRejectedException extends __BaseException {
118
87
  readonly name: "ResourceShareInvitationAlreadyRejectedException";
119
88
  readonly $fault: "client";
120
-
121
89
  constructor(
122
90
  opts: __ExceptionOptionType<
123
91
  ResourceShareInvitationAlreadyRejectedException,
@@ -125,11 +93,9 @@ export declare class ResourceShareInvitationAlreadyRejectedException extends __B
125
93
  >
126
94
  );
127
95
  }
128
-
129
96
  export declare class ResourceShareInvitationArnNotFoundException extends __BaseException {
130
97
  readonly name: "ResourceShareInvitationArnNotFoundException";
131
98
  readonly $fault: "client";
132
-
133
99
  constructor(
134
100
  opts: __ExceptionOptionType<
135
101
  ResourceShareInvitationArnNotFoundException,
@@ -137,11 +103,9 @@ export declare class ResourceShareInvitationArnNotFoundException extends __BaseE
137
103
  >
138
104
  );
139
105
  }
140
-
141
106
  export declare class ResourceShareInvitationExpiredException extends __BaseException {
142
107
  readonly name: "ResourceShareInvitationExpiredException";
143
108
  readonly $fault: "client";
144
-
145
109
  constructor(
146
110
  opts: __ExceptionOptionType<
147
111
  ResourceShareInvitationExpiredException,
@@ -149,52 +113,40 @@ export declare class ResourceShareInvitationExpiredException extends __BaseExcep
149
113
  >
150
114
  );
151
115
  }
152
-
153
116
  export declare class ServerInternalException extends __BaseException {
154
117
  readonly name: "ServerInternalException";
155
118
  readonly $fault: "server";
156
-
157
119
  constructor(
158
120
  opts: __ExceptionOptionType<ServerInternalException, __BaseException>
159
121
  );
160
122
  }
161
-
162
123
  export declare class ServiceUnavailableException extends __BaseException {
163
124
  readonly name: "ServiceUnavailableException";
164
125
  readonly $fault: "server";
165
-
166
126
  constructor(
167
127
  opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
168
128
  );
169
129
  }
170
130
  export interface AssociateResourceShareRequest {
171
131
  resourceShareArn: string | undefined;
172
-
173
132
  resourceArns?: string[];
174
-
175
133
  principals?: string[];
176
-
177
134
  clientToken?: string;
178
135
  }
179
136
  export interface AssociateResourceShareResponse {
180
137
  resourceShareAssociations?: ResourceShareAssociation[];
181
-
182
138
  clientToken?: string;
183
139
  }
184
-
185
140
  export declare class InvalidParameterException extends __BaseException {
186
141
  readonly name: "InvalidParameterException";
187
142
  readonly $fault: "client";
188
-
189
143
  constructor(
190
144
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
191
145
  );
192
146
  }
193
-
194
147
  export declare class InvalidStateTransitionException extends __BaseException {
195
148
  readonly name: "InvalidStateTransitionException";
196
149
  readonly $fault: "client";
197
-
198
150
  constructor(
199
151
  opts: __ExceptionOptionType<
200
152
  InvalidStateTransitionException,
@@ -202,11 +154,9 @@ export declare class InvalidStateTransitionException extends __BaseException {
202
154
  >
203
155
  );
204
156
  }
205
-
206
157
  export declare class ResourceShareLimitExceededException extends __BaseException {
207
158
  readonly name: "ResourceShareLimitExceededException";
208
159
  readonly $fault: "client";
209
-
210
160
  constructor(
211
161
  opts: __ExceptionOptionType<
212
162
  ResourceShareLimitExceededException,
@@ -214,59 +164,42 @@ export declare class ResourceShareLimitExceededException extends __BaseException
214
164
  >
215
165
  );
216
166
  }
217
-
218
167
  export declare class ThrottlingException extends __BaseException {
219
168
  readonly name: "ThrottlingException";
220
169
  readonly $fault: "client";
221
-
222
170
  constructor(
223
171
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
224
172
  );
225
173
  }
226
-
227
174
  export declare class UnknownResourceException extends __BaseException {
228
175
  readonly name: "UnknownResourceException";
229
176
  readonly $fault: "client";
230
-
231
177
  constructor(
232
178
  opts: __ExceptionOptionType<UnknownResourceException, __BaseException>
233
179
  );
234
180
  }
235
181
  export interface AssociateResourceSharePermissionRequest {
236
182
  resourceShareArn: string | undefined;
237
-
238
183
  permissionArn: string | undefined;
239
-
240
184
  replace?: boolean;
241
-
242
185
  clientToken?: string;
243
-
244
186
  permissionVersion?: number;
245
187
  }
246
188
  export interface AssociateResourceSharePermissionResponse {
247
189
  returnValue?: boolean;
248
-
249
190
  clientToken?: string;
250
191
  }
251
-
252
192
  export interface Tag {
253
193
  key?: string;
254
-
255
194
  value?: string;
256
195
  }
257
196
  export interface CreateResourceShareRequest {
258
197
  name: string | undefined;
259
-
260
198
  resourceArns?: string[];
261
-
262
199
  principals?: string[];
263
-
264
200
  tags?: Tag[];
265
-
266
201
  allowExternalPrincipals?: boolean;
267
-
268
202
  clientToken?: string;
269
-
270
203
  permissionArns?: string[];
271
204
  }
272
205
  export declare type ResourceShareFeatureSet =
@@ -279,76 +212,54 @@ export declare type ResourceShareStatus =
279
212
  | "DELETING"
280
213
  | "FAILED"
281
214
  | "PENDING";
282
-
283
215
  export interface ResourceShare {
284
216
  resourceShareArn?: string;
285
-
286
217
  name?: string;
287
-
288
218
  owningAccountId?: string;
289
-
290
219
  allowExternalPrincipals?: boolean;
291
-
292
220
  status?: ResourceShareStatus | string;
293
-
294
221
  statusMessage?: string;
295
-
296
222
  tags?: Tag[];
297
-
298
223
  creationTime?: Date;
299
-
300
224
  lastUpdatedTime?: Date;
301
-
302
225
  featureSet?: ResourceShareFeatureSet | string;
303
226
  }
304
227
  export interface CreateResourceShareResponse {
305
228
  resourceShare?: ResourceShare;
306
-
307
229
  clientToken?: string;
308
230
  }
309
-
310
231
  export declare class TagPolicyViolationException extends __BaseException {
311
232
  readonly name: "TagPolicyViolationException";
312
233
  readonly $fault: "client";
313
-
314
234
  constructor(
315
235
  opts: __ExceptionOptionType<TagPolicyViolationException, __BaseException>
316
236
  );
317
237
  }
318
238
  export interface DeleteResourceShareRequest {
319
239
  resourceShareArn: string | undefined;
320
-
321
240
  clientToken?: string;
322
241
  }
323
242
  export interface DeleteResourceShareResponse {
324
243
  returnValue?: boolean;
325
-
326
244
  clientToken?: string;
327
245
  }
328
246
  export interface DisassociateResourceShareRequest {
329
247
  resourceShareArn: string | undefined;
330
-
331
248
  resourceArns?: string[];
332
-
333
249
  principals?: string[];
334
-
335
250
  clientToken?: string;
336
251
  }
337
252
  export interface DisassociateResourceShareResponse {
338
253
  resourceShareAssociations?: ResourceShareAssociation[];
339
-
340
254
  clientToken?: string;
341
255
  }
342
256
  export interface DisassociateResourceSharePermissionRequest {
343
257
  resourceShareArn: string | undefined;
344
-
345
258
  permissionArn: string | undefined;
346
-
347
259
  clientToken?: string;
348
260
  }
349
261
  export interface DisassociateResourceSharePermissionResponse {
350
262
  returnValue?: boolean;
351
-
352
263
  clientToken?: string;
353
264
  }
354
265
  export interface EnableSharingWithAwsOrganizationRequest {}
@@ -357,27 +268,17 @@ export interface EnableSharingWithAwsOrganizationResponse {
357
268
  }
358
269
  export interface GetPermissionRequest {
359
270
  permissionArn: string | undefined;
360
-
361
271
  permissionVersion?: number;
362
272
  }
363
-
364
273
  export interface ResourceSharePermissionDetail {
365
274
  arn?: string;
366
-
367
275
  version?: string;
368
-
369
276
  defaultVersion?: boolean;
370
-
371
277
  name?: string;
372
-
373
278
  resourceType?: string;
374
-
375
279
  permission?: string;
376
-
377
280
  creationTime?: Date;
378
-
379
281
  lastUpdatedTime?: Date;
380
-
381
282
  isResourceTypeDefault?: boolean;
382
283
  }
383
284
  export interface GetPermissionResponse {
@@ -385,75 +286,54 @@ export interface GetPermissionResponse {
385
286
  }
386
287
  export interface GetResourcePoliciesRequest {
387
288
  resourceArns: string[] | undefined;
388
-
389
289
  principal?: string;
390
-
391
290
  nextToken?: string;
392
-
393
291
  maxResults?: number;
394
292
  }
395
293
  export interface GetResourcePoliciesResponse {
396
294
  policies?: string[];
397
-
398
295
  nextToken?: string;
399
296
  }
400
-
401
297
  export declare class InvalidNextTokenException extends __BaseException {
402
298
  readonly name: "InvalidNextTokenException";
403
299
  readonly $fault: "client";
404
-
405
300
  constructor(
406
301
  opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
407
302
  );
408
303
  }
409
-
410
304
  export declare class ResourceArnNotFoundException extends __BaseException {
411
305
  readonly name: "ResourceArnNotFoundException";
412
306
  readonly $fault: "client";
413
-
414
307
  constructor(
415
308
  opts: __ExceptionOptionType<ResourceArnNotFoundException, __BaseException>
416
309
  );
417
310
  }
418
311
  export interface GetResourceShareAssociationsRequest {
419
312
  associationType: ResourceShareAssociationType | string | undefined;
420
-
421
313
  resourceShareArns?: string[];
422
-
423
314
  resourceArn?: string;
424
-
425
315
  principal?: string;
426
-
427
316
  associationStatus?: ResourceShareAssociationStatus | string;
428
-
429
317
  nextToken?: string;
430
-
431
318
  maxResults?: number;
432
319
  }
433
320
  export interface GetResourceShareAssociationsResponse {
434
321
  resourceShareAssociations?: ResourceShareAssociation[];
435
-
436
322
  nextToken?: string;
437
323
  }
438
324
  export interface GetResourceShareInvitationsRequest {
439
325
  resourceShareInvitationArns?: string[];
440
-
441
326
  resourceShareArns?: string[];
442
-
443
327
  nextToken?: string;
444
-
445
328
  maxResults?: number;
446
329
  }
447
330
  export interface GetResourceShareInvitationsResponse {
448
331
  resourceShareInvitations?: ResourceShareInvitation[];
449
-
450
332
  nextToken?: string;
451
333
  }
452
-
453
334
  export declare class InvalidMaxResultsException extends __BaseException {
454
335
  readonly name: "InvalidMaxResultsException";
455
336
  readonly $fault: "client";
456
-
457
337
  constructor(
458
338
  opts: __ExceptionOptionType<InvalidMaxResultsException, __BaseException>
459
339
  );
@@ -462,32 +342,22 @@ export declare enum ResourceOwner {
462
342
  OTHER_ACCOUNTS = "OTHER-ACCOUNTS",
463
343
  SELF = "SELF",
464
344
  }
465
-
466
345
  export interface TagFilter {
467
346
  tagKey?: string;
468
-
469
347
  tagValues?: string[];
470
348
  }
471
349
  export interface GetResourceSharesRequest {
472
350
  resourceShareArns?: string[];
473
-
474
351
  resourceShareStatus?: ResourceShareStatus | string;
475
-
476
352
  resourceOwner: ResourceOwner | string | undefined;
477
-
478
353
  name?: string;
479
-
480
354
  tagFilters?: TagFilter[];
481
-
482
355
  nextToken?: string;
483
-
484
356
  maxResults?: number;
485
-
486
357
  permissionArn?: string;
487
358
  }
488
359
  export interface GetResourceSharesResponse {
489
360
  resourceShares?: ResourceShare[];
490
-
491
361
  nextToken?: string;
492
362
  }
493
363
  export declare enum ResourceRegionScopeFilter {
@@ -497,11 +367,8 @@ export declare enum ResourceRegionScopeFilter {
497
367
  }
498
368
  export interface ListPendingInvitationResourcesRequest {
499
369
  resourceShareInvitationArn: string | undefined;
500
-
501
370
  nextToken?: string;
502
-
503
371
  maxResults?: number;
504
-
505
372
  resourceRegionScope?: ResourceRegionScopeFilter | string;
506
373
  }
507
374
  export declare enum ResourceRegionScope {
@@ -514,36 +381,24 @@ export declare type ResourceStatus =
514
381
  | "PENDING"
515
382
  | "UNAVAILABLE"
516
383
  | "ZONAL_RESOURCE_INACCESSIBLE";
517
-
518
384
  export interface Resource {
519
385
  arn?: string;
520
-
521
386
  type?: string;
522
-
523
387
  resourceShareArn?: string;
524
-
525
388
  resourceGroupArn?: string;
526
-
527
389
  status?: ResourceStatus | string;
528
-
529
390
  statusMessage?: string;
530
-
531
391
  creationTime?: Date;
532
-
533
392
  lastUpdatedTime?: Date;
534
-
535
393
  resourceRegionScope?: ResourceRegionScope | string;
536
394
  }
537
395
  export interface ListPendingInvitationResourcesResponse {
538
396
  resources?: Resource[];
539
-
540
397
  nextToken?: string;
541
398
  }
542
-
543
399
  export declare class MissingRequiredParameterException extends __BaseException {
544
400
  readonly name: "MissingRequiredParameterException";
545
401
  readonly $fault: "client";
546
-
547
402
  constructor(
548
403
  opts: __ExceptionOptionType<
549
404
  MissingRequiredParameterException,
@@ -553,141 +408,95 @@ export declare class MissingRequiredParameterException extends __BaseException {
553
408
  }
554
409
  export interface ListPermissionsRequest {
555
410
  resourceType?: string;
556
-
557
411
  nextToken?: string;
558
-
559
412
  maxResults?: number;
560
413
  }
561
-
562
414
  export interface ResourceSharePermissionSummary {
563
415
  arn?: string;
564
-
565
416
  version?: string;
566
-
567
417
  defaultVersion?: boolean;
568
-
569
418
  name?: string;
570
-
571
419
  resourceType?: string;
572
-
573
420
  status?: string;
574
-
575
421
  creationTime?: Date;
576
-
577
422
  lastUpdatedTime?: Date;
578
-
579
423
  isResourceTypeDefault?: boolean;
580
424
  }
581
425
  export interface ListPermissionsResponse {
582
426
  permissions?: ResourceSharePermissionSummary[];
583
-
584
427
  nextToken?: string;
585
428
  }
586
429
  export interface ListPermissionVersionsRequest {
587
430
  permissionArn: string | undefined;
588
-
589
431
  nextToken?: string;
590
-
591
432
  maxResults?: number;
592
433
  }
593
434
  export interface ListPermissionVersionsResponse {
594
435
  permissions?: ResourceSharePermissionSummary[];
595
-
596
436
  nextToken?: string;
597
437
  }
598
438
  export interface ListPrincipalsRequest {
599
439
  resourceOwner: ResourceOwner | string | undefined;
600
-
601
440
  resourceArn?: string;
602
-
603
441
  principals?: string[];
604
-
605
442
  resourceType?: string;
606
-
607
443
  resourceShareArns?: string[];
608
-
609
444
  nextToken?: string;
610
-
611
445
  maxResults?: number;
612
446
  }
613
-
614
447
  export interface Principal {
615
448
  id?: string;
616
-
617
449
  resourceShareArn?: string;
618
-
619
450
  creationTime?: Date;
620
-
621
451
  lastUpdatedTime?: Date;
622
-
623
452
  external?: boolean;
624
453
  }
625
454
  export interface ListPrincipalsResponse {
626
455
  principals?: Principal[];
627
-
628
456
  nextToken?: string;
629
457
  }
630
-
631
458
  export declare class InvalidResourceTypeException extends __BaseException {
632
459
  readonly name: "InvalidResourceTypeException";
633
460
  readonly $fault: "client";
634
-
635
461
  constructor(
636
462
  opts: __ExceptionOptionType<InvalidResourceTypeException, __BaseException>
637
463
  );
638
464
  }
639
465
  export interface ListResourcesRequest {
640
466
  resourceOwner: ResourceOwner | string | undefined;
641
-
642
467
  principal?: string;
643
-
644
468
  resourceType?: string;
645
-
646
469
  resourceArns?: string[];
647
-
648
470
  resourceShareArns?: string[];
649
-
650
471
  nextToken?: string;
651
-
652
472
  maxResults?: number;
653
-
654
473
  resourceRegionScope?: ResourceRegionScopeFilter | string;
655
474
  }
656
475
  export interface ListResourcesResponse {
657
476
  resources?: Resource[];
658
-
659
477
  nextToken?: string;
660
478
  }
661
479
  export interface ListResourceSharePermissionsRequest {
662
480
  resourceShareArn: string | undefined;
663
-
664
481
  nextToken?: string;
665
-
666
482
  maxResults?: number;
667
483
  }
668
484
  export interface ListResourceSharePermissionsResponse {
669
485
  permissions?: ResourceSharePermissionSummary[];
670
-
671
486
  nextToken?: string;
672
487
  }
673
488
  export interface ListResourceTypesRequest {
674
489
  nextToken?: string;
675
-
676
490
  maxResults?: number;
677
-
678
491
  resourceRegionScope?: ResourceRegionScopeFilter | string;
679
492
  }
680
-
681
493
  export interface ServiceNameAndResourceType {
682
494
  resourceType?: string;
683
-
684
495
  serviceName?: string;
685
-
686
496
  resourceRegionScope?: ResourceRegionScope | string;
687
497
  }
688
498
  export interface ListResourceTypesResponse {
689
499
  resourceTypes?: ServiceNameAndResourceType[];
690
-
691
500
  nextToken?: string;
692
501
  }
693
502
  export interface PromoteResourceShareCreatedFromPolicyRequest {
@@ -698,278 +507,208 @@ export interface PromoteResourceShareCreatedFromPolicyResponse {
698
507
  }
699
508
  export interface RejectResourceShareInvitationRequest {
700
509
  resourceShareInvitationArn: string | undefined;
701
-
702
510
  clientToken?: string;
703
511
  }
704
512
  export interface RejectResourceShareInvitationResponse {
705
513
  resourceShareInvitation?: ResourceShareInvitation;
706
-
707
514
  clientToken?: string;
708
515
  }
709
-
710
516
  export declare class TagLimitExceededException extends __BaseException {
711
517
  readonly name: "TagLimitExceededException";
712
518
  readonly $fault: "client";
713
-
714
519
  constructor(
715
520
  opts: __ExceptionOptionType<TagLimitExceededException, __BaseException>
716
521
  );
717
522
  }
718
523
  export interface TagResourceRequest {
719
524
  resourceShareArn: string | undefined;
720
-
721
525
  tags: Tag[] | undefined;
722
526
  }
723
527
  export interface TagResourceResponse {}
724
528
  export interface UntagResourceRequest {
725
529
  resourceShareArn: string | undefined;
726
-
727
530
  tagKeys: string[] | undefined;
728
531
  }
729
532
  export interface UntagResourceResponse {}
730
533
  export interface UpdateResourceShareRequest {
731
534
  resourceShareArn: string | undefined;
732
-
733
535
  name?: string;
734
-
735
536
  allowExternalPrincipals?: boolean;
736
-
737
537
  clientToken?: string;
738
538
  }
739
539
  export interface UpdateResourceShareResponse {
740
540
  resourceShare?: ResourceShare;
741
-
742
541
  clientToken?: string;
743
542
  }
744
-
745
543
  export declare const AcceptResourceShareInvitationRequestFilterSensitiveLog: (
746
544
  obj: AcceptResourceShareInvitationRequest
747
545
  ) => any;
748
-
749
546
  export declare const ResourceShareAssociationFilterSensitiveLog: (
750
547
  obj: ResourceShareAssociation
751
548
  ) => any;
752
-
753
549
  export declare const ResourceShareInvitationFilterSensitiveLog: (
754
550
  obj: ResourceShareInvitation
755
551
  ) => any;
756
-
757
552
  export declare const AcceptResourceShareInvitationResponseFilterSensitiveLog: (
758
553
  obj: AcceptResourceShareInvitationResponse
759
554
  ) => any;
760
-
761
555
  export declare const AssociateResourceShareRequestFilterSensitiveLog: (
762
556
  obj: AssociateResourceShareRequest
763
557
  ) => any;
764
-
765
558
  export declare const AssociateResourceShareResponseFilterSensitiveLog: (
766
559
  obj: AssociateResourceShareResponse
767
560
  ) => any;
768
-
769
561
  export declare const AssociateResourceSharePermissionRequestFilterSensitiveLog: (
770
562
  obj: AssociateResourceSharePermissionRequest
771
563
  ) => any;
772
-
773
564
  export declare const AssociateResourceSharePermissionResponseFilterSensitiveLog: (
774
565
  obj: AssociateResourceSharePermissionResponse
775
566
  ) => any;
776
-
777
567
  export declare const TagFilterSensitiveLog: (obj: Tag) => any;
778
-
779
568
  export declare const CreateResourceShareRequestFilterSensitiveLog: (
780
569
  obj: CreateResourceShareRequest
781
570
  ) => any;
782
-
783
571
  export declare const ResourceShareFilterSensitiveLog: (
784
572
  obj: ResourceShare
785
573
  ) => any;
786
-
787
574
  export declare const CreateResourceShareResponseFilterSensitiveLog: (
788
575
  obj: CreateResourceShareResponse
789
576
  ) => any;
790
-
791
577
  export declare const DeleteResourceShareRequestFilterSensitiveLog: (
792
578
  obj: DeleteResourceShareRequest
793
579
  ) => any;
794
-
795
580
  export declare const DeleteResourceShareResponseFilterSensitiveLog: (
796
581
  obj: DeleteResourceShareResponse
797
582
  ) => any;
798
-
799
583
  export declare const DisassociateResourceShareRequestFilterSensitiveLog: (
800
584
  obj: DisassociateResourceShareRequest
801
585
  ) => any;
802
-
803
586
  export declare const DisassociateResourceShareResponseFilterSensitiveLog: (
804
587
  obj: DisassociateResourceShareResponse
805
588
  ) => any;
806
-
807
589
  export declare const DisassociateResourceSharePermissionRequestFilterSensitiveLog: (
808
590
  obj: DisassociateResourceSharePermissionRequest
809
591
  ) => any;
810
-
811
592
  export declare const DisassociateResourceSharePermissionResponseFilterSensitiveLog: (
812
593
  obj: DisassociateResourceSharePermissionResponse
813
594
  ) => any;
814
-
815
595
  export declare const EnableSharingWithAwsOrganizationRequestFilterSensitiveLog: (
816
596
  obj: EnableSharingWithAwsOrganizationRequest
817
597
  ) => any;
818
-
819
598
  export declare const EnableSharingWithAwsOrganizationResponseFilterSensitiveLog: (
820
599
  obj: EnableSharingWithAwsOrganizationResponse
821
600
  ) => any;
822
-
823
601
  export declare const GetPermissionRequestFilterSensitiveLog: (
824
602
  obj: GetPermissionRequest
825
603
  ) => any;
826
-
827
604
  export declare const ResourceSharePermissionDetailFilterSensitiveLog: (
828
605
  obj: ResourceSharePermissionDetail
829
606
  ) => any;
830
-
831
607
  export declare const GetPermissionResponseFilterSensitiveLog: (
832
608
  obj: GetPermissionResponse
833
609
  ) => any;
834
-
835
610
  export declare const GetResourcePoliciesRequestFilterSensitiveLog: (
836
611
  obj: GetResourcePoliciesRequest
837
612
  ) => any;
838
-
839
613
  export declare const GetResourcePoliciesResponseFilterSensitiveLog: (
840
614
  obj: GetResourcePoliciesResponse
841
615
  ) => any;
842
-
843
616
  export declare const GetResourceShareAssociationsRequestFilterSensitiveLog: (
844
617
  obj: GetResourceShareAssociationsRequest
845
618
  ) => any;
846
-
847
619
  export declare const GetResourceShareAssociationsResponseFilterSensitiveLog: (
848
620
  obj: GetResourceShareAssociationsResponse
849
621
  ) => any;
850
-
851
622
  export declare const GetResourceShareInvitationsRequestFilterSensitiveLog: (
852
623
  obj: GetResourceShareInvitationsRequest
853
624
  ) => any;
854
-
855
625
  export declare const GetResourceShareInvitationsResponseFilterSensitiveLog: (
856
626
  obj: GetResourceShareInvitationsResponse
857
627
  ) => any;
858
-
859
628
  export declare const TagFilterFilterSensitiveLog: (obj: TagFilter) => any;
860
-
861
629
  export declare const GetResourceSharesRequestFilterSensitiveLog: (
862
630
  obj: GetResourceSharesRequest
863
631
  ) => any;
864
-
865
632
  export declare const GetResourceSharesResponseFilterSensitiveLog: (
866
633
  obj: GetResourceSharesResponse
867
634
  ) => any;
868
-
869
635
  export declare const ListPendingInvitationResourcesRequestFilterSensitiveLog: (
870
636
  obj: ListPendingInvitationResourcesRequest
871
637
  ) => any;
872
-
873
638
  export declare const ResourceFilterSensitiveLog: (obj: Resource) => any;
874
-
875
639
  export declare const ListPendingInvitationResourcesResponseFilterSensitiveLog: (
876
640
  obj: ListPendingInvitationResourcesResponse
877
641
  ) => any;
878
-
879
642
  export declare const ListPermissionsRequestFilterSensitiveLog: (
880
643
  obj: ListPermissionsRequest
881
644
  ) => any;
882
-
883
645
  export declare const ResourceSharePermissionSummaryFilterSensitiveLog: (
884
646
  obj: ResourceSharePermissionSummary
885
647
  ) => any;
886
-
887
648
  export declare const ListPermissionsResponseFilterSensitiveLog: (
888
649
  obj: ListPermissionsResponse
889
650
  ) => any;
890
-
891
651
  export declare const ListPermissionVersionsRequestFilterSensitiveLog: (
892
652
  obj: ListPermissionVersionsRequest
893
653
  ) => any;
894
-
895
654
  export declare const ListPermissionVersionsResponseFilterSensitiveLog: (
896
655
  obj: ListPermissionVersionsResponse
897
656
  ) => any;
898
-
899
657
  export declare const ListPrincipalsRequestFilterSensitiveLog: (
900
658
  obj: ListPrincipalsRequest
901
659
  ) => any;
902
-
903
660
  export declare const PrincipalFilterSensitiveLog: (obj: Principal) => any;
904
-
905
661
  export declare const ListPrincipalsResponseFilterSensitiveLog: (
906
662
  obj: ListPrincipalsResponse
907
663
  ) => any;
908
-
909
664
  export declare const ListResourcesRequestFilterSensitiveLog: (
910
665
  obj: ListResourcesRequest
911
666
  ) => any;
912
-
913
667
  export declare const ListResourcesResponseFilterSensitiveLog: (
914
668
  obj: ListResourcesResponse
915
669
  ) => any;
916
-
917
670
  export declare const ListResourceSharePermissionsRequestFilterSensitiveLog: (
918
671
  obj: ListResourceSharePermissionsRequest
919
672
  ) => any;
920
-
921
673
  export declare const ListResourceSharePermissionsResponseFilterSensitiveLog: (
922
674
  obj: ListResourceSharePermissionsResponse
923
675
  ) => any;
924
-
925
676
  export declare const ListResourceTypesRequestFilterSensitiveLog: (
926
677
  obj: ListResourceTypesRequest
927
678
  ) => any;
928
-
929
679
  export declare const ServiceNameAndResourceTypeFilterSensitiveLog: (
930
680
  obj: ServiceNameAndResourceType
931
681
  ) => any;
932
-
933
682
  export declare const ListResourceTypesResponseFilterSensitiveLog: (
934
683
  obj: ListResourceTypesResponse
935
684
  ) => any;
936
-
937
685
  export declare const PromoteResourceShareCreatedFromPolicyRequestFilterSensitiveLog: (
938
686
  obj: PromoteResourceShareCreatedFromPolicyRequest
939
687
  ) => any;
940
-
941
688
  export declare const PromoteResourceShareCreatedFromPolicyResponseFilterSensitiveLog: (
942
689
  obj: PromoteResourceShareCreatedFromPolicyResponse
943
690
  ) => any;
944
-
945
691
  export declare const RejectResourceShareInvitationRequestFilterSensitiveLog: (
946
692
  obj: RejectResourceShareInvitationRequest
947
693
  ) => any;
948
-
949
694
  export declare const RejectResourceShareInvitationResponseFilterSensitiveLog: (
950
695
  obj: RejectResourceShareInvitationResponse
951
696
  ) => any;
952
-
953
697
  export declare const TagResourceRequestFilterSensitiveLog: (
954
698
  obj: TagResourceRequest
955
699
  ) => any;
956
-
957
700
  export declare const TagResourceResponseFilterSensitiveLog: (
958
701
  obj: TagResourceResponse
959
702
  ) => any;
960
-
961
703
  export declare const UntagResourceRequestFilterSensitiveLog: (
962
704
  obj: UntagResourceRequest
963
705
  ) => any;
964
-
965
706
  export declare const UntagResourceResponseFilterSensitiveLog: (
966
707
  obj: UntagResourceResponse
967
708
  ) => any;
968
-
969
709
  export declare const UpdateResourceShareRequestFilterSensitiveLog: (
970
710
  obj: UpdateResourceShareRequest
971
711
  ) => any;
972
-
973
712
  export declare const UpdateResourceShareResponseFilterSensitiveLog: (
974
713
  obj: UpdateResourceShareResponse
975
714
  ) => any;