cdk-docker-image-deployment 0.0.190 → 0.0.192
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/.jsii +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/@types/aws-lambda/README.md +1 -1
- package/node_modules/@types/aws-lambda/package.json +2 -2
- package/node_modules/@types/aws-lambda/trigger/api-gateway-authorizer.d.ts +1 -0
- package/node_modules/aws-sdk/CHANGELOG.md +14 -1
- package/node_modules/aws-sdk/README.md +14 -1
- package/node_modules/aws-sdk/apis/appintegrations-2020-07-29.min.json +64 -10
- package/node_modules/aws-sdk/apis/application-autoscaling-2016-02-06.min.json +56 -12
- package/node_modules/aws-sdk/apis/dataexchange-2017-07-25.min.json +42 -24
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +8 -1
- package/node_modules/aws-sdk/apis/keyspaces-2022-02-10.min.json +18 -0
- package/node_modules/aws-sdk/apis/s3control-2018-08-20.min.json +335 -49
- package/node_modules/aws-sdk/apis/tnb-2008-10-21.min.json +21 -3
- package/node_modules/aws-sdk/apis/wisdom-2020-10-19.min.json +1 -2
- package/node_modules/aws-sdk/clients/appintegrations.d.ts +61 -21
- package/node_modules/aws-sdk/clients/applicationautoscaling.d.ts +80 -3
- package/node_modules/aws-sdk/clients/dataexchange.d.ts +16 -0
- package/node_modules/aws-sdk/clients/directconnect.d.ts +6 -6
- package/node_modules/aws-sdk/clients/ec2.d.ts +8 -0
- package/node_modules/aws-sdk/clients/iam.d.ts +14 -14
- package/node_modules/aws-sdk/clients/keyspaces.d.ts +40 -21
- package/node_modules/aws-sdk/clients/lakeformation.d.ts +3 -0
- package/node_modules/aws-sdk/clients/s3control.d.ts +298 -36
- package/node_modules/aws-sdk/clients/tnb.d.ts +31 -7
- package/node_modules/aws-sdk/clients/wisdom.d.ts +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +8 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +16 -9
- package/node_modules/aws-sdk/dist/aws-sdk.js +74 -16
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +92 -92
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/maintenance_mode_message.js +7 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
|
@@ -108,6 +108,14 @@ declare class S3Control extends Service {
|
|
|
108
108
|
* This action deletes an Amazon S3 on Outposts bucket policy. To delete an S3 bucket policy, see DeleteBucketPolicy in the Amazon S3 API Reference. This implementation of the DELETE action uses the policy subresource to delete the policy of a specified Amazon S3 on Outposts bucket. If you are using an identity other than the root user of the Amazon Web Services account that owns the bucket, the calling identity must have the s3-outposts:DeleteBucketPolicy permissions on the specified Outposts bucket and belong to the bucket owner's account to use this action. For more information, see Using Amazon S3 on Outposts in Amazon S3 User Guide. If you don't have DeleteBucketPolicy permissions, Amazon S3 returns a 403 Access Denied error. If you have the correct permissions, but you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not Allowed error. As a security precaution, the root user of the Amazon Web Services account that owns a bucket can always use this action, even if the policy explicitly denies the root user the ability to perform this action. For more information about bucket policies, see Using Bucket Policies and User Policies. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to DeleteBucketPolicy: GetBucketPolicy PutBucketPolicy
|
|
109
109
|
*/
|
|
110
110
|
deleteBucketPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
111
|
+
/**
|
|
112
|
+
* This operation deletes an Amazon S3 on Outposts bucket's replication configuration. To delete an S3 bucket's replication configuration, see DeleteBucketReplication in the Amazon S3 API Reference. Deletes the replication configuration from the specified S3 on Outposts bucket. To use this operation, you must have permissions to perform the s3-outposts:PutReplicationConfiguration action. The Outposts bucket owner has this permission by default and can grant it to others. For more information about permissions, see Setting up IAM with S3 on Outposts and Managing access to S3 on Outposts buckets in the Amazon S3 User Guide. It can take a while to propagate PUT or DELETE requests for a replication configuration to all S3 on Outposts systems. Therefore, the replication configuration that's returned by a GET request soon after a PUT or DELETE request might return a more recent result than what's on the Outpost. If an Outpost is offline, the delay in updating the replication configuration on that Outpost can be significant. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. For information about S3 replication on Outposts configuration, see Replicating objects for Amazon Web Services Outposts in the Amazon S3 User Guide. The following operations are related to DeleteBucketReplication: PutBucketReplication GetBucketReplication
|
|
113
|
+
*/
|
|
114
|
+
deleteBucketReplication(params: S3Control.Types.DeleteBucketReplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
115
|
+
/**
|
|
116
|
+
* This operation deletes an Amazon S3 on Outposts bucket's replication configuration. To delete an S3 bucket's replication configuration, see DeleteBucketReplication in the Amazon S3 API Reference. Deletes the replication configuration from the specified S3 on Outposts bucket. To use this operation, you must have permissions to perform the s3-outposts:PutReplicationConfiguration action. The Outposts bucket owner has this permission by default and can grant it to others. For more information about permissions, see Setting up IAM with S3 on Outposts and Managing access to S3 on Outposts buckets in the Amazon S3 User Guide. It can take a while to propagate PUT or DELETE requests for a replication configuration to all S3 on Outposts systems. Therefore, the replication configuration that's returned by a GET request soon after a PUT or DELETE request might return a more recent result than what's on the Outpost. If an Outpost is offline, the delay in updating the replication configuration on that Outpost can be significant. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. For information about S3 replication on Outposts configuration, see Replicating objects for Amazon Web Services Outposts in the Amazon S3 User Guide. The following operations are related to DeleteBucketReplication: PutBucketReplication GetBucketReplication
|
|
117
|
+
*/
|
|
118
|
+
deleteBucketReplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
111
119
|
/**
|
|
112
120
|
* This action deletes an Amazon S3 on Outposts bucket's tags. To delete an S3 bucket tags, see DeleteBucketTagging in the Amazon S3 API Reference. Deletes the tags from the Outposts bucket. For more information, see Using Amazon S3 on Outposts in Amazon S3 User Guide. To use this action, you must have permission to perform the PutBucketTagging action. By default, the bucket owner has this permission and can grant this permission to others. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to DeleteBucketTagging: GetBucketTagging PutBucketTagging
|
|
113
121
|
*/
|
|
@@ -117,11 +125,11 @@ declare class S3Control extends Service {
|
|
|
117
125
|
*/
|
|
118
126
|
deleteBucketTagging(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
119
127
|
/**
|
|
120
|
-
* Removes the entire tag set from the specified S3 Batch Operations job. To use
|
|
128
|
+
* Removes the entire tag set from the specified S3 Batch Operations job. To use the DeleteJobTagging operation, you must have permission to perform the s3:DeleteJobTagging action. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. Related actions include: CreateJob GetJobTagging PutJobTagging
|
|
121
129
|
*/
|
|
122
130
|
deleteJobTagging(params: S3Control.Types.DeleteJobTaggingRequest, callback?: (err: AWSError, data: S3Control.Types.DeleteJobTaggingResult) => void): Request<S3Control.Types.DeleteJobTaggingResult, AWSError>;
|
|
123
131
|
/**
|
|
124
|
-
* Removes the entire tag set from the specified S3 Batch Operations job. To use
|
|
132
|
+
* Removes the entire tag set from the specified S3 Batch Operations job. To use the DeleteJobTagging operation, you must have permission to perform the s3:DeleteJobTagging action. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. Related actions include: CreateJob GetJobTagging PutJobTagging
|
|
125
133
|
*/
|
|
126
134
|
deleteJobTagging(callback?: (err: AWSError, data: S3Control.Types.DeleteJobTaggingResult) => void): Request<S3Control.Types.DeleteJobTaggingResult, AWSError>;
|
|
127
135
|
/**
|
|
@@ -252,6 +260,14 @@ declare class S3Control extends Service {
|
|
|
252
260
|
* This action gets a bucket policy for an Amazon S3 on Outposts bucket. To get a policy for an S3 bucket, see GetBucketPolicy in the Amazon S3 API Reference. Returns the policy of a specified Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon S3 User Guide. If you are using an identity other than the root user of the Amazon Web Services account that owns the bucket, the calling identity must have the GetBucketPolicy permissions on the specified bucket and belong to the bucket owner's account in order to use this action. Only users from Outposts bucket owner account with the right permissions can perform actions on an Outposts bucket. If you don't have s3-outposts:GetBucketPolicy permissions or you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 403 Access Denied error. As a security precaution, the root user of the Amazon Web Services account that owns a bucket can always use this action, even if the policy explicitly denies the root user the ability to perform this action. For more information about bucket policies, see Using Bucket Policies and User Policies. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to GetBucketPolicy: GetObject PutBucketPolicy DeleteBucketPolicy
|
|
253
261
|
*/
|
|
254
262
|
getBucketPolicy(callback?: (err: AWSError, data: S3Control.Types.GetBucketPolicyResult) => void): Request<S3Control.Types.GetBucketPolicyResult, AWSError>;
|
|
263
|
+
/**
|
|
264
|
+
* This operation gets an Amazon S3 on Outposts bucket's replication configuration. To get an S3 bucket's replication configuration, see GetBucketReplication in the Amazon S3 API Reference. Returns the replication configuration of an S3 on Outposts bucket. For more information about S3 on Outposts, see Using Amazon S3 on Outposts in the Amazon S3 User Guide. For information about S3 replication on Outposts configuration, see Replicating objects for Amazon Web Services Outposts in the Amazon S3 User Guide. It can take a while to propagate PUT or DELETE requests for a replication configuration to all S3 on Outposts systems. Therefore, the replication configuration that's returned by a GET request soon after a PUT or DELETE request might return a more recent result than what's on the Outpost. If an Outpost is offline, the delay in updating the replication configuration on that Outpost can be significant. This action requires permissions for the s3-outposts:GetReplicationConfiguration action. The Outposts bucket owner has this permission by default and can grant it to others. For more information about permissions, see Setting up IAM with S3 on Outposts and Managing access to S3 on Outposts bucket in the Amazon S3 User Guide. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. If you include the Filter element in a replication configuration, you must also include the DeleteMarkerReplication, Status, and Priority elements. The response also returns those elements. For information about S3 on Outposts replication failure reasons, see Replication failure reasons in the Amazon S3 User Guide. The following operations are related to GetBucketReplication: PutBucketReplication DeleteBucketReplication
|
|
265
|
+
*/
|
|
266
|
+
getBucketReplication(params: S3Control.Types.GetBucketReplicationRequest, callback?: (err: AWSError, data: S3Control.Types.GetBucketReplicationResult) => void): Request<S3Control.Types.GetBucketReplicationResult, AWSError>;
|
|
267
|
+
/**
|
|
268
|
+
* This operation gets an Amazon S3 on Outposts bucket's replication configuration. To get an S3 bucket's replication configuration, see GetBucketReplication in the Amazon S3 API Reference. Returns the replication configuration of an S3 on Outposts bucket. For more information about S3 on Outposts, see Using Amazon S3 on Outposts in the Amazon S3 User Guide. For information about S3 replication on Outposts configuration, see Replicating objects for Amazon Web Services Outposts in the Amazon S3 User Guide. It can take a while to propagate PUT or DELETE requests for a replication configuration to all S3 on Outposts systems. Therefore, the replication configuration that's returned by a GET request soon after a PUT or DELETE request might return a more recent result than what's on the Outpost. If an Outpost is offline, the delay in updating the replication configuration on that Outpost can be significant. This action requires permissions for the s3-outposts:GetReplicationConfiguration action. The Outposts bucket owner has this permission by default and can grant it to others. For more information about permissions, see Setting up IAM with S3 on Outposts and Managing access to S3 on Outposts bucket in the Amazon S3 User Guide. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. If you include the Filter element in a replication configuration, you must also include the DeleteMarkerReplication, Status, and Priority elements. The response also returns those elements. For information about S3 on Outposts replication failure reasons, see Replication failure reasons in the Amazon S3 User Guide. The following operations are related to GetBucketReplication: PutBucketReplication DeleteBucketReplication
|
|
269
|
+
*/
|
|
270
|
+
getBucketReplication(callback?: (err: AWSError, data: S3Control.Types.GetBucketReplicationResult) => void): Request<S3Control.Types.GetBucketReplicationResult, AWSError>;
|
|
255
271
|
/**
|
|
256
272
|
* This action gets an Amazon S3 on Outposts bucket's tags. To get an S3 bucket tags, see GetBucketTagging in the Amazon S3 API Reference. Returns the tag set associated with the Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon S3 User Guide. To use this action, you must have permission to perform the GetBucketTagging action. By default, the bucket owner has this permission and can grant this permission to others. GetBucketTagging has the following special error: Error code: NoSuchTagSetError Description: There is no tag set associated with the bucket. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to GetBucketTagging: PutBucketTagging DeleteBucketTagging
|
|
257
273
|
*/
|
|
@@ -261,19 +277,19 @@ declare class S3Control extends Service {
|
|
|
261
277
|
*/
|
|
262
278
|
getBucketTagging(callback?: (err: AWSError, data: S3Control.Types.GetBucketTaggingResult) => void): Request<S3Control.Types.GetBucketTaggingResult, AWSError>;
|
|
263
279
|
/**
|
|
264
|
-
* This operation returns the versioning state
|
|
280
|
+
* This operation returns the versioning state for S3 on Outposts buckets only. To return the versioning state for an S3 bucket, see GetBucketVersioning in the Amazon S3 API Reference. Returns the versioning state for an S3 on Outposts bucket. With S3 Versioning, you can save multiple distinct copies of your objects and recover from unintended user actions and application failures. If you've never set versioning on your bucket, it has no versioning state. In that case, the GetBucketVersioning request does not return a versioning state value. For more information about versioning, see Versioning in the Amazon S3 User Guide. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following operations are related to GetBucketVersioning for S3 on Outposts. PutBucketVersioning PutBucketLifecycleConfiguration GetBucketLifecycleConfiguration
|
|
265
281
|
*/
|
|
266
282
|
getBucketVersioning(params: S3Control.Types.GetBucketVersioningRequest, callback?: (err: AWSError, data: S3Control.Types.GetBucketVersioningResult) => void): Request<S3Control.Types.GetBucketVersioningResult, AWSError>;
|
|
267
283
|
/**
|
|
268
|
-
* This operation returns the versioning state
|
|
284
|
+
* This operation returns the versioning state for S3 on Outposts buckets only. To return the versioning state for an S3 bucket, see GetBucketVersioning in the Amazon S3 API Reference. Returns the versioning state for an S3 on Outposts bucket. With S3 Versioning, you can save multiple distinct copies of your objects and recover from unintended user actions and application failures. If you've never set versioning on your bucket, it has no versioning state. In that case, the GetBucketVersioning request does not return a versioning state value. For more information about versioning, see Versioning in the Amazon S3 User Guide. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following operations are related to GetBucketVersioning for S3 on Outposts. PutBucketVersioning PutBucketLifecycleConfiguration GetBucketLifecycleConfiguration
|
|
269
285
|
*/
|
|
270
286
|
getBucketVersioning(callback?: (err: AWSError, data: S3Control.Types.GetBucketVersioningResult) => void): Request<S3Control.Types.GetBucketVersioningResult, AWSError>;
|
|
271
287
|
/**
|
|
272
|
-
* Returns the tags on an S3 Batch Operations job. To use
|
|
288
|
+
* Returns the tags on an S3 Batch Operations job. To use the GetJobTagging operation, you must have permission to perform the s3:GetJobTagging action. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. Related actions include: CreateJob PutJobTagging DeleteJobTagging
|
|
273
289
|
*/
|
|
274
290
|
getJobTagging(params: S3Control.Types.GetJobTaggingRequest, callback?: (err: AWSError, data: S3Control.Types.GetJobTaggingResult) => void): Request<S3Control.Types.GetJobTaggingResult, AWSError>;
|
|
275
291
|
/**
|
|
276
|
-
* Returns the tags on an S3 Batch Operations job. To use
|
|
292
|
+
* Returns the tags on an S3 Batch Operations job. To use the GetJobTagging operation, you must have permission to perform the s3:GetJobTagging action. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. Related actions include: CreateJob PutJobTagging DeleteJobTagging
|
|
277
293
|
*/
|
|
278
294
|
getJobTagging(callback?: (err: AWSError, data: S3Control.Types.GetJobTaggingResult) => void): Request<S3Control.Types.GetJobTaggingResult, AWSError>;
|
|
279
295
|
/**
|
|
@@ -333,11 +349,11 @@ declare class S3Control extends Service {
|
|
|
333
349
|
*/
|
|
334
350
|
getStorageLensConfigurationTagging(callback?: (err: AWSError, data: S3Control.Types.GetStorageLensConfigurationTaggingResult) => void): Request<S3Control.Types.GetStorageLensConfigurationTaggingResult, AWSError>;
|
|
335
351
|
/**
|
|
336
|
-
* Returns a list of the access points owned by the current account associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1,000 access points (or the number specified in maxResults, whichever is less), the response will include a continuation token that you can use to list the additional access points. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to ListAccessPoints: CreateAccessPoint DeleteAccessPoint GetAccessPoint
|
|
352
|
+
* Returns a list of the access points that are owned by the current account that's associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1,000 access points (or the number specified in maxResults, whichever is less), the response will include a continuation token that you can use to list the additional access points. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to ListAccessPoints: CreateAccessPoint DeleteAccessPoint GetAccessPoint
|
|
337
353
|
*/
|
|
338
354
|
listAccessPoints(params: S3Control.Types.ListAccessPointsRequest, callback?: (err: AWSError, data: S3Control.Types.ListAccessPointsResult) => void): Request<S3Control.Types.ListAccessPointsResult, AWSError>;
|
|
339
355
|
/**
|
|
340
|
-
* Returns a list of the access points owned by the current account associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1,000 access points (or the number specified in maxResults, whichever is less), the response will include a continuation token that you can use to list the additional access points. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to ListAccessPoints: CreateAccessPoint DeleteAccessPoint GetAccessPoint
|
|
356
|
+
* Returns a list of the access points that are owned by the current account that's associated with the specified bucket. You can retrieve up to 1000 access points per call. If the specified bucket has more than 1,000 access points (or the number specified in maxResults, whichever is less), the response will include a continuation token that you can use to list the additional access points. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to ListAccessPoints: CreateAccessPoint DeleteAccessPoint GetAccessPoint
|
|
341
357
|
*/
|
|
342
358
|
listAccessPoints(callback?: (err: AWSError, data: S3Control.Types.ListAccessPointsResult) => void): Request<S3Control.Types.ListAccessPointsResult, AWSError>;
|
|
343
359
|
/**
|
|
@@ -420,6 +436,14 @@ declare class S3Control extends Service {
|
|
|
420
436
|
* This action puts a bucket policy to an Amazon S3 on Outposts bucket. To put a policy on an S3 bucket, see PutBucketPolicy in the Amazon S3 API Reference. Applies an Amazon S3 bucket policy to an Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon S3 User Guide. If you are using an identity other than the root user of the Amazon Web Services account that owns the Outposts bucket, the calling identity must have the PutBucketPolicy permissions on the specified Outposts bucket and belong to the bucket owner's account in order to use this action. If you don't have PutBucketPolicy permissions, Amazon S3 returns a 403 Access Denied error. If you have the correct permissions, but you're not using an identity that belongs to the bucket owner's account, Amazon S3 returns a 405 Method Not Allowed error. As a security precaution, the root user of the Amazon Web Services account that owns a bucket can always use this action, even if the policy explicitly denies the root user the ability to perform this action. For more information about bucket policies, see Using Bucket Policies and User Policies. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to PutBucketPolicy: GetBucketPolicy DeleteBucketPolicy
|
|
421
437
|
*/
|
|
422
438
|
putBucketPolicy(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
439
|
+
/**
|
|
440
|
+
* This action creates an Amazon S3 on Outposts bucket's replication configuration. To create an S3 bucket's replication configuration, see PutBucketReplication in the Amazon S3 API Reference. Creates a replication configuration or replaces an existing one. For information about S3 replication on Outposts configuration, see Replicating objects for Amazon Web Services Outposts in the Amazon S3 User Guide. It can take a while to propagate PUT or DELETE requests for a replication configuration to all S3 on Outposts systems. Therefore, the replication configuration that's returned by a GET request soon after a PUT or DELETE request might return a more recent result than what's on the Outpost. If an Outpost is offline, the delay in updating the replication configuration on that Outpost can be significant. Specify the replication configuration in the request body. In the replication configuration, you provide the following information: The name of the destination bucket or buckets where you want S3 on Outposts to replicate objects The Identity and Access Management (IAM) role that S3 on Outposts can assume to replicate objects on your behalf Other relevant information, such as replication rules A replication configuration must include at least one rule and can contain a maximum of 100. Each rule identifies a subset of objects to replicate by filtering the objects in the source Outposts bucket. To choose additional subsets of objects to replicate, add a rule for each subset. To specify a subset of the objects in the source Outposts bucket to apply a replication rule to, add the Filter element as a child of the Rule element. You can filter objects based on an object key prefix, one or more object tags, or both. When you add the Filter element in the configuration, you must also add the following elements: DeleteMarkerReplication, Status, and Priority. Using PutBucketReplication on Outposts requires that both the source and destination buckets must have versioning enabled. For information about enabling versioning on a bucket, see Managing S3 Versioning for your S3 on Outposts bucket. For information about S3 on Outposts replication failure reasons, see Replication failure reasons in the Amazon S3 User Guide. Handling Replication of Encrypted Objects Outposts buckets are encrypted at all times. All the objects in the source Outposts bucket are encrypted and can be replicated. Also, all the replicas in the destination Outposts bucket are encrypted with the same encryption key as the objects in the source Outposts bucket. Permissions To create a PutBucketReplication request, you must have s3-outposts:PutReplicationConfiguration permissions for the bucket. The Outposts bucket owner has this permission by default and can grant it to others. For more information about permissions, see Setting up IAM with S3 on Outposts and Managing access to S3 on Outposts buckets. To perform this operation, the user or role must also have the iam:PassRole permission. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following operations are related to PutBucketReplication: GetBucketReplication DeleteBucketReplication
|
|
441
|
+
*/
|
|
442
|
+
putBucketReplication(params: S3Control.Types.PutBucketReplicationRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
443
|
+
/**
|
|
444
|
+
* This action creates an Amazon S3 on Outposts bucket's replication configuration. To create an S3 bucket's replication configuration, see PutBucketReplication in the Amazon S3 API Reference. Creates a replication configuration or replaces an existing one. For information about S3 replication on Outposts configuration, see Replicating objects for Amazon Web Services Outposts in the Amazon S3 User Guide. It can take a while to propagate PUT or DELETE requests for a replication configuration to all S3 on Outposts systems. Therefore, the replication configuration that's returned by a GET request soon after a PUT or DELETE request might return a more recent result than what's on the Outpost. If an Outpost is offline, the delay in updating the replication configuration on that Outpost can be significant. Specify the replication configuration in the request body. In the replication configuration, you provide the following information: The name of the destination bucket or buckets where you want S3 on Outposts to replicate objects The Identity and Access Management (IAM) role that S3 on Outposts can assume to replicate objects on your behalf Other relevant information, such as replication rules A replication configuration must include at least one rule and can contain a maximum of 100. Each rule identifies a subset of objects to replicate by filtering the objects in the source Outposts bucket. To choose additional subsets of objects to replicate, add a rule for each subset. To specify a subset of the objects in the source Outposts bucket to apply a replication rule to, add the Filter element as a child of the Rule element. You can filter objects based on an object key prefix, one or more object tags, or both. When you add the Filter element in the configuration, you must also add the following elements: DeleteMarkerReplication, Status, and Priority. Using PutBucketReplication on Outposts requires that both the source and destination buckets must have versioning enabled. For information about enabling versioning on a bucket, see Managing S3 Versioning for your S3 on Outposts bucket. For information about S3 on Outposts replication failure reasons, see Replication failure reasons in the Amazon S3 User Guide. Handling Replication of Encrypted Objects Outposts buckets are encrypted at all times. All the objects in the source Outposts bucket are encrypted and can be replicated. Also, all the replicas in the destination Outposts bucket are encrypted with the same encryption key as the objects in the source Outposts bucket. Permissions To create a PutBucketReplication request, you must have s3-outposts:PutReplicationConfiguration permissions for the bucket. The Outposts bucket owner has this permission by default and can grant it to others. For more information about permissions, see Setting up IAM with S3 on Outposts and Managing access to S3 on Outposts buckets. To perform this operation, the user or role must also have the iam:PassRole permission. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following operations are related to PutBucketReplication: GetBucketReplication DeleteBucketReplication
|
|
445
|
+
*/
|
|
446
|
+
putBucketReplication(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
423
447
|
/**
|
|
424
448
|
* This action puts tags on an Amazon S3 on Outposts bucket. To put tags on an S3 bucket, see PutBucketTagging in the Amazon S3 API Reference. Sets the tags for an S3 on Outposts bucket. For more information, see Using Amazon S3 on Outposts in the Amazon S3 User Guide. Use tags to organize your Amazon Web Services bill to reflect your own cost structure. To do this, sign up to get your Amazon Web Services account bill with tag key values included. Then, to see the cost of combined resources, organize your billing information according to resources with the same tag key values. For example, you can tag several resources with a specific application name, and then organize your billing information to see the total cost of that application across several services. For more information, see Cost allocation and tagging. Within a bucket, if you add a tag that has the same key as an existing tag, the new value overwrites the old value. For more information, see Using cost allocation in Amazon S3 bucket tags. To use this action, you must have permissions to perform the s3-outposts:PutBucketTagging action. The Outposts bucket owner has this permission by default and can grant this permission to others. For more information about permissions, see Permissions Related to Bucket Subresource Operations and Managing access permissions to your Amazon S3 resources. PutBucketTagging has the following special errors: Error code: InvalidTagError Description: The tag provided was not a valid tag. This error can occur if the tag did not pass input validation. For information about tag restrictions, see User-Defined Tag Restrictions and Amazon Web Services-Generated Cost Allocation Tag Restrictions. Error code: MalformedXMLError Description: The XML provided does not match the schema. Error code: OperationAbortedError Description: A conflicting conditional action is currently in progress against this resource. Try again. Error code: InternalError Description: The service was unable to apply the provided tag to the bucket. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following actions are related to PutBucketTagging: GetBucketTagging DeleteBucketTagging
|
|
425
449
|
*/
|
|
@@ -429,19 +453,19 @@ declare class S3Control extends Service {
|
|
|
429
453
|
*/
|
|
430
454
|
putBucketTagging(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
431
455
|
/**
|
|
432
|
-
* This operation sets the versioning state
|
|
456
|
+
* This operation sets the versioning state for S3 on Outposts buckets only. To set the versioning state for an S3 bucket, see PutBucketVersioning in the Amazon S3 API Reference. Sets the versioning state for an S3 on Outposts bucket. With S3 Versioning, you can save multiple distinct copies of your objects and recover from unintended user actions and application failures. You can set the versioning state to one of the following: Enabled - Enables versioning for the objects in the bucket. All objects added to the bucket receive a unique version ID. Suspended - Suspends versioning for the objects in the bucket. All objects added to the bucket receive the version ID null. If you've never set versioning on your bucket, it has no versioning state. In that case, a GetBucketVersioning request does not return a versioning state value. When you enable S3 Versioning, for each object in your bucket, you have a current version and zero or more noncurrent versions. You can configure your bucket S3 Lifecycle rules to expire noncurrent versions after a specified time period. For more information, see Creating and managing a lifecycle configuration for your S3 on Outposts bucket in the Amazon S3 User Guide. If you have an object expiration lifecycle policy in your non-versioned bucket and you want to maintain the same permanent delete behavior when you enable versioning, you must add a noncurrent expiration policy. The noncurrent expiration lifecycle policy will manage the deletions of the noncurrent object versions in the version-enabled bucket. For more information, see Versioning in the Amazon S3 User Guide. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following operations are related to PutBucketVersioning for S3 on Outposts. GetBucketVersioning PutBucketLifecycleConfiguration GetBucketLifecycleConfiguration
|
|
433
457
|
*/
|
|
434
458
|
putBucketVersioning(params: S3Control.Types.PutBucketVersioningRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
435
459
|
/**
|
|
436
|
-
* This operation sets the versioning state
|
|
460
|
+
* This operation sets the versioning state for S3 on Outposts buckets only. To set the versioning state for an S3 bucket, see PutBucketVersioning in the Amazon S3 API Reference. Sets the versioning state for an S3 on Outposts bucket. With S3 Versioning, you can save multiple distinct copies of your objects and recover from unintended user actions and application failures. You can set the versioning state to one of the following: Enabled - Enables versioning for the objects in the bucket. All objects added to the bucket receive a unique version ID. Suspended - Suspends versioning for the objects in the bucket. All objects added to the bucket receive the version ID null. If you've never set versioning on your bucket, it has no versioning state. In that case, a GetBucketVersioning request does not return a versioning state value. When you enable S3 Versioning, for each object in your bucket, you have a current version and zero or more noncurrent versions. You can configure your bucket S3 Lifecycle rules to expire noncurrent versions after a specified time period. For more information, see Creating and managing a lifecycle configuration for your S3 on Outposts bucket in the Amazon S3 User Guide. If you have an object expiration lifecycle policy in your non-versioned bucket and you want to maintain the same permanent delete behavior when you enable versioning, you must add a noncurrent expiration policy. The noncurrent expiration lifecycle policy will manage the deletions of the noncurrent object versions in the version-enabled bucket. For more information, see Versioning in the Amazon S3 User Guide. All Amazon S3 on Outposts REST API requests for this action require an additional parameter of x-amz-outpost-id to be passed with the request. In addition, you must use an S3 on Outposts endpoint hostname prefix instead of s3-control. For an example of the request syntax for Amazon S3 on Outposts that uses the S3 on Outposts endpoint hostname prefix and the x-amz-outpost-id derived by using the access point ARN, see the Examples section. The following operations are related to PutBucketVersioning for S3 on Outposts. GetBucketVersioning PutBucketLifecycleConfiguration GetBucketLifecycleConfiguration
|
|
437
461
|
*/
|
|
438
462
|
putBucketVersioning(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
439
463
|
/**
|
|
440
|
-
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use
|
|
464
|
+
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use the PutJobTagging operation, you must have permission to perform the s3:PutJobTagging action. Related actions include: CreateJob GetJobTagging DeleteJobTagging
|
|
441
465
|
*/
|
|
442
466
|
putJobTagging(params: S3Control.Types.PutJobTaggingRequest, callback?: (err: AWSError, data: S3Control.Types.PutJobTaggingResult) => void): Request<S3Control.Types.PutJobTaggingResult, AWSError>;
|
|
443
467
|
/**
|
|
444
|
-
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use
|
|
468
|
+
* Sets the supplied tag-set on an S3 Batch Operations job. A tag is a key-value pair. You can associate S3 Batch Operations tags with any job by sending a PUT request against the tagging subresource that is associated with the job. To modify the existing tag set, you can either replace the existing tag set entirely, or make changes within the existing tag set by retrieving the existing tag set using GetJobTagging, modify that tag set, and use this action to replace the tag set with the one you modified. For more information, see Controlling access and labeling jobs using tags in the Amazon S3 User Guide. If you send this request with an empty tag set, Amazon S3 deletes the existing tag set on the Batch Operations job. If you use this method, you are charged for a Tier 1 Request (PUT). For more information, see Amazon S3 pricing. For deleting existing tags for your Batch Operations job, a DeleteJobTagging request is preferred because it achieves the same result without incurring charges. A few things to consider about using tags: Amazon S3 limits the maximum number of tags to 50 tags per job. You can associate up to 50 tags with a job as long as they have unique tag keys. A tag key can be up to 128 Unicode characters in length, and tag values can be up to 256 Unicode characters in length. The key and values are case sensitive. For tagging-related restrictions related to characters and encodings, see User-Defined Tag Restrictions in the Billing and Cost Management User Guide. To use the PutJobTagging operation, you must have permission to perform the s3:PutJobTagging action. Related actions include: CreateJob GetJobTagging DeleteJobTagging
|
|
445
469
|
*/
|
|
446
470
|
putJobTagging(callback?: (err: AWSError, data: S3Control.Types.PutJobTaggingResult) => void): Request<S3Control.Types.PutJobTaggingResult, AWSError>;
|
|
447
471
|
/**
|
|
@@ -508,6 +532,12 @@ declare namespace S3Control {
|
|
|
508
532
|
*/
|
|
509
533
|
DaysAfterInitiation?: DaysAfterInitiation;
|
|
510
534
|
}
|
|
535
|
+
export interface AccessControlTranslation {
|
|
536
|
+
/**
|
|
537
|
+
* Specifies the replica ownership.
|
|
538
|
+
*/
|
|
539
|
+
Owner: OwnerOverride;
|
|
540
|
+
}
|
|
511
541
|
export interface AccessPoint {
|
|
512
542
|
/**
|
|
513
543
|
* The name of this access point.
|
|
@@ -668,6 +698,7 @@ declare namespace S3Control {
|
|
|
668
698
|
export type AwsOrgArn = string;
|
|
669
699
|
export type Boolean = boolean;
|
|
670
700
|
export type BucketCannedACL = "private"|"public-read"|"public-read-write"|"authenticated-read"|string;
|
|
701
|
+
export type BucketIdentifierString = string;
|
|
671
702
|
export interface BucketLevel {
|
|
672
703
|
/**
|
|
673
704
|
* A container for the bucket-level activity metrics for S3 Storage Lens.
|
|
@@ -734,7 +765,7 @@ declare namespace S3Control {
|
|
|
734
765
|
*/
|
|
735
766
|
Name: AccessPointName;
|
|
736
767
|
/**
|
|
737
|
-
* The name of the bucket that you want to associate this access point with. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
768
|
+
* The name of the bucket that you want to associate this access point with. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
738
769
|
*/
|
|
739
770
|
Bucket: BucketName;
|
|
740
771
|
/**
|
|
@@ -814,7 +845,7 @@ declare namespace S3Control {
|
|
|
814
845
|
*/
|
|
815
846
|
Location?: Location;
|
|
816
847
|
/**
|
|
817
|
-
* The Amazon Resource Name (ARN) of the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
848
|
+
* The Amazon Resource Name (ARN) of the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
818
849
|
*/
|
|
819
850
|
BucketArn?: S3RegionalBucketArn;
|
|
820
851
|
}
|
|
@@ -932,7 +963,7 @@ declare namespace S3Control {
|
|
|
932
963
|
*/
|
|
933
964
|
AccountId: AccountId;
|
|
934
965
|
/**
|
|
935
|
-
* The name of the access point whose policy you want to delete. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through
|
|
966
|
+
* The name of the access point whose policy you want to delete. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.
|
|
936
967
|
*/
|
|
937
968
|
Name: AccessPointName;
|
|
938
969
|
}
|
|
@@ -942,7 +973,7 @@ declare namespace S3Control {
|
|
|
942
973
|
*/
|
|
943
974
|
AccountId: AccountId;
|
|
944
975
|
/**
|
|
945
|
-
* The name of the access point you want to delete. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through
|
|
976
|
+
* The name of the access point you want to delete. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.
|
|
946
977
|
*/
|
|
947
978
|
Name: AccessPointName;
|
|
948
979
|
}
|
|
@@ -952,7 +983,7 @@ declare namespace S3Control {
|
|
|
952
983
|
*/
|
|
953
984
|
AccountId: AccountId;
|
|
954
985
|
/**
|
|
955
|
-
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
986
|
+
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
956
987
|
*/
|
|
957
988
|
Bucket: BucketName;
|
|
958
989
|
}
|
|
@@ -962,7 +993,17 @@ declare namespace S3Control {
|
|
|
962
993
|
*/
|
|
963
994
|
AccountId: AccountId;
|
|
964
995
|
/**
|
|
965
|
-
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
996
|
+
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
997
|
+
*/
|
|
998
|
+
Bucket: BucketName;
|
|
999
|
+
}
|
|
1000
|
+
export interface DeleteBucketReplicationRequest {
|
|
1001
|
+
/**
|
|
1002
|
+
* The Amazon Web Services account ID of the Outposts bucket to delete the replication configuration for.
|
|
1003
|
+
*/
|
|
1004
|
+
AccountId: AccountId;
|
|
1005
|
+
/**
|
|
1006
|
+
* Specifies the S3 on Outposts bucket to delete the replication configuration for. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
966
1007
|
*/
|
|
967
1008
|
Bucket: BucketName;
|
|
968
1009
|
}
|
|
@@ -972,7 +1013,7 @@ declare namespace S3Control {
|
|
|
972
1013
|
*/
|
|
973
1014
|
AccountId: AccountId;
|
|
974
1015
|
/**
|
|
975
|
-
* Specifies the bucket being deleted. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
1016
|
+
* Specifies the bucket being deleted. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
976
1017
|
*/
|
|
977
1018
|
Bucket: BucketName;
|
|
978
1019
|
}
|
|
@@ -982,7 +1023,7 @@ declare namespace S3Control {
|
|
|
982
1023
|
*/
|
|
983
1024
|
AccountId: AccountId;
|
|
984
1025
|
/**
|
|
985
|
-
* The bucket ARN that has the tag set to be removed. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
1026
|
+
* The bucket ARN that has the tag set to be removed. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
986
1027
|
*/
|
|
987
1028
|
Bucket: BucketName;
|
|
988
1029
|
}
|
|
@@ -998,6 +1039,13 @@ declare namespace S3Control {
|
|
|
998
1039
|
}
|
|
999
1040
|
export interface DeleteJobTaggingResult {
|
|
1000
1041
|
}
|
|
1042
|
+
export interface DeleteMarkerReplication {
|
|
1043
|
+
/**
|
|
1044
|
+
* Indicates whether to replicate delete markers.
|
|
1045
|
+
*/
|
|
1046
|
+
Status: DeleteMarkerReplicationStatus;
|
|
1047
|
+
}
|
|
1048
|
+
export type DeleteMarkerReplicationStatus = "Enabled"|"Disabled"|string;
|
|
1001
1049
|
export interface DeleteMultiRegionAccessPointInput {
|
|
1002
1050
|
/**
|
|
1003
1051
|
* The name of the Multi-Region Access Point associated with this request.
|
|
@@ -1084,12 +1132,48 @@ declare namespace S3Control {
|
|
|
1084
1132
|
*/
|
|
1085
1133
|
AsyncOperation?: AsyncOperation;
|
|
1086
1134
|
}
|
|
1135
|
+
export interface Destination {
|
|
1136
|
+
/**
|
|
1137
|
+
* The destination bucket owner's account ID.
|
|
1138
|
+
*/
|
|
1139
|
+
Account?: AccountId;
|
|
1140
|
+
/**
|
|
1141
|
+
* The Amazon Resource Name (ARN) of the access point for the destination bucket where you want S3 on Outposts to store the replication results.
|
|
1142
|
+
*/
|
|
1143
|
+
Bucket: BucketIdentifierString;
|
|
1144
|
+
/**
|
|
1145
|
+
* A container that specifies S3 Replication Time Control (S3 RTC) settings, including whether S3 RTC is enabled and the time when all objects and operations on objects must be replicated. Must be specified together with a Metrics block. This is not supported by Amazon S3 on Outposts buckets.
|
|
1146
|
+
*/
|
|
1147
|
+
ReplicationTime?: ReplicationTime;
|
|
1148
|
+
/**
|
|
1149
|
+
* Specify this property only in a cross-account scenario (where the source and destination bucket owners are not the same), and you want to change replica ownership to the Amazon Web Services account that owns the destination bucket. If this property is not specified in the replication configuration, the replicas are owned by same Amazon Web Services account that owns the source object. This is not supported by Amazon S3 on Outposts buckets.
|
|
1150
|
+
*/
|
|
1151
|
+
AccessControlTranslation?: AccessControlTranslation;
|
|
1152
|
+
/**
|
|
1153
|
+
* A container that provides information about encryption. If SourceSelectionCriteria is specified, you must specify this element. This is not supported by Amazon S3 on Outposts buckets.
|
|
1154
|
+
*/
|
|
1155
|
+
EncryptionConfiguration?: EncryptionConfiguration;
|
|
1156
|
+
/**
|
|
1157
|
+
* A container that specifies replication metrics-related settings.
|
|
1158
|
+
*/
|
|
1159
|
+
Metrics?: Metrics;
|
|
1160
|
+
/**
|
|
1161
|
+
* The storage class to use when replicating objects. All objects stored on S3 on Outposts are stored in the OUTPOSTS storage class. S3 on Outposts uses the OUTPOSTS storage class to create the object replicas. Values other than OUTPOSTS are not supported by Amazon S3 on Outposts.
|
|
1162
|
+
*/
|
|
1163
|
+
StorageClass?: ReplicationStorageClass;
|
|
1164
|
+
}
|
|
1087
1165
|
export interface DetailedStatusCodesMetrics {
|
|
1088
1166
|
/**
|
|
1089
1167
|
* A container that indicates whether detailed status code metrics are enabled.
|
|
1090
1168
|
*/
|
|
1091
1169
|
IsEnabled?: IsEnabled;
|
|
1092
1170
|
}
|
|
1171
|
+
export interface EncryptionConfiguration {
|
|
1172
|
+
/**
|
|
1173
|
+
* Specifies the ID of the customer managed KMS key that's stored in Key Management Service (KMS) for the destination bucket. This ID is either the Amazon Resource Name (ARN) for the KMS key or the alias ARN for the KMS key. Amazon S3 uses this KMS key to encrypt replica objects. Amazon S3 supports only symmetric encryption KMS keys. For more information, see Symmetric encryption KMS keys in the Amazon Web Services Key Management Service Developer Guide.
|
|
1174
|
+
*/
|
|
1175
|
+
ReplicaKmsKeyID?: ReplicaKmsKeyID;
|
|
1176
|
+
}
|
|
1093
1177
|
export type Endpoints = {[key: string]: NonEmptyMaxLength1024String};
|
|
1094
1178
|
export interface EstablishedMultiRegionAccessPointPolicy {
|
|
1095
1179
|
/**
|
|
@@ -1107,6 +1191,13 @@ declare namespace S3Control {
|
|
|
1107
1191
|
*/
|
|
1108
1192
|
Regions?: Regions;
|
|
1109
1193
|
}
|
|
1194
|
+
export interface ExistingObjectReplication {
|
|
1195
|
+
/**
|
|
1196
|
+
* Specifies whether Amazon S3 replicates existing source bucket objects.
|
|
1197
|
+
*/
|
|
1198
|
+
Status: ExistingObjectReplicationStatus;
|
|
1199
|
+
}
|
|
1200
|
+
export type ExistingObjectReplicationStatus = "Enabled"|"Disabled"|string;
|
|
1110
1201
|
export type ExpirationStatus = "Enabled"|"Disabled"|string;
|
|
1111
1202
|
export type ExpiredObjectDeleteMarker = boolean;
|
|
1112
1203
|
export type Format = "CSV"|"Parquet"|string;
|
|
@@ -1184,7 +1275,7 @@ declare namespace S3Control {
|
|
|
1184
1275
|
*/
|
|
1185
1276
|
AccountId: AccountId;
|
|
1186
1277
|
/**
|
|
1187
|
-
* The name of the access point whose policy you want to retrieve. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through
|
|
1278
|
+
* The name of the access point whose policy you want to retrieve. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.
|
|
1188
1279
|
*/
|
|
1189
1280
|
Name: AccessPointName;
|
|
1190
1281
|
}
|
|
@@ -1229,7 +1320,7 @@ declare namespace S3Control {
|
|
|
1229
1320
|
*/
|
|
1230
1321
|
AccountId: AccountId;
|
|
1231
1322
|
/**
|
|
1232
|
-
* The name of the access point whose configuration information you want to retrieve. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through
|
|
1323
|
+
* The name of the access point whose configuration information you want to retrieve. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.
|
|
1233
1324
|
*/
|
|
1234
1325
|
Name: AccessPointName;
|
|
1235
1326
|
}
|
|
@@ -1278,7 +1369,7 @@ declare namespace S3Control {
|
|
|
1278
1369
|
*/
|
|
1279
1370
|
AccountId: AccountId;
|
|
1280
1371
|
/**
|
|
1281
|
-
* The Amazon Resource Name (ARN) of the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
1372
|
+
* The Amazon Resource Name (ARN) of the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
1282
1373
|
*/
|
|
1283
1374
|
Bucket: BucketName;
|
|
1284
1375
|
}
|
|
@@ -1294,7 +1385,7 @@ declare namespace S3Control {
|
|
|
1294
1385
|
*/
|
|
1295
1386
|
AccountId: AccountId;
|
|
1296
1387
|
/**
|
|
1297
|
-
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
1388
|
+
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
1298
1389
|
*/
|
|
1299
1390
|
Bucket: BucketName;
|
|
1300
1391
|
}
|
|
@@ -1304,13 +1395,29 @@ declare namespace S3Control {
|
|
|
1304
1395
|
*/
|
|
1305
1396
|
Policy?: Policy;
|
|
1306
1397
|
}
|
|
1398
|
+
export interface GetBucketReplicationRequest {
|
|
1399
|
+
/**
|
|
1400
|
+
* The Amazon Web Services account ID of the Outposts bucket.
|
|
1401
|
+
*/
|
|
1402
|
+
AccountId: AccountId;
|
|
1403
|
+
/**
|
|
1404
|
+
* Specifies the bucket to get the replication information for. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
1405
|
+
*/
|
|
1406
|
+
Bucket: BucketName;
|
|
1407
|
+
}
|
|
1408
|
+
export interface GetBucketReplicationResult {
|
|
1409
|
+
/**
|
|
1410
|
+
* A container for one or more replication rules. A replication configuration must have at least one rule and you can add up to 100 rules. The maximum size of a replication configuration is 128 KB.
|
|
1411
|
+
*/
|
|
1412
|
+
ReplicationConfiguration?: ReplicationConfiguration;
|
|
1413
|
+
}
|
|
1307
1414
|
export interface GetBucketRequest {
|
|
1308
1415
|
/**
|
|
1309
1416
|
* The Amazon Web Services account ID of the Outposts bucket.
|
|
1310
1417
|
*/
|
|
1311
1418
|
AccountId: AccountId;
|
|
1312
1419
|
/**
|
|
1313
|
-
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
1420
|
+
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
1314
1421
|
*/
|
|
1315
1422
|
Bucket: BucketName;
|
|
1316
1423
|
}
|
|
@@ -1334,7 +1441,7 @@ declare namespace S3Control {
|
|
|
1334
1441
|
*/
|
|
1335
1442
|
AccountId: AccountId;
|
|
1336
1443
|
/**
|
|
1337
|
-
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
1444
|
+
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
1338
1445
|
*/
|
|
1339
1446
|
Bucket: BucketName;
|
|
1340
1447
|
}
|
|
@@ -1676,7 +1783,7 @@ declare namespace S3Control {
|
|
|
1676
1783
|
}
|
|
1677
1784
|
export interface JobManifestLocation {
|
|
1678
1785
|
/**
|
|
1679
|
-
* The Amazon Resource Name (ARN) for a manifest object.
|
|
1786
|
+
* The Amazon Resource Name (ARN) for a manifest object. When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
|
|
1680
1787
|
*/
|
|
1681
1788
|
ObjectArn: S3KeyArnString;
|
|
1682
1789
|
/**
|
|
@@ -1868,7 +1975,7 @@ declare namespace S3Control {
|
|
|
1868
1975
|
}
|
|
1869
1976
|
export interface LifecycleRuleFilter {
|
|
1870
1977
|
/**
|
|
1871
|
-
* Prefix identifying one or more objects to which the rule applies.
|
|
1978
|
+
* Prefix identifying one or more objects to which the rule applies. When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
|
|
1872
1979
|
*/
|
|
1873
1980
|
Prefix?: Prefix;
|
|
1874
1981
|
Tag?: S3Tag;
|
|
@@ -1916,7 +2023,7 @@ declare namespace S3Control {
|
|
|
1916
2023
|
*/
|
|
1917
2024
|
AccountId: AccountId;
|
|
1918
2025
|
/**
|
|
1919
|
-
* The name of the bucket whose associated access points you want to list. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
2026
|
+
* The name of the bucket whose associated access points you want to list. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
1920
2027
|
*/
|
|
1921
2028
|
Bucket?: BucketName;
|
|
1922
2029
|
/**
|
|
@@ -2063,7 +2170,19 @@ declare namespace S3Control {
|
|
|
2063
2170
|
export type ManifestPrefixString = string;
|
|
2064
2171
|
export type MaxLength1024String = string;
|
|
2065
2172
|
export type MaxResults = number;
|
|
2173
|
+
export interface Metrics {
|
|
2174
|
+
/**
|
|
2175
|
+
* Specifies whether replication metrics are enabled.
|
|
2176
|
+
*/
|
|
2177
|
+
Status: MetricsStatus;
|
|
2178
|
+
/**
|
|
2179
|
+
* A container that specifies the time threshold for emitting the s3:Replication:OperationMissedThreshold event. This is not supported by Amazon S3 on Outposts buckets.
|
|
2180
|
+
*/
|
|
2181
|
+
EventThreshold?: ReplicationTimeValue;
|
|
2182
|
+
}
|
|
2183
|
+
export type MetricsStatus = "Enabled"|"Disabled"|string;
|
|
2066
2184
|
export type MinStorageBytesPercentage = number;
|
|
2185
|
+
export type Minutes = number;
|
|
2067
2186
|
export type MultiRegionAccessPointAlias = string;
|
|
2068
2187
|
export type MultiRegionAccessPointClientToken = string;
|
|
2069
2188
|
export type MultiRegionAccessPointId = string;
|
|
@@ -2123,7 +2242,7 @@ declare namespace S3Control {
|
|
|
2123
2242
|
*/
|
|
2124
2243
|
Region?: RegionName;
|
|
2125
2244
|
/**
|
|
2126
|
-
* The traffic state for the specified bucket or Amazon Web Services Region. A value of 0 indicates a passive state, which means that no new traffic will be routed to the Region. A value of 100 indicates an active state, which means that traffic will be routed to the specified Region. When the routing configuration for a Region is changed from active to passive, any in-progress operations (uploads, copies, deletes, and so on) to the formerly active Region will continue to run to until a final success or failure status is reached. If all Regions in the routing configuration are designated as passive, you'll receive an InvalidRequest error.
|
|
2245
|
+
* The traffic state for the specified bucket or Amazon Web Services Region. A value of 0 indicates a passive state, which means that no new traffic will be routed to the Region. A value of 100 indicates an active state, which means that traffic will be routed to the specified Region. When the routing configuration for a Region is changed from active to passive, any in-progress operations (uploads, copies, deletes, and so on) to the formerly active Region will continue to run to until a final success or failure status is reached. If all Regions in the routing configuration are designated as passive, you'll receive an InvalidRequest error.
|
|
2127
2246
|
*/
|
|
2128
2247
|
TrafficDialPercentage: TrafficDialPercentage;
|
|
2129
2248
|
}
|
|
@@ -2221,6 +2340,7 @@ declare namespace S3Control {
|
|
|
2221
2340
|
export type ObjectSizeLessThanBytes = number;
|
|
2222
2341
|
export type OperationName = "LambdaInvoke"|"S3PutObjectCopy"|"S3PutObjectAcl"|"S3PutObjectTagging"|"S3DeleteObjectTagging"|"S3InitiateRestoreObject"|"S3PutObjectLegalHold"|"S3PutObjectRetention"|"S3ReplicateObject"|string;
|
|
2223
2342
|
export type OutputSchemaVersion = "V_1"|string;
|
|
2343
|
+
export type OwnerOverride = "Destination"|string;
|
|
2224
2344
|
export type Policy = string;
|
|
2225
2345
|
export interface PolicyStatus {
|
|
2226
2346
|
/**
|
|
@@ -2242,6 +2362,7 @@ declare namespace S3Control {
|
|
|
2242
2362
|
IsEnabled?: IsEnabled;
|
|
2243
2363
|
SelectionCriteria?: SelectionCriteria;
|
|
2244
2364
|
}
|
|
2365
|
+
export type Priority = number;
|
|
2245
2366
|
export interface ProposedMultiRegionAccessPointPolicy {
|
|
2246
2367
|
/**
|
|
2247
2368
|
* The details of the proposed policy.
|
|
@@ -2301,7 +2422,7 @@ declare namespace S3Control {
|
|
|
2301
2422
|
*/
|
|
2302
2423
|
AccountId: AccountId;
|
|
2303
2424
|
/**
|
|
2304
|
-
* The name of the access point that you want to associate with the specified policy. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through
|
|
2425
|
+
* The name of the access point that you want to associate with the specified policy. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the access point accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/accesspoint/<my-accesspoint-name>. For example, to access the access point reports-ap through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/accesspoint/reports-ap. The value must be URL encoded.
|
|
2305
2426
|
*/
|
|
2306
2427
|
Name: AccessPointName;
|
|
2307
2428
|
/**
|
|
@@ -2329,7 +2450,7 @@ declare namespace S3Control {
|
|
|
2329
2450
|
*/
|
|
2330
2451
|
AccountId: AccountId;
|
|
2331
2452
|
/**
|
|
2332
|
-
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
2453
|
+
* Specifies the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
2333
2454
|
*/
|
|
2334
2455
|
Bucket: BucketName;
|
|
2335
2456
|
/**
|
|
@@ -2341,13 +2462,27 @@ declare namespace S3Control {
|
|
|
2341
2462
|
*/
|
|
2342
2463
|
Policy: Policy;
|
|
2343
2464
|
}
|
|
2465
|
+
export interface PutBucketReplicationRequest {
|
|
2466
|
+
/**
|
|
2467
|
+
* The Amazon Web Services account ID of the Outposts bucket.
|
|
2468
|
+
*/
|
|
2469
|
+
AccountId: AccountId;
|
|
2470
|
+
/**
|
|
2471
|
+
* Specifies the S3 on Outposts bucket to set the configuration for. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
2472
|
+
*/
|
|
2473
|
+
Bucket: BucketName;
|
|
2474
|
+
/**
|
|
2475
|
+
*
|
|
2476
|
+
*/
|
|
2477
|
+
ReplicationConfiguration: ReplicationConfiguration;
|
|
2478
|
+
}
|
|
2344
2479
|
export interface PutBucketTaggingRequest {
|
|
2345
2480
|
/**
|
|
2346
2481
|
* The Amazon Web Services account ID of the Outposts bucket.
|
|
2347
2482
|
*/
|
|
2348
2483
|
AccountId: AccountId;
|
|
2349
2484
|
/**
|
|
2350
|
-
* The Amazon Resource Name (ARN) of the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through
|
|
2485
|
+
* The Amazon Resource Name (ARN) of the bucket. For using this parameter with Amazon S3 on Outposts with the REST API, you must specify the name and the x-amz-outpost-id as well. For using this parameter with S3 on Outposts with the Amazon Web Services SDK and CLI, you must specify the ARN of the bucket accessed in the format arn:aws:s3-outposts:<Region>:<account-id>:outpost/<outpost-id>/bucket/<my-bucket-name>. For example, to access the bucket reports through Outpost my-outpost owned by account 123456789012 in Region us-west-2, use the URL encoding of arn:aws:s3-outposts:us-west-2:123456789012:outpost/my-outpost/bucket/reports. The value must be URL encoded.
|
|
2351
2486
|
*/
|
|
2352
2487
|
Bucket: BucketName;
|
|
2353
2488
|
/**
|
|
@@ -2468,6 +2603,10 @@ declare namespace S3Control {
|
|
|
2468
2603
|
* The name of the associated bucket for the Region.
|
|
2469
2604
|
*/
|
|
2470
2605
|
Bucket: BucketName;
|
|
2606
|
+
/**
|
|
2607
|
+
* The Amazon Web Services account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
|
|
2608
|
+
*/
|
|
2609
|
+
BucketAccountId?: AccountId;
|
|
2471
2610
|
}
|
|
2472
2611
|
export type RegionCreationList = Region[];
|
|
2473
2612
|
export type RegionName = string;
|
|
@@ -2480,6 +2619,10 @@ declare namespace S3Control {
|
|
|
2480
2619
|
* The name of the Region.
|
|
2481
2620
|
*/
|
|
2482
2621
|
Region?: RegionName;
|
|
2622
|
+
/**
|
|
2623
|
+
* The Amazon Web Services account ID that owns the Amazon S3 bucket that's associated with this Multi-Region Access Point.
|
|
2624
|
+
*/
|
|
2625
|
+
BucketAccountId?: AccountId;
|
|
2483
2626
|
}
|
|
2484
2627
|
export type RegionReportList = RegionReport[];
|
|
2485
2628
|
export interface RegionalBucket {
|
|
@@ -2506,10 +2649,112 @@ declare namespace S3Control {
|
|
|
2506
2649
|
}
|
|
2507
2650
|
export type RegionalBucketList = RegionalBucket[];
|
|
2508
2651
|
export type Regions = S3AWSRegion[];
|
|
2652
|
+
export type ReplicaKmsKeyID = string;
|
|
2653
|
+
export interface ReplicaModifications {
|
|
2654
|
+
/**
|
|
2655
|
+
* Specifies whether S3 on Outposts replicates modifications to object metadata on replicas.
|
|
2656
|
+
*/
|
|
2657
|
+
Status: ReplicaModificationsStatus;
|
|
2658
|
+
}
|
|
2659
|
+
export type ReplicaModificationsStatus = "Enabled"|"Disabled"|string;
|
|
2660
|
+
export interface ReplicationConfiguration {
|
|
2661
|
+
/**
|
|
2662
|
+
* The Amazon Resource Name (ARN) of the Identity and Access Management (IAM) role that S3 on Outposts assumes when replicating objects. For information about S3 replication on Outposts configuration, see Setting up replication in the Amazon S3 User Guide.
|
|
2663
|
+
*/
|
|
2664
|
+
Role: Role;
|
|
2665
|
+
/**
|
|
2666
|
+
* A container for one or more replication rules. A replication configuration must have at least one rule and can contain an array of 100 rules at the most.
|
|
2667
|
+
*/
|
|
2668
|
+
Rules: ReplicationRules;
|
|
2669
|
+
}
|
|
2670
|
+
export interface ReplicationRule {
|
|
2671
|
+
/**
|
|
2672
|
+
* A unique identifier for the rule. The maximum value is 255 characters.
|
|
2673
|
+
*/
|
|
2674
|
+
ID?: ID;
|
|
2675
|
+
/**
|
|
2676
|
+
* The priority indicates which rule has precedence whenever two or more replication rules conflict. S3 on Outposts attempts to replicate objects according to all replication rules. However, if there are two or more rules with the same destination Outposts bucket, then objects will be replicated according to the rule with the highest priority. The higher the number, the higher the priority. For more information, see Creating replication rules between Outposts in the Amazon S3 User Guide.
|
|
2677
|
+
*/
|
|
2678
|
+
Priority?: Priority;
|
|
2679
|
+
/**
|
|
2680
|
+
* An object key name prefix that identifies the object or objects to which the rule applies. The maximum prefix length is 1,024 characters. To include all objects in an Outposts bucket, specify an empty string. When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
|
|
2681
|
+
*/
|
|
2682
|
+
Prefix?: Prefix;
|
|
2683
|
+
/**
|
|
2684
|
+
* A filter that identifies the subset of objects to which the replication rule applies. A Filter element must specify exactly one Prefix, Tag, or And child element.
|
|
2685
|
+
*/
|
|
2686
|
+
Filter?: ReplicationRuleFilter;
|
|
2687
|
+
/**
|
|
2688
|
+
* Specifies whether the rule is enabled.
|
|
2689
|
+
*/
|
|
2690
|
+
Status: ReplicationRuleStatus;
|
|
2691
|
+
/**
|
|
2692
|
+
* A container that describes additional filters for identifying the source Outposts objects that you want to replicate. You can choose to enable or disable the replication of these objects.
|
|
2693
|
+
*/
|
|
2694
|
+
SourceSelectionCriteria?: SourceSelectionCriteria;
|
|
2695
|
+
/**
|
|
2696
|
+
* An optional configuration to replicate existing source bucket objects. This is not supported by Amazon S3 on Outposts buckets.
|
|
2697
|
+
*/
|
|
2698
|
+
ExistingObjectReplication?: ExistingObjectReplication;
|
|
2699
|
+
/**
|
|
2700
|
+
* A container for information about the replication destination and its configurations.
|
|
2701
|
+
*/
|
|
2702
|
+
Destination: Destination;
|
|
2703
|
+
/**
|
|
2704
|
+
* Specifies whether S3 on Outposts replicates delete markers. If you specify a Filter element in your replication configuration, you must also include a DeleteMarkerReplication element. If your Filter includes a Tag element, the DeleteMarkerReplication element's Status child element must be set to Disabled, because S3 on Outposts doesn't support replicating delete markers for tag-based rules. For more information about delete marker replication, see How delete operations affect replication in the Amazon S3 User Guide.
|
|
2705
|
+
*/
|
|
2706
|
+
DeleteMarkerReplication?: DeleteMarkerReplication;
|
|
2707
|
+
/**
|
|
2708
|
+
* The Amazon Resource Name (ARN) of the access point for the source Outposts bucket that you want S3 on Outposts to replicate the objects from.
|
|
2709
|
+
*/
|
|
2710
|
+
Bucket: BucketIdentifierString;
|
|
2711
|
+
}
|
|
2712
|
+
export interface ReplicationRuleAndOperator {
|
|
2713
|
+
/**
|
|
2714
|
+
* An object key name prefix that identifies the subset of objects that the rule applies to.
|
|
2715
|
+
*/
|
|
2716
|
+
Prefix?: Prefix;
|
|
2717
|
+
/**
|
|
2718
|
+
* An array of tags that contain key and value pairs.
|
|
2719
|
+
*/
|
|
2720
|
+
Tags?: S3TagSet;
|
|
2721
|
+
}
|
|
2722
|
+
export interface ReplicationRuleFilter {
|
|
2723
|
+
/**
|
|
2724
|
+
* An object key name prefix that identifies the subset of objects that the rule applies to. When you're using XML requests, you must replace special characters (such as carriage returns) in object keys with their equivalent XML entity codes. For more information, see XML-related object key constraints in the Amazon S3 User Guide.
|
|
2725
|
+
*/
|
|
2726
|
+
Prefix?: Prefix;
|
|
2727
|
+
Tag?: S3Tag;
|
|
2728
|
+
/**
|
|
2729
|
+
* A container for specifying rule filters. The filters determine the subset of objects that the rule applies to. This element is required only if you specify more than one filter. For example: If you specify both a Prefix and a Tag filter, wrap these filters in an And element. If you specify a filter based on multiple tags, wrap the Tag elements in an And element.
|
|
2730
|
+
*/
|
|
2731
|
+
And?: ReplicationRuleAndOperator;
|
|
2732
|
+
}
|
|
2733
|
+
export type ReplicationRuleStatus = "Enabled"|"Disabled"|string;
|
|
2734
|
+
export type ReplicationRules = ReplicationRule[];
|
|
2509
2735
|
export type ReplicationStatus = "COMPLETED"|"FAILED"|"REPLICA"|"NONE"|string;
|
|
2510
2736
|
export type ReplicationStatusFilterList = ReplicationStatus[];
|
|
2737
|
+
export type ReplicationStorageClass = "STANDARD"|"REDUCED_REDUNDANCY"|"STANDARD_IA"|"ONEZONE_IA"|"INTELLIGENT_TIERING"|"GLACIER"|"DEEP_ARCHIVE"|"OUTPOSTS"|"GLACIER_IR"|string;
|
|
2738
|
+
export interface ReplicationTime {
|
|
2739
|
+
/**
|
|
2740
|
+
* Specifies whether S3 Replication Time Control (S3 RTC) is enabled.
|
|
2741
|
+
*/
|
|
2742
|
+
Status: ReplicationTimeStatus;
|
|
2743
|
+
/**
|
|
2744
|
+
* A container that specifies the time by which replication should be complete for all objects and operations on objects.
|
|
2745
|
+
*/
|
|
2746
|
+
Time: ReplicationTimeValue;
|
|
2747
|
+
}
|
|
2748
|
+
export type ReplicationTimeStatus = "Enabled"|"Disabled"|string;
|
|
2749
|
+
export interface ReplicationTimeValue {
|
|
2750
|
+
/**
|
|
2751
|
+
* Contains an integer that specifies the time period in minutes. Valid value: 15
|
|
2752
|
+
*/
|
|
2753
|
+
Minutes?: Minutes;
|
|
2754
|
+
}
|
|
2511
2755
|
export type ReportPrefixString = string;
|
|
2512
2756
|
export type RequestedJobStatus = "Cancelled"|"Ready"|string;
|
|
2757
|
+
export type Role = string;
|
|
2513
2758
|
export type RouteList = MultiRegionAccessPointRoute[];
|
|
2514
2759
|
export type S3AWSRegion = string;
|
|
2515
2760
|
export interface S3AccessControlList {
|
|
@@ -2565,7 +2810,7 @@ declare namespace S3Control {
|
|
|
2565
2810
|
export type S3ContentLength = number;
|
|
2566
2811
|
export interface S3CopyObjectOperation {
|
|
2567
2812
|
/**
|
|
2568
|
-
* Specifies the destination bucket ARN for the batch copy operation. For example, to copy objects to a bucket named destinationBucket, set the TargetResource property to arn:aws:s3:::destinationBucket.
|
|
2813
|
+
* Specifies the destination bucket Amazon Resource Name (ARN) for the batch copy operation. For example, to copy objects to a bucket named destinationBucket, set the TargetResource property to arn:aws:s3:::destinationBucket.
|
|
2569
2814
|
*/
|
|
2570
2815
|
TargetResource?: S3BucketArnString;
|
|
2571
2816
|
/**
|
|
@@ -2613,7 +2858,7 @@ declare namespace S3Control {
|
|
|
2613
2858
|
*/
|
|
2614
2859
|
SSEAwsKmsKeyId?: KmsKeyArnString;
|
|
2615
2860
|
/**
|
|
2616
|
-
* Specifies the folder prefix
|
|
2861
|
+
* Specifies the folder prefix that you want the objects to be copied into. For example, to copy objects into a folder named Folder1 in the destination bucket, set the TargetKeyPrefix property to Folder1.
|
|
2617
2862
|
*/
|
|
2618
2863
|
TargetKeyPrefix?: NonEmptyMaxLength1024String;
|
|
2619
2864
|
/**
|
|
@@ -2633,7 +2878,7 @@ declare namespace S3Control {
|
|
|
2633
2878
|
*/
|
|
2634
2879
|
BucketKeyEnabled?: Boolean;
|
|
2635
2880
|
/**
|
|
2636
|
-
* Indicates the algorithm you want Amazon S3 to use to create the checksum. For more information see Checking object integrity in the Amazon S3 User Guide.
|
|
2881
|
+
* Indicates the algorithm that you want Amazon S3 to use to create the checksum. For more information, see Checking object integrity in the Amazon S3 User Guide.
|
|
2637
2882
|
*/
|
|
2638
2883
|
ChecksumAlgorithm?: S3ChecksumAlgorithm;
|
|
2639
2884
|
}
|
|
@@ -2884,6 +3129,23 @@ declare namespace S3Control {
|
|
|
2884
3129
|
MinStorageBytesPercentage?: MinStorageBytesPercentage;
|
|
2885
3130
|
}
|
|
2886
3131
|
export type Setting = boolean;
|
|
3132
|
+
export interface SourceSelectionCriteria {
|
|
3133
|
+
/**
|
|
3134
|
+
* A filter that you can use to select Amazon S3 objects that are encrypted with server-side encryption by using Key Management Service (KMS) keys. If you include SourceSelectionCriteria in the replication configuration, this element is required. This is not supported by Amazon S3 on Outposts buckets.
|
|
3135
|
+
*/
|
|
3136
|
+
SseKmsEncryptedObjects?: SseKmsEncryptedObjects;
|
|
3137
|
+
/**
|
|
3138
|
+
* A filter that you can use to specify whether replica modification sync is enabled. S3 on Outposts replica modification sync can help you keep object metadata synchronized between replicas and source objects. By default, S3 on Outposts replicates metadata from the source objects to the replicas only. When replica modification sync is enabled, S3 on Outposts replicates metadata changes made to the replica copies back to the source object, making the replication bidirectional. To replicate object metadata modifications on replicas, you can specify this element and set the Status of this element to Enabled. You must enable replica modification sync on the source and destination buckets to replicate replica metadata changes between the source and the replicas.
|
|
3139
|
+
*/
|
|
3140
|
+
ReplicaModifications?: ReplicaModifications;
|
|
3141
|
+
}
|
|
3142
|
+
export interface SseKmsEncryptedObjects {
|
|
3143
|
+
/**
|
|
3144
|
+
* Specifies whether Amazon S3 replicates objects that are created with server-side encryption by using an KMS key stored in Key Management Service.
|
|
3145
|
+
*/
|
|
3146
|
+
Status: SseKmsEncryptedObjectsStatus;
|
|
3147
|
+
}
|
|
3148
|
+
export type SseKmsEncryptedObjectsStatus = "Enabled"|"Disabled"|string;
|
|
2887
3149
|
export type StorageLensArn = string;
|
|
2888
3150
|
export interface StorageLensAwsOrg {
|
|
2889
3151
|
/**
|