@aws-sdk/client-s3-control 3.183.0 → 3.184.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.184.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.183.0...v3.184.0) (2022-10-04)
7
+
8
+
9
+ ### Features
10
+
11
+ * **client-s3-control:** S3 Object Lambda adds support to allow customers to intercept HeadObject and ListObjects requests and introduce their own compute. These requests were previously proxied to S3. ([9915896](https://github.com/aws/aws-sdk-js-v3/commit/9915896feb5537e59f42a18f08eb65629dc5269b))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.183.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.182.0...v3.183.0) (2022-10-03)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-s3-control
@@ -21,10 +21,15 @@ var ObjectLambdaAllowedFeature;
21
21
  (function (ObjectLambdaAllowedFeature) {
22
22
  ObjectLambdaAllowedFeature["GetObjectPartNumber"] = "GetObject-PartNumber";
23
23
  ObjectLambdaAllowedFeature["GetObjectRange"] = "GetObject-Range";
24
+ ObjectLambdaAllowedFeature["HeadObjectPartNumber"] = "HeadObject-PartNumber";
25
+ ObjectLambdaAllowedFeature["HeadObjectRange"] = "HeadObject-Range";
24
26
  })(ObjectLambdaAllowedFeature = exports.ObjectLambdaAllowedFeature || (exports.ObjectLambdaAllowedFeature = {}));
25
27
  var ObjectLambdaTransformationConfigurationAction;
26
28
  (function (ObjectLambdaTransformationConfigurationAction) {
27
29
  ObjectLambdaTransformationConfigurationAction["GetObject"] = "GetObject";
30
+ ObjectLambdaTransformationConfigurationAction["HeadObject"] = "HeadObject";
31
+ ObjectLambdaTransformationConfigurationAction["ListObjects"] = "ListObjects";
32
+ ObjectLambdaTransformationConfigurationAction["ListObjectsV2"] = "ListObjectsV2";
28
33
  })(ObjectLambdaTransformationConfigurationAction = exports.ObjectLambdaTransformationConfigurationAction || (exports.ObjectLambdaTransformationConfigurationAction = {}));
29
34
  var ObjectLambdaContentTransformation;
30
35
  (function (ObjectLambdaContentTransformation) {
@@ -14,10 +14,15 @@ export var ObjectLambdaAllowedFeature;
14
14
  (function (ObjectLambdaAllowedFeature) {
15
15
  ObjectLambdaAllowedFeature["GetObjectPartNumber"] = "GetObject-PartNumber";
16
16
  ObjectLambdaAllowedFeature["GetObjectRange"] = "GetObject-Range";
17
+ ObjectLambdaAllowedFeature["HeadObjectPartNumber"] = "HeadObject-PartNumber";
18
+ ObjectLambdaAllowedFeature["HeadObjectRange"] = "HeadObject-Range";
17
19
  })(ObjectLambdaAllowedFeature || (ObjectLambdaAllowedFeature = {}));
18
20
  export var ObjectLambdaTransformationConfigurationAction;
19
21
  (function (ObjectLambdaTransformationConfigurationAction) {
20
22
  ObjectLambdaTransformationConfigurationAction["GetObject"] = "GetObject";
23
+ ObjectLambdaTransformationConfigurationAction["HeadObject"] = "HeadObject";
24
+ ObjectLambdaTransformationConfigurationAction["ListObjects"] = "ListObjects";
25
+ ObjectLambdaTransformationConfigurationAction["ListObjectsV2"] = "ListObjectsV2";
21
26
  })(ObjectLambdaTransformationConfigurationAction || (ObjectLambdaTransformationConfigurationAction = {}));
22
27
  export var ObjectLambdaContentTransformation;
23
28
  (function (ObjectLambdaContentTransformation) {
@@ -414,10 +414,15 @@ export interface CreateAccessPointResult {
414
414
  }
415
415
  export declare enum ObjectLambdaAllowedFeature {
416
416
  GetObjectPartNumber = "GetObject-PartNumber",
417
- GetObjectRange = "GetObject-Range"
417
+ GetObjectRange = "GetObject-Range",
418
+ HeadObjectPartNumber = "HeadObject-PartNumber",
419
+ HeadObjectRange = "HeadObject-Range"
418
420
  }
419
421
  export declare enum ObjectLambdaTransformationConfigurationAction {
420
- GetObject = "GetObject"
422
+ GetObject = "GetObject",
423
+ HeadObject = "HeadObject",
424
+ ListObjects = "ListObjects",
425
+ ListObjectsV2 = "ListObjectsV2"
421
426
  }
422
427
  /**
423
428
  * <p>A container for AwsLambdaTransformation.</p>
@@ -115,9 +115,14 @@ export interface CreateAccessPointResult {
115
115
  export declare enum ObjectLambdaAllowedFeature {
116
116
  GetObjectPartNumber = "GetObject-PartNumber",
117
117
  GetObjectRange = "GetObject-Range",
118
+ HeadObjectPartNumber = "HeadObject-PartNumber",
119
+ HeadObjectRange = "HeadObject-Range",
118
120
  }
119
121
  export declare enum ObjectLambdaTransformationConfigurationAction {
120
122
  GetObject = "GetObject",
123
+ HeadObject = "HeadObject",
124
+ ListObjects = "ListObjects",
125
+ ListObjectsV2 = "ListObjectsV2",
121
126
  }
122
127
  export declare type ObjectLambdaContentTransformation =
123
128
  | ObjectLambdaContentTransformation.AwsLambdaMember
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-s3-control",
3
3
  "description": "AWS SDK for JavaScript S3 Control Client for Node.js, Browser and React Native",
4
- "version": "3.183.0",
4
+ "version": "3.184.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",