@aws-sdk/client-s3-control 3.637.0 → 3.649.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/README.md +8 -0
- package/dist-cjs/endpoint/endpointResolver.js +17 -2
- package/dist-cjs/index.js +171 -54
- package/dist-es/S3Control.js +2 -0
- package/dist-es/commands/ListCallerAccessGrantsCommand.js +30 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/endpoint/endpointResolver.js +18 -3
- package/dist-es/pagination/ListCallerAccessGrantsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restXml.js +89 -0
- package/dist-types/S3Control.d.ts +8 -0
- package/dist-types/S3ControlClient.d.ts +3 -2
- package/dist-types/commands/CreateAccessGrantsInstanceCommand.d.ts +2 -0
- package/dist-types/commands/GetAccessGrantsInstanceCommand.d.ts +6 -0
- package/dist-types/commands/ListAccessGrantsInstancesCommand.d.ts +2 -0
- package/dist-types/commands/ListCallerAccessGrantsCommand.d.ts +77 -0
- package/dist-types/commands/ListStorageLensConfigurationsCommand.d.ts +2 -1
- package/dist-types/commands/ListStorageLensGroupsCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +148 -93
- package/dist-types/models/models_1.d.ts +67 -2
- package/dist-types/pagination/ListCallerAccessGrantsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restXml.d.ts +9 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/runtimeConfig.d.ts +2 -0
- package/dist-types/runtimeConfig.native.d.ts +2 -0
- package/dist-types/ts3.4/S3Control.d.ts +18 -0
- package/dist-types/ts3.4/S3ControlClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/ListCallerAccessGrantsCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListStorageLensConfigurationsCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/ListStorageLensGroupsCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +22 -14
- package/dist-types/ts3.4/models/models_1.d.ts +14 -0
- package/dist-types/ts3.4/pagination/ListCallerAccessGrantsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restXml.d.ts +12 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +2 -0
- package/package.json +41 -41
|
@@ -58,10 +58,22 @@ export interface ListAccessGrantsInstanceEntry {
|
|
|
58
58
|
*/
|
|
59
59
|
CreatedAt?: Date;
|
|
60
60
|
/**
|
|
61
|
+
* @deprecated
|
|
62
|
+
*
|
|
61
63
|
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
62
64
|
* @public
|
|
63
65
|
*/
|
|
64
66
|
IdentityCenterArn?: string;
|
|
67
|
+
/**
|
|
68
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
69
|
+
* @public
|
|
70
|
+
*/
|
|
71
|
+
IdentityCenterInstanceArn?: string;
|
|
72
|
+
/**
|
|
73
|
+
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
74
|
+
* @public
|
|
75
|
+
*/
|
|
76
|
+
IdentityCenterApplicationArn?: string;
|
|
65
77
|
}
|
|
66
78
|
/**
|
|
67
79
|
* <p>The configuration options of the S3 Access Grants location. It contains the <code>S3SubPrefix</code> field. The grant scope, the data to which you are granting access, is the result of appending the <code>Subprefix</code> field to the scope of the registered location.</p>
|
|
@@ -275,7 +287,7 @@ export interface AccessPoint {
|
|
|
275
287
|
* <p>The virtual private cloud (VPC) configuration for this access point, if one exists.</p>
|
|
276
288
|
* <note>
|
|
277
289
|
* <p>This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other
|
|
278
|
-
* Amazon Web
|
|
290
|
+
* Amazon Web Servicesservices.</p>
|
|
279
291
|
* </note>
|
|
280
292
|
* @public
|
|
281
293
|
*/
|
|
@@ -520,7 +532,7 @@ export interface AccountLevel {
|
|
|
520
532
|
*/
|
|
521
533
|
export interface AssociateAccessGrantsIdentityCenterRequest {
|
|
522
534
|
/**
|
|
523
|
-
* <p>The
|
|
535
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
524
536
|
* @public
|
|
525
537
|
*/
|
|
526
538
|
AccountId?: string;
|
|
@@ -621,7 +633,7 @@ export interface PublicAccessBlockConfiguration {
|
|
|
621
633
|
/**
|
|
622
634
|
* <p>Specifies whether Amazon S3 should restrict public bucket policies for buckets in this
|
|
623
635
|
* account. Setting this element to <code>TRUE</code> restricts access to buckets with public
|
|
624
|
-
* policies to only Amazon Web
|
|
636
|
+
* policies to only Amazon Web Servicesservice principals and authorized users within this
|
|
625
637
|
* account.</p>
|
|
626
638
|
* <p>Enabling this setting doesn't affect previously stored bucket policies, except that
|
|
627
639
|
* public and cross-account access within any public bucket policy, including non-public
|
|
@@ -858,7 +870,7 @@ export interface Tag {
|
|
|
858
870
|
*/
|
|
859
871
|
export interface CreateAccessGrantRequest {
|
|
860
872
|
/**
|
|
861
|
-
* <p>The
|
|
873
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
862
874
|
* @public
|
|
863
875
|
*/
|
|
864
876
|
AccountId?: string;
|
|
@@ -982,7 +994,7 @@ export interface CreateAccessGrantResult {
|
|
|
982
994
|
*/
|
|
983
995
|
export interface CreateAccessGrantsInstanceRequest {
|
|
984
996
|
/**
|
|
985
|
-
* <p>The
|
|
997
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
986
998
|
* @public
|
|
987
999
|
*/
|
|
988
1000
|
AccountId?: string;
|
|
@@ -1012,22 +1024,34 @@ export interface CreateAccessGrantsInstanceResult {
|
|
|
1012
1024
|
*/
|
|
1013
1025
|
AccessGrantsInstanceId?: string;
|
|
1014
1026
|
/**
|
|
1015
|
-
* <p>The Amazon Resource Name (ARN) of the S3 Access Grants instance. </p>
|
|
1027
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
1016
1028
|
* @public
|
|
1017
1029
|
*/
|
|
1018
1030
|
AccessGrantsInstanceArn?: string;
|
|
1019
1031
|
/**
|
|
1020
|
-
*
|
|
1032
|
+
* @deprecated
|
|
1033
|
+
*
|
|
1034
|
+
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
1021
1035
|
* @public
|
|
1022
1036
|
*/
|
|
1023
1037
|
IdentityCenterArn?: string;
|
|
1038
|
+
/**
|
|
1039
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
1040
|
+
* @public
|
|
1041
|
+
*/
|
|
1042
|
+
IdentityCenterInstanceArn?: string;
|
|
1043
|
+
/**
|
|
1044
|
+
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
1045
|
+
* @public
|
|
1046
|
+
*/
|
|
1047
|
+
IdentityCenterApplicationArn?: string;
|
|
1024
1048
|
}
|
|
1025
1049
|
/**
|
|
1026
1050
|
* @public
|
|
1027
1051
|
*/
|
|
1028
1052
|
export interface CreateAccessGrantsLocationRequest {
|
|
1029
1053
|
/**
|
|
1030
|
-
* <p>The
|
|
1054
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
1031
1055
|
* @public
|
|
1032
1056
|
*/
|
|
1033
1057
|
AccountId?: string;
|
|
@@ -1603,19 +1627,19 @@ export interface JobManifest {
|
|
|
1603
1627
|
export interface KeyNameConstraint {
|
|
1604
1628
|
/**
|
|
1605
1629
|
* <p>If provided, the generated manifest includes objects where the specified string appears
|
|
1606
|
-
* at the start of the object key string.</p>
|
|
1630
|
+
* at the start of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.</p>
|
|
1607
1631
|
* @public
|
|
1608
1632
|
*/
|
|
1609
1633
|
MatchAnyPrefix?: string[];
|
|
1610
1634
|
/**
|
|
1611
1635
|
* <p>If provided, the generated manifest includes objects where the specified string appears
|
|
1612
|
-
* at the end of the object key string.</p>
|
|
1636
|
+
* at the end of the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.</p>
|
|
1613
1637
|
* @public
|
|
1614
1638
|
*/
|
|
1615
1639
|
MatchAnySuffix?: string[];
|
|
1616
1640
|
/**
|
|
1617
1641
|
* <p>If provided, the generated manifest includes objects where the specified string appears
|
|
1618
|
-
* anywhere within the object key string.</p>
|
|
1642
|
+
* anywhere within the object key string. Each KeyNameConstraint filter accepts an array of strings with a length of 1 string.</p>
|
|
1619
1643
|
* @public
|
|
1620
1644
|
*/
|
|
1621
1645
|
MatchAnySubstring?: string[];
|
|
@@ -1802,7 +1826,7 @@ export interface S3JobManifestGenerator {
|
|
|
1802
1826
|
*/
|
|
1803
1827
|
ExpectedBucketOwner?: string;
|
|
1804
1828
|
/**
|
|
1805
|
-
* <p>The source bucket used by the ManifestGenerator.</p>
|
|
1829
|
+
* <p>The ARN of the source bucket used by the ManifestGenerator.</p>
|
|
1806
1830
|
* <note>
|
|
1807
1831
|
* <p>
|
|
1808
1832
|
* <b>Directory buckets</b> - Directory buckets aren't supported
|
|
@@ -3100,7 +3124,7 @@ export interface CreateStorageLensGroupRequest {
|
|
|
3100
3124
|
*/
|
|
3101
3125
|
export interface DeleteAccessGrantRequest {
|
|
3102
3126
|
/**
|
|
3103
|
-
* <p>The
|
|
3127
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3104
3128
|
* @public
|
|
3105
3129
|
*/
|
|
3106
3130
|
AccountId?: string;
|
|
@@ -3115,7 +3139,7 @@ export interface DeleteAccessGrantRequest {
|
|
|
3115
3139
|
*/
|
|
3116
3140
|
export interface DeleteAccessGrantsInstanceRequest {
|
|
3117
3141
|
/**
|
|
3118
|
-
* <p>The
|
|
3142
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3119
3143
|
* @public
|
|
3120
3144
|
*/
|
|
3121
3145
|
AccountId?: string;
|
|
@@ -3125,7 +3149,7 @@ export interface DeleteAccessGrantsInstanceRequest {
|
|
|
3125
3149
|
*/
|
|
3126
3150
|
export interface DeleteAccessGrantsInstanceResourcePolicyRequest {
|
|
3127
3151
|
/**
|
|
3128
|
-
* <p>The
|
|
3152
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3129
3153
|
* @public
|
|
3130
3154
|
*/
|
|
3131
3155
|
AccountId?: string;
|
|
@@ -3135,7 +3159,7 @@ export interface DeleteAccessGrantsInstanceResourcePolicyRequest {
|
|
|
3135
3159
|
*/
|
|
3136
3160
|
export interface DeleteAccessGrantsLocationRequest {
|
|
3137
3161
|
/**
|
|
3138
|
-
* <p>The
|
|
3162
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3139
3163
|
* @public
|
|
3140
3164
|
*/
|
|
3141
3165
|
AccountId?: string;
|
|
@@ -3694,7 +3718,7 @@ export interface DescribeMultiRegionAccessPointOperationResult {
|
|
|
3694
3718
|
*/
|
|
3695
3719
|
export interface DissociateAccessGrantsIdentityCenterRequest {
|
|
3696
3720
|
/**
|
|
3697
|
-
* <p>The
|
|
3721
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3698
3722
|
* @public
|
|
3699
3723
|
*/
|
|
3700
3724
|
AccountId?: string;
|
|
@@ -3704,7 +3728,7 @@ export interface DissociateAccessGrantsIdentityCenterRequest {
|
|
|
3704
3728
|
*/
|
|
3705
3729
|
export interface GetAccessGrantRequest {
|
|
3706
3730
|
/**
|
|
3707
|
-
* <p>The
|
|
3731
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3708
3732
|
* @public
|
|
3709
3733
|
*/
|
|
3710
3734
|
AccountId?: string;
|
|
@@ -3783,7 +3807,7 @@ export interface GetAccessGrantResult {
|
|
|
3783
3807
|
*/
|
|
3784
3808
|
export interface GetAccessGrantsInstanceRequest {
|
|
3785
3809
|
/**
|
|
3786
|
-
* <p>The
|
|
3810
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3787
3811
|
* @public
|
|
3788
3812
|
*/
|
|
3789
3813
|
AccountId?: string;
|
|
@@ -3803,10 +3827,22 @@ export interface GetAccessGrantsInstanceResult {
|
|
|
3803
3827
|
*/
|
|
3804
3828
|
AccessGrantsInstanceId?: string;
|
|
3805
3829
|
/**
|
|
3806
|
-
*
|
|
3830
|
+
* @deprecated
|
|
3831
|
+
*
|
|
3832
|
+
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
3807
3833
|
* @public
|
|
3808
3834
|
*/
|
|
3809
3835
|
IdentityCenterArn?: string;
|
|
3836
|
+
/**
|
|
3837
|
+
* <p>The Amazon Resource Name (ARN) of the Amazon Web Services IAM Identity Center instance that you are associating with your S3 Access Grants instance. An IAM Identity Center instance is your corporate identity directory that you added to the IAM Identity Center. You can use the <a href="https://docs.aws.amazon.com/singlesignon/latest/APIReference/API_ListInstances.html">ListInstances</a> API operation to retrieve a list of your Identity Center instances and their ARNs.</p>
|
|
3838
|
+
* @public
|
|
3839
|
+
*/
|
|
3840
|
+
IdentityCenterInstanceArn?: string;
|
|
3841
|
+
/**
|
|
3842
|
+
* <p>If you associated your S3 Access Grants instance with an Amazon Web Services IAM Identity Center instance, this field returns the Amazon Resource Name (ARN) of the IAM Identity Center instance application; a subresource of the original Identity Center instance. S3 Access Grants creates this Identity Center application for the specific S3 Access Grants instance. </p>
|
|
3843
|
+
* @public
|
|
3844
|
+
*/
|
|
3845
|
+
IdentityCenterApplicationArn?: string;
|
|
3810
3846
|
/**
|
|
3811
3847
|
* <p>The date and time when you created the S3 Access Grants instance. </p>
|
|
3812
3848
|
* @public
|
|
@@ -3848,7 +3884,7 @@ export interface GetAccessGrantsInstanceForPrefixResult {
|
|
|
3848
3884
|
*/
|
|
3849
3885
|
export interface GetAccessGrantsInstanceResourcePolicyRequest {
|
|
3850
3886
|
/**
|
|
3851
|
-
* <p>The
|
|
3887
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3852
3888
|
* @public
|
|
3853
3889
|
*/
|
|
3854
3890
|
AccountId?: string;
|
|
@@ -3878,7 +3914,7 @@ export interface GetAccessGrantsInstanceResourcePolicyResult {
|
|
|
3878
3914
|
*/
|
|
3879
3915
|
export interface GetAccessGrantsLocationRequest {
|
|
3880
3916
|
/**
|
|
3881
|
-
* <p>The
|
|
3917
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
3882
3918
|
* @public
|
|
3883
3919
|
*/
|
|
3884
3920
|
AccountId?: string;
|
|
@@ -3964,7 +4000,7 @@ export interface GetAccessPointResult {
|
|
|
3964
4000
|
* <p>Contains the virtual private cloud (VPC) configuration for the specified access point.</p>
|
|
3965
4001
|
* <note>
|
|
3966
4002
|
* <p>This element is empty if this access point is an Amazon S3 on Outposts access point that is used by other
|
|
3967
|
-
* Amazon Web
|
|
4003
|
+
* Amazon Web Servicesservices.</p>
|
|
3968
4004
|
* </note>
|
|
3969
4005
|
* @public
|
|
3970
4006
|
*/
|
|
@@ -4568,7 +4604,10 @@ export interface DeleteMarkerReplication {
|
|
|
4568
4604
|
}
|
|
4569
4605
|
/**
|
|
4570
4606
|
* <p>Specifies encryption-related information for an Amazon S3 bucket that is a destination for
|
|
4571
|
-
* replicated objects
|
|
4607
|
+
* replicated objects. If you're specifying a customer managed KMS key, we recommend using a fully qualified
|
|
4608
|
+
* KMS key ARN. If you use a KMS key alias instead, then KMS resolves the key within the
|
|
4609
|
+
* requester’s account. This behavior can result in data that's encrypted with a KMS key
|
|
4610
|
+
* that belongs to the requester, and not the bucket owner.</p>
|
|
4572
4611
|
* <note>
|
|
4573
4612
|
* <p>This is not supported by Amazon S3 on Outposts buckets.</p>
|
|
4574
4613
|
* </note>
|
|
@@ -5182,7 +5221,7 @@ export type Privilege = (typeof Privilege)[keyof typeof Privilege];
|
|
|
5182
5221
|
*/
|
|
5183
5222
|
export interface GetDataAccessRequest {
|
|
5184
5223
|
/**
|
|
5185
|
-
* <p>The
|
|
5224
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
5186
5225
|
* @public
|
|
5187
5226
|
*/
|
|
5188
5227
|
AccountId?: string;
|
|
@@ -5967,7 +6006,7 @@ export interface GetStorageLensGroupResult {
|
|
|
5967
6006
|
*/
|
|
5968
6007
|
export interface ListAccessGrantsRequest {
|
|
5969
6008
|
/**
|
|
5970
|
-
* <p>The
|
|
6009
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
5971
6010
|
* @public
|
|
5972
6011
|
*/
|
|
5973
6012
|
AccountId?: string;
|
|
@@ -6055,7 +6094,7 @@ export interface ListAccessGrantsResult {
|
|
|
6055
6094
|
*/
|
|
6056
6095
|
export interface ListAccessGrantsInstancesRequest {
|
|
6057
6096
|
/**
|
|
6058
|
-
* <p>The
|
|
6097
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
6059
6098
|
* @public
|
|
6060
6099
|
*/
|
|
6061
6100
|
AccountId?: string;
|
|
@@ -6090,7 +6129,7 @@ export interface ListAccessGrantsInstancesResult {
|
|
|
6090
6129
|
*/
|
|
6091
6130
|
export interface ListAccessGrantsLocationsRequest {
|
|
6092
6131
|
/**
|
|
6093
|
-
* <p>The
|
|
6132
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
6094
6133
|
* @public
|
|
6095
6134
|
*/
|
|
6096
6135
|
AccountId?: string;
|
|
@@ -6239,6 +6278,87 @@ export interface ListAccessPointsForObjectLambdaResult {
|
|
|
6239
6278
|
*/
|
|
6240
6279
|
NextToken?: string;
|
|
6241
6280
|
}
|
|
6281
|
+
/**
|
|
6282
|
+
* @public
|
|
6283
|
+
*/
|
|
6284
|
+
export interface ListCallerAccessGrantsRequest {
|
|
6285
|
+
/**
|
|
6286
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
6287
|
+
* @public
|
|
6288
|
+
*/
|
|
6289
|
+
AccountId?: string;
|
|
6290
|
+
/**
|
|
6291
|
+
* <p>The S3 path of the data that you would like to access. Must start with <code>s3://</code>. You can optionally pass only the beginning characters of a path, and S3 Access Grants will search for all applicable grants for the path fragment. </p>
|
|
6292
|
+
* @public
|
|
6293
|
+
*/
|
|
6294
|
+
GrantScope?: string;
|
|
6295
|
+
/**
|
|
6296
|
+
* <p>A pagination token to request the next page of results. Pass this value into a subsequent <code>List Caller Access Grants</code> request in order to retrieve the next page of results.</p>
|
|
6297
|
+
* @public
|
|
6298
|
+
*/
|
|
6299
|
+
NextToken?: string;
|
|
6300
|
+
/**
|
|
6301
|
+
* <p>The maximum number of access grants that you would like returned in the <code>List Caller Access Grants</code> response. If the results include the pagination token <code>NextToken</code>, make another call using the <code>NextToken</code> to determine if there are more results.</p>
|
|
6302
|
+
* @public
|
|
6303
|
+
*/
|
|
6304
|
+
MaxResults?: number;
|
|
6305
|
+
/**
|
|
6306
|
+
* <p>If this optional parameter is passed in the request, a filter is applied to the results. The results will include only the access grants for the caller's Identity Center application or for any other applications (<code>ALL</code>).</p>
|
|
6307
|
+
* @public
|
|
6308
|
+
*/
|
|
6309
|
+
AllowedByApplication?: boolean;
|
|
6310
|
+
}
|
|
6311
|
+
/**
|
|
6312
|
+
* <p>Part of <code>ListCallerAccessGrantsResult</code>. Each entry includes the
|
|
6313
|
+
* permission level (READ, WRITE, or READWRITE) and the grant scope of the access grant. If the grant also includes an application ARN, the grantee can only access the S3 data through this application.</p>
|
|
6314
|
+
* @public
|
|
6315
|
+
*/
|
|
6316
|
+
export interface ListCallerAccessGrantsEntry {
|
|
6317
|
+
/**
|
|
6318
|
+
* <p>The type of permission granted, which can be one of the following values:</p>
|
|
6319
|
+
* <ul>
|
|
6320
|
+
* <li>
|
|
6321
|
+
* <p>
|
|
6322
|
+
* <code>READ</code> - Grants read-only access to the S3 data.</p>
|
|
6323
|
+
* </li>
|
|
6324
|
+
* <li>
|
|
6325
|
+
* <p>
|
|
6326
|
+
* <code>WRITE</code> - Grants write-only access to the S3 data.</p>
|
|
6327
|
+
* </li>
|
|
6328
|
+
* <li>
|
|
6329
|
+
* <p>
|
|
6330
|
+
* <code>READWRITE</code> - Grants both read and write access to the S3 data.</p>
|
|
6331
|
+
* </li>
|
|
6332
|
+
* </ul>
|
|
6333
|
+
* @public
|
|
6334
|
+
*/
|
|
6335
|
+
Permission?: Permission;
|
|
6336
|
+
/**
|
|
6337
|
+
* <p>The S3 path of the data to which you have been granted access. </p>
|
|
6338
|
+
* @public
|
|
6339
|
+
*/
|
|
6340
|
+
GrantScope?: string;
|
|
6341
|
+
/**
|
|
6342
|
+
* <p>The Amazon Resource Name (ARN) of an Amazon Web Services IAM Identity Center application associated with your Identity Center instance. If the grant includes an application ARN, the grantee can only access the S3 data through this application. </p>
|
|
6343
|
+
* @public
|
|
6344
|
+
*/
|
|
6345
|
+
ApplicationArn?: string;
|
|
6346
|
+
}
|
|
6347
|
+
/**
|
|
6348
|
+
* @public
|
|
6349
|
+
*/
|
|
6350
|
+
export interface ListCallerAccessGrantsResult {
|
|
6351
|
+
/**
|
|
6352
|
+
* <p>A pagination token that you can use to request the next page of results. Pass this value into a subsequent <code>List Caller Access Grants</code> request in order to retrieve the next page of results.</p>
|
|
6353
|
+
* @public
|
|
6354
|
+
*/
|
|
6355
|
+
NextToken?: string;
|
|
6356
|
+
/**
|
|
6357
|
+
* <p>A list of the caller's access grants that were created using S3 Access Grants and that grant the caller access to the S3 data of the Amazon Web Services account ID that was specified in the request. </p>
|
|
6358
|
+
* @public
|
|
6359
|
+
*/
|
|
6360
|
+
CallerAccessGrantsList?: ListCallerAccessGrantsEntry[];
|
|
6361
|
+
}
|
|
6242
6362
|
/**
|
|
6243
6363
|
* <p></p>
|
|
6244
6364
|
* @public
|
|
@@ -6513,71 +6633,6 @@ export interface ListStorageLensConfigurationsRequest {
|
|
|
6513
6633
|
*/
|
|
6514
6634
|
NextToken?: string;
|
|
6515
6635
|
}
|
|
6516
|
-
/**
|
|
6517
|
-
* <p>Part of <code>ListStorageLensConfigurationResult</code>. Each entry includes the
|
|
6518
|
-
* description of the S3 Storage Lens configuration, its home Region, whether it is enabled, its
|
|
6519
|
-
* Amazon Resource Name (ARN), and config ID.</p>
|
|
6520
|
-
* @public
|
|
6521
|
-
*/
|
|
6522
|
-
export interface ListStorageLensConfigurationEntry {
|
|
6523
|
-
/**
|
|
6524
|
-
* <p>A container for the S3 Storage Lens configuration ID.</p>
|
|
6525
|
-
* @public
|
|
6526
|
-
*/
|
|
6527
|
-
Id: string | undefined;
|
|
6528
|
-
/**
|
|
6529
|
-
* <p>The ARN of the S3 Storage Lens configuration. This property is read-only.</p>
|
|
6530
|
-
* @public
|
|
6531
|
-
*/
|
|
6532
|
-
StorageLensArn: string | undefined;
|
|
6533
|
-
/**
|
|
6534
|
-
* <p>A container for the S3 Storage Lens home Region. Your metrics data is stored and retained in
|
|
6535
|
-
* your designated S3 Storage Lens home Region.</p>
|
|
6536
|
-
* @public
|
|
6537
|
-
*/
|
|
6538
|
-
HomeRegion: string | undefined;
|
|
6539
|
-
/**
|
|
6540
|
-
* <p>A container for whether the S3 Storage Lens configuration is enabled. This property is
|
|
6541
|
-
* required.</p>
|
|
6542
|
-
* @public
|
|
6543
|
-
*/
|
|
6544
|
-
IsEnabled?: boolean;
|
|
6545
|
-
}
|
|
6546
|
-
/**
|
|
6547
|
-
* @public
|
|
6548
|
-
*/
|
|
6549
|
-
export interface ListStorageLensConfigurationsResult {
|
|
6550
|
-
/**
|
|
6551
|
-
* <p>If the request produced more than the maximum number of S3 Storage Lens configuration results,
|
|
6552
|
-
* you can pass this value into a subsequent request to retrieve the next page of
|
|
6553
|
-
* results.</p>
|
|
6554
|
-
* @public
|
|
6555
|
-
*/
|
|
6556
|
-
NextToken?: string;
|
|
6557
|
-
/**
|
|
6558
|
-
* <p>A list of S3 Storage Lens configurations.</p>
|
|
6559
|
-
* @public
|
|
6560
|
-
*/
|
|
6561
|
-
StorageLensConfigurationList?: ListStorageLensConfigurationEntry[];
|
|
6562
|
-
}
|
|
6563
|
-
/**
|
|
6564
|
-
* @public
|
|
6565
|
-
*/
|
|
6566
|
-
export interface ListStorageLensGroupsRequest {
|
|
6567
|
-
/**
|
|
6568
|
-
* <p>
|
|
6569
|
-
* The Amazon Web Services account ID that owns the Storage Lens groups.
|
|
6570
|
-
* </p>
|
|
6571
|
-
* @public
|
|
6572
|
-
*/
|
|
6573
|
-
AccountId?: string;
|
|
6574
|
-
/**
|
|
6575
|
-
* <p>The token for the next set of results, or <code>null</code> if there are no more results.
|
|
6576
|
-
* </p>
|
|
6577
|
-
* @public
|
|
6578
|
-
*/
|
|
6579
|
-
NextToken?: string;
|
|
6580
|
-
}
|
|
6581
6636
|
/**
|
|
6582
6637
|
* @internal
|
|
6583
6638
|
*/
|
|
@@ -1,6 +1,71 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { BucketVersioningStatus, JobStatus, LifecycleRule, MultiRegionAccessPointRoute, ObjectLambdaConfiguration, PublicAccessBlockConfiguration, PutMultiRegionAccessPointPolicyInput, ReplicationConfiguration, S3Tag, StorageLensConfiguration, StorageLensGroup, StorageLensTag, Tag } from "./models_0";
|
|
3
3
|
import { S3ControlServiceException as __BaseException } from "./S3ControlServiceException";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Part of <code>ListStorageLensConfigurationResult</code>. Each entry includes the
|
|
6
|
+
* description of the S3 Storage Lens configuration, its home Region, whether it is enabled, its
|
|
7
|
+
* Amazon Resource Name (ARN), and config ID.</p>
|
|
8
|
+
* @public
|
|
9
|
+
*/
|
|
10
|
+
export interface ListStorageLensConfigurationEntry {
|
|
11
|
+
/**
|
|
12
|
+
* <p>A container for the S3 Storage Lens configuration ID.</p>
|
|
13
|
+
* @public
|
|
14
|
+
*/
|
|
15
|
+
Id: string | undefined;
|
|
16
|
+
/**
|
|
17
|
+
* <p>The ARN of the S3 Storage Lens configuration. This property is read-only.</p>
|
|
18
|
+
* @public
|
|
19
|
+
*/
|
|
20
|
+
StorageLensArn: string | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* <p>A container for the S3 Storage Lens home Region. Your metrics data is stored and retained in
|
|
23
|
+
* your designated S3 Storage Lens home Region.</p>
|
|
24
|
+
* @public
|
|
25
|
+
*/
|
|
26
|
+
HomeRegion: string | undefined;
|
|
27
|
+
/**
|
|
28
|
+
* <p>A container for whether the S3 Storage Lens configuration is enabled. This property is
|
|
29
|
+
* required.</p>
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
IsEnabled?: boolean;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* @public
|
|
36
|
+
*/
|
|
37
|
+
export interface ListStorageLensConfigurationsResult {
|
|
38
|
+
/**
|
|
39
|
+
* <p>If the request produced more than the maximum number of S3 Storage Lens configuration results,
|
|
40
|
+
* you can pass this value into a subsequent request to retrieve the next page of
|
|
41
|
+
* results.</p>
|
|
42
|
+
* @public
|
|
43
|
+
*/
|
|
44
|
+
NextToken?: string;
|
|
45
|
+
/**
|
|
46
|
+
* <p>A list of S3 Storage Lens configurations.</p>
|
|
47
|
+
* @public
|
|
48
|
+
*/
|
|
49
|
+
StorageLensConfigurationList?: ListStorageLensConfigurationEntry[];
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
*/
|
|
54
|
+
export interface ListStorageLensGroupsRequest {
|
|
55
|
+
/**
|
|
56
|
+
* <p>
|
|
57
|
+
* The Amazon Web Services account ID that owns the Storage Lens groups.
|
|
58
|
+
* </p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
AccountId?: string;
|
|
62
|
+
/**
|
|
63
|
+
* <p>The token for the next set of results, or <code>null</code> if there are no more results.
|
|
64
|
+
* </p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
NextToken?: string;
|
|
68
|
+
}
|
|
4
69
|
/**
|
|
5
70
|
* <p>
|
|
6
71
|
* Each entry contains a Storage Lens group that exists in the specified home Region.
|
|
@@ -88,7 +153,7 @@ export interface ListTagsForResourceResult {
|
|
|
88
153
|
*/
|
|
89
154
|
export interface PutAccessGrantsInstanceResourcePolicyRequest {
|
|
90
155
|
/**
|
|
91
|
-
* <p>The
|
|
156
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
92
157
|
* @public
|
|
93
158
|
*/
|
|
94
159
|
AccountId?: string;
|
|
@@ -594,7 +659,7 @@ export interface UntagResourceResult {
|
|
|
594
659
|
*/
|
|
595
660
|
export interface UpdateAccessGrantsLocationRequest {
|
|
596
661
|
/**
|
|
597
|
-
* <p>The
|
|
662
|
+
* <p>The Amazon Web Services account ID of the S3 Access Grants instance.</p>
|
|
598
663
|
* @public
|
|
599
664
|
*/
|
|
600
665
|
AccountId?: string;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListCallerAccessGrantsCommandInput, ListCallerAccessGrantsCommandOutput } from "../commands/ListCallerAccessGrantsCommand";
|
|
3
|
+
import { S3ControlPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListCallerAccessGrants: (config: S3ControlPaginationConfiguration, input: ListCallerAccessGrantsCommandInput, ...rest: any[]) => Paginator<ListCallerAccessGrantsCommandOutput>;
|
|
@@ -4,6 +4,7 @@ export * from "./ListAccessGrantsLocationsPaginator";
|
|
|
4
4
|
export * from "./ListAccessGrantsPaginator";
|
|
5
5
|
export * from "./ListAccessPointsForObjectLambdaPaginator";
|
|
6
6
|
export * from "./ListAccessPointsPaginator";
|
|
7
|
+
export * from "./ListCallerAccessGrantsPaginator";
|
|
7
8
|
export * from "./ListJobsPaginator";
|
|
8
9
|
export * from "./ListMultiRegionAccessPointsPaginator";
|
|
9
10
|
export * from "./ListRegionalBucketsPaginator";
|
|
@@ -65,6 +65,7 @@ import { ListAccessGrantsInstancesCommandInput, ListAccessGrantsInstancesCommand
|
|
|
65
65
|
import { ListAccessGrantsLocationsCommandInput, ListAccessGrantsLocationsCommandOutput } from "../commands/ListAccessGrantsLocationsCommand";
|
|
66
66
|
import { ListAccessPointsCommandInput, ListAccessPointsCommandOutput } from "../commands/ListAccessPointsCommand";
|
|
67
67
|
import { ListAccessPointsForObjectLambdaCommandInput, ListAccessPointsForObjectLambdaCommandOutput } from "../commands/ListAccessPointsForObjectLambdaCommand";
|
|
68
|
+
import { ListCallerAccessGrantsCommandInput, ListCallerAccessGrantsCommandOutput } from "../commands/ListCallerAccessGrantsCommand";
|
|
68
69
|
import { ListJobsCommandInput, ListJobsCommandOutput } from "../commands/ListJobsCommand";
|
|
69
70
|
import { ListMultiRegionAccessPointsCommandInput, ListMultiRegionAccessPointsCommandOutput } from "../commands/ListMultiRegionAccessPointsCommand";
|
|
70
71
|
import { ListRegionalBucketsCommandInput, ListRegionalBucketsCommandOutput } from "../commands/ListRegionalBucketsCommand";
|
|
@@ -352,6 +353,10 @@ export declare const se_ListAccessPointsCommand: (input: ListAccessPointsCommand
|
|
|
352
353
|
* serializeAws_restXmlListAccessPointsForObjectLambdaCommand
|
|
353
354
|
*/
|
|
354
355
|
export declare const se_ListAccessPointsForObjectLambdaCommand: (input: ListAccessPointsForObjectLambdaCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
356
|
+
/**
|
|
357
|
+
* serializeAws_restXmlListCallerAccessGrantsCommand
|
|
358
|
+
*/
|
|
359
|
+
export declare const se_ListCallerAccessGrantsCommand: (input: ListCallerAccessGrantsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
355
360
|
/**
|
|
356
361
|
* serializeAws_restXmlListJobsCommand
|
|
357
362
|
*/
|
|
@@ -720,6 +725,10 @@ export declare const de_ListAccessPointsCommand: (output: __HttpResponse, contex
|
|
|
720
725
|
* deserializeAws_restXmlListAccessPointsForObjectLambdaCommand
|
|
721
726
|
*/
|
|
722
727
|
export declare const de_ListAccessPointsForObjectLambdaCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAccessPointsForObjectLambdaCommandOutput>;
|
|
728
|
+
/**
|
|
729
|
+
* deserializeAws_restXmlListCallerAccessGrantsCommand
|
|
730
|
+
*/
|
|
731
|
+
export declare const de_ListCallerAccessGrantsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListCallerAccessGrantsCommandOutput>;
|
|
723
732
|
/**
|
|
724
733
|
* deserializeAws_restXmlListJobsCommand
|
|
725
734
|
*/
|
|
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
apiVersion: string;
|
|
24
|
+
cacheMiddleware?: boolean | undefined;
|
|
24
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
27
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -37,6 +38,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
37
38
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
39
|
}) => import("@smithy/types").EndpointV2;
|
|
39
40
|
tls?: boolean | undefined;
|
|
41
|
+
serviceConfiguredEndpoint?: undefined;
|
|
40
42
|
useArnRegion?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
41
43
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
42
44
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
@@ -21,6 +21,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
21
21
|
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
22
22
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
23
23
|
apiVersion: string;
|
|
24
|
+
cacheMiddleware?: boolean | undefined;
|
|
24
25
|
urlParser: import("@smithy/types").UrlParser;
|
|
25
26
|
base64Decoder: import("@smithy/types").Decoder;
|
|
26
27
|
base64Encoder: (_input: string | Uint8Array) => string;
|
|
@@ -37,6 +38,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
37
38
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
39
|
}) => import("@smithy/types").EndpointV2;
|
|
39
40
|
tls?: boolean | undefined;
|
|
41
|
+
serviceConfiguredEndpoint?: undefined;
|
|
40
42
|
useArnRegion?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
41
43
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
42
44
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|
|
@@ -8,6 +8,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
8
8
|
sha256: import("@smithy/types").HashConstructor;
|
|
9
9
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
10
10
|
apiVersion: string;
|
|
11
|
+
cacheMiddleware?: boolean | undefined;
|
|
11
12
|
urlParser: import("@smithy/types").UrlParser;
|
|
12
13
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
13
14
|
streamCollector: import("@smithy/types").StreamCollector;
|
|
@@ -36,6 +37,7 @@ export declare const getRuntimeConfig: (config: S3ControlClientConfig) => {
|
|
|
36
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
37
38
|
}) => import("@smithy/types").EndpointV2;
|
|
38
39
|
tls?: boolean | undefined;
|
|
40
|
+
serviceConfiguredEndpoint?: undefined;
|
|
39
41
|
useArnRegion?: boolean | import("@smithy/types").Provider<boolean> | undefined;
|
|
40
42
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
41
43
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").S3ControlHttpAuthSchemeProvider;
|