@aws-sdk/client-s3-control 3.457.0 → 3.458.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 (168) hide show
  1. package/README.md +232 -72
  2. package/dist-cjs/S3Control.js +40 -0
  3. package/dist-cjs/commands/AssociateAccessGrantsIdentityCenterCommand.js +58 -0
  4. package/dist-cjs/commands/CreateAccessGrantCommand.js +58 -0
  5. package/dist-cjs/commands/CreateAccessGrantsInstanceCommand.js +58 -0
  6. package/dist-cjs/commands/CreateAccessGrantsLocationCommand.js +58 -0
  7. package/dist-cjs/commands/DeleteAccessGrantCommand.js +58 -0
  8. package/dist-cjs/commands/DeleteAccessGrantsInstanceCommand.js +58 -0
  9. package/dist-cjs/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  10. package/dist-cjs/commands/DeleteAccessGrantsLocationCommand.js +58 -0
  11. package/dist-cjs/commands/DissociateAccessGrantsIdentityCenterCommand.js +58 -0
  12. package/dist-cjs/commands/GetAccessGrantCommand.js +58 -0
  13. package/dist-cjs/commands/GetAccessGrantsInstanceCommand.js +58 -0
  14. package/dist-cjs/commands/GetAccessGrantsInstanceForPrefixCommand.js +58 -0
  15. package/dist-cjs/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  16. package/dist-cjs/commands/GetAccessGrantsLocationCommand.js +58 -0
  17. package/dist-cjs/commands/GetDataAccessCommand.js +59 -0
  18. package/dist-cjs/commands/ListAccessGrantsCommand.js +58 -0
  19. package/dist-cjs/commands/ListAccessGrantsInstancesCommand.js +58 -0
  20. package/dist-cjs/commands/ListAccessGrantsLocationsCommand.js +58 -0
  21. package/dist-cjs/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +58 -0
  22. package/dist-cjs/commands/UpdateAccessGrantsLocationCommand.js +58 -0
  23. package/dist-cjs/commands/index.js +20 -0
  24. package/dist-cjs/models/index.js +1 -0
  25. package/dist-cjs/models/models_0.js +32 -38
  26. package/dist-cjs/models/models_1.js +40 -0
  27. package/dist-cjs/pagination/ListAccessGrantsInstancesPaginator.js +29 -0
  28. package/dist-cjs/pagination/ListAccessGrantsLocationsPaginator.js +29 -0
  29. package/dist-cjs/pagination/ListAccessGrantsPaginator.js +29 -0
  30. package/dist-cjs/pagination/index.js +3 -0
  31. package/dist-cjs/protocols/Aws_restXml.js +1697 -156
  32. package/dist-es/S3Control.js +40 -0
  33. package/dist-es/commands/AssociateAccessGrantsIdentityCenterCommand.js +54 -0
  34. package/dist-es/commands/CreateAccessGrantCommand.js +54 -0
  35. package/dist-es/commands/CreateAccessGrantsInstanceCommand.js +54 -0
  36. package/dist-es/commands/CreateAccessGrantsLocationCommand.js +54 -0
  37. package/dist-es/commands/DeleteAccessGrantCommand.js +54 -0
  38. package/dist-es/commands/DeleteAccessGrantsInstanceCommand.js +54 -0
  39. package/dist-es/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  40. package/dist-es/commands/DeleteAccessGrantsLocationCommand.js +54 -0
  41. package/dist-es/commands/DissociateAccessGrantsIdentityCenterCommand.js +54 -0
  42. package/dist-es/commands/GetAccessGrantCommand.js +54 -0
  43. package/dist-es/commands/GetAccessGrantsInstanceCommand.js +54 -0
  44. package/dist-es/commands/GetAccessGrantsInstanceForPrefixCommand.js +54 -0
  45. package/dist-es/commands/GetAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  46. package/dist-es/commands/GetAccessGrantsLocationCommand.js +54 -0
  47. package/dist-es/commands/GetDataAccessCommand.js +55 -0
  48. package/dist-es/commands/ListAccessGrantsCommand.js +54 -0
  49. package/dist-es/commands/ListAccessGrantsInstancesCommand.js +54 -0
  50. package/dist-es/commands/ListAccessGrantsLocationsCommand.js +54 -0
  51. package/dist-es/commands/PutAccessGrantsInstanceResourcePolicyCommand.js +54 -0
  52. package/dist-es/commands/UpdateAccessGrantsLocationCommand.js +54 -0
  53. package/dist-es/commands/index.js +20 -0
  54. package/dist-es/models/index.js +1 -0
  55. package/dist-es/models/models_0.js +28 -34
  56. package/dist-es/models/models_1.js +35 -0
  57. package/dist-es/pagination/ListAccessGrantsInstancesPaginator.js +25 -0
  58. package/dist-es/pagination/ListAccessGrantsLocationsPaginator.js +25 -0
  59. package/dist-es/pagination/ListAccessGrantsPaginator.js +25 -0
  60. package/dist-es/pagination/index.js +3 -0
  61. package/dist-es/protocols/Aws_restXml.js +1733 -233
  62. package/dist-types/S3Control.d.ts +140 -0
  63. package/dist-types/S3ControlClient.d.ts +22 -2
  64. package/dist-types/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +82 -0
  65. package/dist-types/commands/CreateAccessGrantCommand.d.ts +118 -0
  66. package/dist-types/commands/CreateAccessGrantsInstanceCommand.d.ts +93 -0
  67. package/dist-types/commands/CreateAccessGrantsLocationCommand.d.ts +111 -0
  68. package/dist-types/commands/DeleteAccessGrantCommand.d.ts +78 -0
  69. package/dist-types/commands/DeleteAccessGrantsInstanceCommand.d.ts +77 -0
  70. package/dist-types/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +77 -0
  71. package/dist-types/commands/DeleteAccessGrantsLocationCommand.d.ts +78 -0
  72. package/dist-types/commands/DeleteStorageLensGroupCommand.d.ts +5 -4
  73. package/dist-types/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +81 -0
  74. package/dist-types/commands/GetAccessGrantCommand.d.ts +93 -0
  75. package/dist-types/commands/GetAccessGrantsInstanceCommand.d.ts +82 -0
  76. package/dist-types/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +85 -0
  77. package/dist-types/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +81 -0
  78. package/dist-types/commands/GetAccessGrantsLocationCommand.d.ts +84 -0
  79. package/dist-types/commands/GetDataAccessCommand.d.ts +94 -0
  80. package/dist-types/commands/GetStorageLensGroupCommand.d.ts +5 -4
  81. package/dist-types/commands/ListAccessGrantsCommand.d.ts +104 -0
  82. package/dist-types/commands/ListAccessGrantsInstancesCommand.d.ts +89 -0
  83. package/dist-types/commands/ListAccessGrantsLocationsCommand.d.ts +91 -0
  84. package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +8 -5
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +12 -10
  86. package/dist-types/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +83 -0
  87. package/dist-types/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  88. package/dist-types/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  89. package/dist-types/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  90. package/dist-types/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  91. package/dist-types/commands/PutBucketPolicyCommand.d.ts +1 -1
  92. package/dist-types/commands/PutBucketReplicationCommand.d.ts +1 -1
  93. package/dist-types/commands/PutBucketTaggingCommand.d.ts +1 -1
  94. package/dist-types/commands/PutBucketVersioningCommand.d.ts +1 -1
  95. package/dist-types/commands/PutJobTaggingCommand.d.ts +1 -1
  96. package/dist-types/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  97. package/dist-types/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  98. package/dist-types/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  99. package/dist-types/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  100. package/dist-types/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  101. package/dist-types/commands/TagResourceCommand.d.ts +12 -10
  102. package/dist-types/commands/UntagResourceCommand.d.ts +12 -8
  103. package/dist-types/commands/UpdateAccessGrantsLocationCommand.d.ts +90 -0
  104. package/dist-types/commands/UpdateJobPriorityCommand.d.ts +1 -1
  105. package/dist-types/commands/UpdateJobStatusCommand.d.ts +1 -1
  106. package/dist-types/commands/UpdateStorageLensGroupCommand.d.ts +6 -5
  107. package/dist-types/commands/index.d.ts +20 -0
  108. package/dist-types/models/index.d.ts +1 -0
  109. package/dist-types/models/models_0.d.ts +1246 -854
  110. package/dist-types/models/models_1.d.ts +775 -0
  111. package/dist-types/pagination/ListAccessGrantsInstancesPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListAccessGrantsLocationsPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListAccessGrantsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/index.d.ts +3 -0
  115. package/dist-types/protocols/Aws_restXml.d.ts +180 -0
  116. package/dist-types/ts3.4/S3Control.d.ts +370 -0
  117. package/dist-types/ts3.4/S3ControlClient.d.ts +120 -0
  118. package/dist-types/ts3.4/commands/AssociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  119. package/dist-types/ts3.4/commands/CreateAccessGrantCommand.d.ts +39 -0
  120. package/dist-types/ts3.4/commands/CreateAccessGrantsInstanceCommand.d.ts +42 -0
  121. package/dist-types/ts3.4/commands/CreateAccessGrantsLocationCommand.d.ts +42 -0
  122. package/dist-types/ts3.4/commands/DeleteAccessGrantCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceCommand.d.ts +38 -0
  124. package/dist-types/ts3.4/commands/DeleteAccessGrantsInstanceResourcePolicyCommand.d.ts +38 -0
  125. package/dist-types/ts3.4/commands/DeleteAccessGrantsLocationCommand.d.ts +38 -0
  126. package/dist-types/ts3.4/commands/DissociateAccessGrantsIdentityCenterCommand.d.ts +38 -0
  127. package/dist-types/ts3.4/commands/GetAccessGrantCommand.d.ts +38 -0
  128. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceCommand.d.ts +42 -0
  129. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceForPrefixCommand.d.ts +42 -0
  130. package/dist-types/ts3.4/commands/GetAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  131. package/dist-types/ts3.4/commands/GetAccessGrantsLocationCommand.d.ts +42 -0
  132. package/dist-types/ts3.4/commands/GetDataAccessCommand.d.ts +35 -0
  133. package/dist-types/ts3.4/commands/ListAccessGrantsCommand.d.ts +38 -0
  134. package/dist-types/ts3.4/commands/ListAccessGrantsInstancesCommand.d.ts +42 -0
  135. package/dist-types/ts3.4/commands/ListAccessGrantsLocationsCommand.d.ts +42 -0
  136. package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +2 -4
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +1 -1
  138. package/dist-types/ts3.4/commands/PutAccessGrantsInstanceResourcePolicyCommand.d.ts +42 -0
  139. package/dist-types/ts3.4/commands/PutAccessPointConfigurationForObjectLambdaCommand.d.ts +1 -1
  140. package/dist-types/ts3.4/commands/PutAccessPointPolicyCommand.d.ts +1 -1
  141. package/dist-types/ts3.4/commands/PutAccessPointPolicyForObjectLambdaCommand.d.ts +1 -1
  142. package/dist-types/ts3.4/commands/PutBucketLifecycleConfigurationCommand.d.ts +1 -1
  143. package/dist-types/ts3.4/commands/PutBucketPolicyCommand.d.ts +1 -1
  144. package/dist-types/ts3.4/commands/PutBucketReplicationCommand.d.ts +1 -1
  145. package/dist-types/ts3.4/commands/PutBucketTaggingCommand.d.ts +1 -1
  146. package/dist-types/ts3.4/commands/PutBucketVersioningCommand.d.ts +1 -1
  147. package/dist-types/ts3.4/commands/PutJobTaggingCommand.d.ts +1 -1
  148. package/dist-types/ts3.4/commands/PutMultiRegionAccessPointPolicyCommand.d.ts +1 -1
  149. package/dist-types/ts3.4/commands/PutPublicAccessBlockCommand.d.ts +1 -1
  150. package/dist-types/ts3.4/commands/PutStorageLensConfigurationCommand.d.ts +1 -1
  151. package/dist-types/ts3.4/commands/PutStorageLensConfigurationTaggingCommand.d.ts +1 -1
  152. package/dist-types/ts3.4/commands/SubmitMultiRegionAccessPointRoutesCommand.d.ts +1 -1
  153. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +1 -1
  154. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +1 -1
  155. package/dist-types/ts3.4/commands/UpdateAccessGrantsLocationCommand.d.ts +42 -0
  156. package/dist-types/ts3.4/commands/UpdateJobPriorityCommand.d.ts +1 -1
  157. package/dist-types/ts3.4/commands/UpdateJobStatusCommand.d.ts +1 -1
  158. package/dist-types/ts3.4/commands/UpdateStorageLensGroupCommand.d.ts +1 -1
  159. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  160. package/dist-types/ts3.4/models/index.d.ts +1 -0
  161. package/dist-types/ts3.4/models/models_0.d.ts +228 -170
  162. package/dist-types/ts3.4/models/models_1.d.ts +205 -0
  163. package/dist-types/ts3.4/pagination/ListAccessGrantsInstancesPaginator.d.ts +11 -0
  164. package/dist-types/ts3.4/pagination/ListAccessGrantsLocationsPaginator.d.ts +11 -0
  165. package/dist-types/ts3.4/pagination/ListAccessGrantsPaginator.d.ts +11 -0
  166. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  167. package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +240 -0
  168. package/package.json +3 -3
@@ -1,9 +1,17 @@
1
+ export * from "./AssociateAccessGrantsIdentityCenterCommand";
2
+ export * from "./CreateAccessGrantCommand";
3
+ export * from "./CreateAccessGrantsInstanceCommand";
4
+ export * from "./CreateAccessGrantsLocationCommand";
1
5
  export * from "./CreateAccessPointCommand";
2
6
  export * from "./CreateAccessPointForObjectLambdaCommand";
3
7
  export * from "./CreateBucketCommand";
4
8
  export * from "./CreateJobCommand";
5
9
  export * from "./CreateMultiRegionAccessPointCommand";
6
10
  export * from "./CreateStorageLensGroupCommand";
11
+ export * from "./DeleteAccessGrantCommand";
12
+ export * from "./DeleteAccessGrantsInstanceCommand";
13
+ export * from "./DeleteAccessGrantsInstanceResourcePolicyCommand";
14
+ export * from "./DeleteAccessGrantsLocationCommand";
7
15
  export * from "./DeleteAccessPointCommand";
8
16
  export * from "./DeleteAccessPointForObjectLambdaCommand";
9
17
  export * from "./DeleteAccessPointPolicyCommand";
@@ -21,6 +29,12 @@ export * from "./DeleteStorageLensConfigurationTaggingCommand";
21
29
  export * from "./DeleteStorageLensGroupCommand";
22
30
  export * from "./DescribeJobCommand";
23
31
  export * from "./DescribeMultiRegionAccessPointOperationCommand";
32
+ export * from "./DissociateAccessGrantsIdentityCenterCommand";
33
+ export * from "./GetAccessGrantCommand";
34
+ export * from "./GetAccessGrantsInstanceCommand";
35
+ export * from "./GetAccessGrantsInstanceForPrefixCommand";
36
+ export * from "./GetAccessGrantsInstanceResourcePolicyCommand";
37
+ export * from "./GetAccessGrantsLocationCommand";
24
38
  export * from "./GetAccessPointCommand";
25
39
  export * from "./GetAccessPointConfigurationForObjectLambdaCommand";
26
40
  export * from "./GetAccessPointForObjectLambdaCommand";
@@ -34,6 +48,7 @@ export * from "./GetBucketPolicyCommand";
34
48
  export * from "./GetBucketReplicationCommand";
35
49
  export * from "./GetBucketTaggingCommand";
36
50
  export * from "./GetBucketVersioningCommand";
51
+ export * from "./GetDataAccessCommand";
37
52
  export * from "./GetJobTaggingCommand";
38
53
  export * from "./GetMultiRegionAccessPointCommand";
39
54
  export * from "./GetMultiRegionAccessPointPolicyCommand";
@@ -43,6 +58,9 @@ export * from "./GetPublicAccessBlockCommand";
43
58
  export * from "./GetStorageLensConfigurationCommand";
44
59
  export * from "./GetStorageLensConfigurationTaggingCommand";
45
60
  export * from "./GetStorageLensGroupCommand";
61
+ export * from "./ListAccessGrantsCommand";
62
+ export * from "./ListAccessGrantsInstancesCommand";
63
+ export * from "./ListAccessGrantsLocationsCommand";
46
64
  export * from "./ListAccessPointsCommand";
47
65
  export * from "./ListAccessPointsForObjectLambdaCommand";
48
66
  export * from "./ListJobsCommand";
@@ -51,6 +69,7 @@ export * from "./ListRegionalBucketsCommand";
51
69
  export * from "./ListStorageLensConfigurationsCommand";
52
70
  export * from "./ListStorageLensGroupsCommand";
53
71
  export * from "./ListTagsForResourceCommand";
72
+ export * from "./PutAccessGrantsInstanceResourcePolicyCommand";
54
73
  export * from "./PutAccessPointConfigurationForObjectLambdaCommand";
55
74
  export * from "./PutAccessPointPolicyCommand";
56
75
  export * from "./PutAccessPointPolicyForObjectLambdaCommand";
@@ -67,6 +86,7 @@ export * from "./PutStorageLensConfigurationTaggingCommand";
67
86
  export * from "./SubmitMultiRegionAccessPointRoutesCommand";
68
87
  export * from "./TagResourceCommand";
69
88
  export * from "./UntagResourceCommand";
89
+ export * from "./UpdateAccessGrantsLocationCommand";
70
90
  export * from "./UpdateJobPriorityCommand";
71
91
  export * from "./UpdateJobStatusCommand";
72
92
  export * from "./UpdateStorageLensGroupCommand";
@@ -1 +1,2 @@
1
1
  export * from "./models_0";
2
+ export * from "./models_1";
@@ -10,6 +10,49 @@ export type OwnerOverride = (typeof OwnerOverride)[keyof typeof OwnerOverride];
10
10
  export interface AccessControlTranslation {
11
11
  Owner: OwnerOverride | undefined;
12
12
  }
13
+ export interface ListAccessGrantsInstanceEntry {
14
+ AccessGrantsInstanceId?: string;
15
+ AccessGrantsInstanceArn?: string;
16
+ CreatedAt?: Date;
17
+ IdentityCenterArn?: string;
18
+ }
19
+ export interface AccessGrantsLocationConfiguration {
20
+ S3SubPrefix?: string;
21
+ }
22
+ export declare const GranteeType: {
23
+ readonly DIRECTORY_GROUP: "DIRECTORY_GROUP";
24
+ readonly DIRECTORY_USER: "DIRECTORY_USER";
25
+ readonly IAM: "IAM";
26
+ };
27
+ export type GranteeType = (typeof GranteeType)[keyof typeof GranteeType];
28
+ export interface Grantee {
29
+ GranteeType?: GranteeType;
30
+ GranteeIdentifier?: string;
31
+ }
32
+ export declare const Permission: {
33
+ readonly READ: "READ";
34
+ readonly READWRITE: "READWRITE";
35
+ readonly WRITE: "WRITE";
36
+ };
37
+ export type Permission = (typeof Permission)[keyof typeof Permission];
38
+ export interface ListAccessGrantEntry {
39
+ CreatedAt?: Date;
40
+ AccessGrantId?: string;
41
+ AccessGrantArn?: string;
42
+ Grantee?: Grantee;
43
+ Permission?: Permission;
44
+ AccessGrantsLocationId?: string;
45
+ AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
46
+ GrantScope?: string;
47
+ ApplicationArn?: string;
48
+ }
49
+ export interface ListAccessGrantsLocationsEntry {
50
+ CreatedAt?: Date;
51
+ AccessGrantsLocationId?: string;
52
+ AccessGrantsLocationArn?: string;
53
+ LocationScope?: string;
54
+ IAMRoleArn?: string;
55
+ }
13
56
  export declare const NetworkOrigin: {
14
57
  readonly Internet: "Internet";
15
58
  readonly VPC: "VPC";
@@ -73,6 +116,10 @@ export interface AccountLevel {
73
116
  DetailedStatusCodesMetrics?: DetailedStatusCodesMetrics;
74
117
  StorageLensGroupLevel?: StorageLensGroupLevel;
75
118
  }
119
+ export interface AssociateAccessGrantsIdentityCenterRequest {
120
+ AccountId?: string;
121
+ IdentityCenterArn: string | undefined;
122
+ }
76
123
  export interface AsyncErrorDetails {
77
124
  Code?: string;
78
125
  Message?: string;
@@ -136,6 +183,59 @@ export interface AwsLambdaTransformation {
136
183
  FunctionArn: string | undefined;
137
184
  FunctionPayload?: string;
138
185
  }
186
+ export declare const S3PrefixType: {
187
+ readonly Object: "Object";
188
+ };
189
+ export type S3PrefixType = (typeof S3PrefixType)[keyof typeof S3PrefixType];
190
+ export interface Tag {
191
+ Key: string | undefined;
192
+ Value: string | undefined;
193
+ }
194
+ export interface CreateAccessGrantRequest {
195
+ AccountId?: string;
196
+ AccessGrantsLocationId: string | undefined;
197
+ AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
198
+ Grantee: Grantee | undefined;
199
+ Permission: Permission | undefined;
200
+ ApplicationArn?: string;
201
+ S3PrefixType?: S3PrefixType;
202
+ Tags?: Tag[];
203
+ }
204
+ export interface CreateAccessGrantResult {
205
+ CreatedAt?: Date;
206
+ AccessGrantId?: string;
207
+ AccessGrantArn?: string;
208
+ Grantee?: Grantee;
209
+ AccessGrantsLocationId?: string;
210
+ AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
211
+ Permission?: Permission;
212
+ ApplicationArn?: string;
213
+ GrantScope?: string;
214
+ }
215
+ export interface CreateAccessGrantsInstanceRequest {
216
+ AccountId?: string;
217
+ IdentityCenterArn?: string;
218
+ Tags?: Tag[];
219
+ }
220
+ export interface CreateAccessGrantsInstanceResult {
221
+ CreatedAt?: Date;
222
+ AccessGrantsInstanceId?: string;
223
+ AccessGrantsInstanceArn?: string;
224
+ IdentityCenterArn?: string;
225
+ }
226
+ export interface CreateAccessGrantsLocationRequest {
227
+ AccountId?: string;
228
+ LocationScope: string | undefined;
229
+ IAMRoleArn: string | undefined;
230
+ Tags?: Tag[];
231
+ }
232
+ export interface CreateAccessGrantsLocationResult {
233
+ CreatedAt?: Date;
234
+ AccessGrantsLocationId?: string;
235
+ AccessGrantsLocationArn?: string;
236
+ LocationScope?: string;
237
+ IAMRoleArn?: string;
238
+ }
139
239
  export interface CreateAccessPointRequest {
140
240
  AccountId?: string;
141
241
  Name: string | undefined;
@@ -656,15 +756,25 @@ export interface StorageLensGroup {
656
756
  Filter: StorageLensGroupFilter | undefined;
657
757
  StorageLensGroupArn?: string;
658
758
  }
659
- export interface Tag {
660
- Key: string | undefined;
661
- Value: string | undefined;
662
- }
663
759
  export interface CreateStorageLensGroupRequest {
664
760
  AccountId?: string;
665
761
  StorageLensGroup: StorageLensGroup | undefined;
666
762
  Tags?: Tag[];
667
763
  }
764
+ export interface DeleteAccessGrantRequest {
765
+ AccountId?: string;
766
+ AccessGrantId: string | undefined;
767
+ }
768
+ export interface DeleteAccessGrantsInstanceRequest {
769
+ AccountId?: string;
770
+ }
771
+ export interface DeleteAccessGrantsInstanceResourcePolicyRequest {
772
+ AccountId?: string;
773
+ }
774
+ export interface DeleteAccessGrantsLocationRequest {
775
+ AccountId?: string;
776
+ AccessGrantsLocationId: string | undefined;
777
+ }
668
778
  export interface DeleteAccessPointRequest {
669
779
  AccountId?: string;
670
780
  Name: string | undefined;
@@ -804,6 +914,60 @@ export interface DescribeMultiRegionAccessPointOperationRequest {
804
914
  export interface DescribeMultiRegionAccessPointOperationResult {
805
915
  AsyncOperation?: AsyncOperation;
806
916
  }
917
+ export interface DissociateAccessGrantsIdentityCenterRequest {
918
+ AccountId?: string;
919
+ }
920
+ export interface GetAccessGrantRequest {
921
+ AccountId?: string;
922
+ AccessGrantId: string | undefined;
923
+ }
924
+ export interface GetAccessGrantResult {
925
+ CreatedAt?: Date;
926
+ AccessGrantId?: string;
927
+ AccessGrantArn?: string;
928
+ Grantee?: Grantee;
929
+ Permission?: Permission;
930
+ AccessGrantsLocationId?: string;
931
+ AccessGrantsLocationConfiguration?: AccessGrantsLocationConfiguration;
932
+ GrantScope?: string;
933
+ ApplicationArn?: string;
934
+ }
935
+ export interface GetAccessGrantsInstanceRequest {
936
+ AccountId?: string;
937
+ }
938
+ export interface GetAccessGrantsInstanceResult {
939
+ AccessGrantsInstanceArn?: string;
940
+ AccessGrantsInstanceId?: string;
941
+ IdentityCenterArn?: string;
942
+ CreatedAt?: Date;
943
+ }
944
+ export interface GetAccessGrantsInstanceForPrefixRequest {
945
+ AccountId?: string;
946
+ S3Prefix: string | undefined;
947
+ }
948
+ export interface GetAccessGrantsInstanceForPrefixResult {
949
+ AccessGrantsInstanceArn?: string;
950
+ AccessGrantsInstanceId?: string;
951
+ }
952
+ export interface GetAccessGrantsInstanceResourcePolicyRequest {
953
+ AccountId?: string;
954
+ }
955
+ export interface GetAccessGrantsInstanceResourcePolicyResult {
956
+ Policy?: string;
957
+ Organization?: string;
958
+ CreatedAt?: Date;
959
+ }
960
+ export interface GetAccessGrantsLocationRequest {
961
+ AccountId?: string;
962
+ AccessGrantsLocationId: string | undefined;
963
+ }
964
+ export interface GetAccessGrantsLocationResult {
965
+ CreatedAt?: Date;
966
+ AccessGrantsLocationId?: string;
967
+ AccessGrantsLocationArn?: string;
968
+ LocationScope?: string;
969
+ IAMRoleArn?: string;
970
+ }
807
971
  export interface GetAccessPointRequest {
808
972
  AccountId?: string;
809
973
  Name: string | undefined;
@@ -1099,6 +1263,29 @@ export interface GetBucketVersioningResult {
1099
1263
  Status?: BucketVersioningStatus;
1100
1264
  MFADelete?: MFADeleteStatus;
1101
1265
  }
1266
+ export declare const Privilege: {
1267
+ readonly Default: "Default";
1268
+ readonly Minimal: "Minimal";
1269
+ };
1270
+ export type Privilege = (typeof Privilege)[keyof typeof Privilege];
1271
+ export interface GetDataAccessRequest {
1272
+ AccountId?: string;
1273
+ Target: string | undefined;
1274
+ Permission: Permission | undefined;
1275
+ DurationSeconds?: number;
1276
+ Privilege?: Privilege;
1277
+ TargetType?: S3PrefixType;
1278
+ }
1279
+ export interface Credentials {
1280
+ AccessKeyId?: string;
1281
+ SecretAccessKey?: string;
1282
+ SessionToken?: string;
1283
+ Expiration?: Date;
1284
+ }
1285
+ export interface GetDataAccessResult {
1286
+ Credentials?: Credentials;
1287
+ MatchedGrantTarget?: string;
1288
+ }
1102
1289
  export interface GetJobTaggingRequest {
1103
1290
  AccountId?: string;
1104
1291
  JobId: string | undefined;
@@ -1269,6 +1456,39 @@ export interface GetStorageLensGroupRequest {
1269
1456
  export interface GetStorageLensGroupResult {
1270
1457
  StorageLensGroup?: StorageLensGroup;
1271
1458
  }
1459
+ export interface ListAccessGrantsRequest {
1460
+ AccountId?: string;
1461
+ NextToken?: string;
1462
+ MaxResults?: number;
1463
+ GranteeType?: GranteeType;
1464
+ GranteeIdentifier?: string;
1465
+ Permission?: Permission;
1466
+ GrantScope?: string;
1467
+ ApplicationArn?: string;
1468
+ }
1469
+ export interface ListAccessGrantsResult {
1470
+ NextToken?: string;
1471
+ AccessGrantsList?: ListAccessGrantEntry[];
1472
+ }
1473
+ export interface ListAccessGrantsInstancesRequest {
1474
+ AccountId?: string;
1475
+ NextToken?: string;
1476
+ MaxResults?: number;
1477
+ }
1478
+ export interface ListAccessGrantsInstancesResult {
1479
+ NextToken?: string;
1480
+ AccessGrantsInstancesList?: ListAccessGrantsInstanceEntry[];
1481
+ }
1482
+ export interface ListAccessGrantsLocationsRequest {
1483
+ AccountId?: string;
1484
+ NextToken?: string;
1485
+ MaxResults?: number;
1486
+ LocationScope?: string;
1487
+ }
1488
+ export interface ListAccessGrantsLocationsResult {
1489
+ NextToken?: string;
1490
+ AccessGrantsLocationsList?: ListAccessGrantsLocationsEntry[];
1491
+ }
1272
1492
  export interface ListAccessPointsRequest {
1273
1493
  AccountId?: string;
1274
1494
  Bucket?: string;
@@ -1385,169 +1605,7 @@ export interface ListStorageLensGroupsRequest {
1385
1605
  AccountId?: string;
1386
1606
  NextToken?: string;
1387
1607
  }
1388
- export interface ListStorageLensGroupEntry {
1389
- Name: string | undefined;
1390
- StorageLensGroupArn: string | undefined;
1391
- HomeRegion: string | undefined;
1392
- }
1393
- export interface ListStorageLensGroupsResult {
1394
- NextToken?: string;
1395
- StorageLensGroupList?: ListStorageLensGroupEntry[];
1396
- }
1397
- export interface ListTagsForResourceRequest {
1398
- AccountId?: string;
1399
- ResourceArn: string | undefined;
1400
- }
1401
- export interface ListTagsForResourceResult {
1402
- Tags?: Tag[];
1403
- }
1404
- export interface PutAccessPointConfigurationForObjectLambdaRequest {
1405
- AccountId?: string;
1406
- Name: string | undefined;
1407
- Configuration: ObjectLambdaConfiguration | undefined;
1408
- }
1409
- export interface PutAccessPointPolicyRequest {
1410
- AccountId?: string;
1411
- Name: string | undefined;
1412
- Policy: string | undefined;
1413
- }
1414
- export interface PutAccessPointPolicyForObjectLambdaRequest {
1415
- AccountId?: string;
1416
- Name: string | undefined;
1417
- Policy: string | undefined;
1418
- }
1419
- export interface LifecycleConfiguration {
1420
- Rules?: LifecycleRule[];
1421
- }
1422
- export interface PutBucketLifecycleConfigurationRequest {
1423
- AccountId?: string;
1424
- Bucket: string | undefined;
1425
- LifecycleConfiguration?: LifecycleConfiguration;
1426
- }
1427
- export interface PutBucketPolicyRequest {
1428
- AccountId?: string;
1429
- Bucket: string | undefined;
1430
- ConfirmRemoveSelfBucketAccess?: boolean;
1431
- Policy: string | undefined;
1432
- }
1433
- export interface PutBucketReplicationRequest {
1434
- AccountId?: string;
1435
- Bucket: string | undefined;
1436
- ReplicationConfiguration: ReplicationConfiguration | undefined;
1437
- }
1438
- export interface Tagging {
1439
- TagSet: S3Tag[] | undefined;
1440
- }
1441
- export interface PutBucketTaggingRequest {
1442
- AccountId?: string;
1443
- Bucket: string | undefined;
1444
- Tagging: Tagging | undefined;
1445
- }
1446
- export declare const MFADelete: {
1447
- readonly Disabled: "Disabled";
1448
- readonly Enabled: "Enabled";
1449
- };
1450
- export type MFADelete = (typeof MFADelete)[keyof typeof MFADelete];
1451
- export interface VersioningConfiguration {
1452
- MFADelete?: MFADelete;
1453
- Status?: BucketVersioningStatus;
1454
- }
1455
- export interface PutBucketVersioningRequest {
1456
- AccountId?: string;
1457
- Bucket: string | undefined;
1458
- MFA?: string;
1459
- VersioningConfiguration: VersioningConfiguration | undefined;
1460
- }
1461
- export interface PutJobTaggingRequest {
1462
- AccountId?: string;
1463
- JobId: string | undefined;
1464
- Tags: S3Tag[] | undefined;
1465
- }
1466
- export interface PutJobTaggingResult {}
1467
- export declare class TooManyTagsException extends __BaseException {
1468
- readonly name: "TooManyTagsException";
1469
- readonly $fault: "client";
1470
- Message?: string;
1471
- constructor(
1472
- opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
1473
- );
1474
- }
1475
- export interface PutMultiRegionAccessPointPolicyRequest {
1476
- AccountId?: string;
1477
- ClientToken?: string;
1478
- Details: PutMultiRegionAccessPointPolicyInput | undefined;
1479
- }
1480
- export interface PutMultiRegionAccessPointPolicyResult {
1481
- RequestTokenARN?: string;
1482
- }
1483
- export interface PutPublicAccessBlockRequest {
1484
- PublicAccessBlockConfiguration: PublicAccessBlockConfiguration | undefined;
1485
- AccountId?: string;
1486
- }
1487
- export interface PutStorageLensConfigurationRequest {
1488
- ConfigId: string | undefined;
1489
- AccountId?: string;
1490
- StorageLensConfiguration: StorageLensConfiguration | undefined;
1491
- Tags?: StorageLensTag[];
1492
- }
1493
- export interface PutStorageLensConfigurationTaggingRequest {
1494
- ConfigId: string | undefined;
1495
- AccountId?: string;
1496
- Tags: StorageLensTag[] | undefined;
1497
- }
1498
- export interface PutStorageLensConfigurationTaggingResult {}
1499
- export interface SubmitMultiRegionAccessPointRoutesRequest {
1500
- AccountId?: string;
1501
- Mrap: string | undefined;
1502
- RouteUpdates: MultiRegionAccessPointRoute[] | undefined;
1503
- }
1504
- export interface SubmitMultiRegionAccessPointRoutesResult {}
1505
- export interface TagResourceRequest {
1506
- AccountId?: string;
1507
- ResourceArn: string | undefined;
1508
- Tags: Tag[] | undefined;
1509
- }
1510
- export interface TagResourceResult {}
1511
- export interface UntagResourceRequest {
1512
- AccountId?: string;
1513
- ResourceArn: string | undefined;
1514
- TagKeys: string[] | undefined;
1515
- }
1516
- export interface UntagResourceResult {}
1517
- export interface UpdateJobPriorityRequest {
1518
- AccountId?: string;
1519
- JobId: string | undefined;
1520
- Priority: number | undefined;
1521
- }
1522
- export interface UpdateJobPriorityResult {
1523
- JobId: string | undefined;
1524
- Priority: number | undefined;
1525
- }
1526
- export declare class JobStatusException extends __BaseException {
1527
- readonly name: "JobStatusException";
1528
- readonly $fault: "client";
1529
- Message?: string;
1530
- constructor(opts: __ExceptionOptionType<JobStatusException, __BaseException>);
1531
- }
1532
- export declare const RequestedJobStatus: {
1533
- readonly Cancelled: "Cancelled";
1534
- readonly Ready: "Ready";
1535
- };
1536
- export type RequestedJobStatus =
1537
- (typeof RequestedJobStatus)[keyof typeof RequestedJobStatus];
1538
- export interface UpdateJobStatusRequest {
1539
- AccountId?: string;
1540
- JobId: string | undefined;
1541
- RequestedJobStatus: RequestedJobStatus | undefined;
1542
- StatusUpdateReason?: string;
1543
- }
1544
- export interface UpdateJobStatusResult {
1545
- JobId?: string;
1546
- Status?: JobStatus;
1547
- StatusUpdateReason?: string;
1548
- }
1549
- export interface UpdateStorageLensGroupRequest {
1550
- Name: string | undefined;
1551
- AccountId?: string;
1552
- StorageLensGroup: StorageLensGroup | undefined;
1553
- }
1608
+ export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
1609
+ export declare const GetDataAccessResultFilterSensitiveLog: (
1610
+ obj: GetDataAccessResult
1611
+ ) => any;