@aws-sdk/client-cloudfront-keyvaluestore 3.1032.0 → 3.1034.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/dist-cjs/endpoint/bdd.js +59 -0
- package/dist-cjs/endpoint/endpointResolver.js +2 -2
- package/dist-es/endpoint/bdd.js +56 -0
- package/dist-es/endpoint/endpointResolver.js +3 -3
- package/dist-types/endpoint/bdd.d.ts +2 -0
- package/dist-types/ts3.4/endpoint/bdd.d.ts +2 -0
- package/package.json +19 -19
- package/dist-cjs/endpoint/ruleset.js +0 -7
- package/dist-es/endpoint/ruleset.js +0 -4
- package/dist-types/endpoint/ruleset.d.ts +0 -2
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +0 -2
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.bdd = void 0;
|
|
4
|
+
const util_endpoints_1 = require("@smithy/util-endpoints");
|
|
5
|
+
const o = "ref";
|
|
6
|
+
const a = -1, b = "isSet", c = "parsedArn", d = "stringEquals", e = "getAttr", f = "arnType", g = "partitionResult", h = { [o]: c }, i = { [o]: f }, j = { "fn": e, "argv": [h, "partition"] }, k = { "authSchemes": [{ "name": "sigv4a", "signingName": "cloudfront-keyvaluestore", "signingRegionSet": ["*"] }] }, l = [{ [o]: "KvsARN" }], m = [{ [o]: "Region" }], n = [{ [o]: "Endpoint" }];
|
|
7
|
+
const _data = {
|
|
8
|
+
conditions: [
|
|
9
|
+
["booleanEquals", [{ [o]: "UseFIPS" }, true]],
|
|
10
|
+
[b, l],
|
|
11
|
+
["aws.parseArn", l, c],
|
|
12
|
+
[d, [{ fn: e, argv: [h, "service"] }, "cloudfront"]],
|
|
13
|
+
[d, [{ fn: e, argv: [h, "region"] }, ""]],
|
|
14
|
+
[e, [h, "resourceId[0]"], f],
|
|
15
|
+
[d, [i, ""]],
|
|
16
|
+
[d, [i, "key-value-store"]],
|
|
17
|
+
[d, [j, "aws"]],
|
|
18
|
+
[b, m],
|
|
19
|
+
["aws.partition", m, g],
|
|
20
|
+
[d, [j, { fn: e, argv: [{ [o]: g }, "name"] }]],
|
|
21
|
+
[b, n],
|
|
22
|
+
["parseURL", n, "url"]
|
|
23
|
+
],
|
|
24
|
+
results: [
|
|
25
|
+
[a],
|
|
26
|
+
["{url#scheme}://{parsedArn#accountId}.{url#authority}{url#path}", k],
|
|
27
|
+
[a, "Provided endpoint is not a valid URL"],
|
|
28
|
+
["https://{parsedArn#accountId}.cloudfront-kvs.global.api.aws", k],
|
|
29
|
+
[a, "Client was configured for partition `{partitionResult#name}` but Kvs ARN has `{parsedArn#partition}`"],
|
|
30
|
+
[a, "CloudFront-KeyValueStore is not supported in partition `{parsedArn#partition}`"],
|
|
31
|
+
[a, "ARN resource type is invalid. Expected `key-value-store`, found: `{arnType}`"],
|
|
32
|
+
[a, "No resource type found in the KVS ARN. Resource type must be `key-value-store`."],
|
|
33
|
+
[a, "Provided ARN must be a global resource ARN. Found: `{parsedArn#region}`"],
|
|
34
|
+
[a, "Provided ARN is not a valid CloudFront Service ARN. Found: `{parsedArn#service}`"],
|
|
35
|
+
[a, "KVS ARN must be a valid ARN"],
|
|
36
|
+
[a, "KVS ARN must be provided to use this service"],
|
|
37
|
+
[a, "Invalid Configuration: FIPS is not supported with CloudFront-KeyValueStore."]
|
|
38
|
+
]
|
|
39
|
+
};
|
|
40
|
+
const root = 2;
|
|
41
|
+
const r = 100_000_000;
|
|
42
|
+
const nodes = new Int32Array([
|
|
43
|
+
-1, 1, -1,
|
|
44
|
+
0, r + 12, 3,
|
|
45
|
+
1, 4, r + 11,
|
|
46
|
+
2, 5, r + 10,
|
|
47
|
+
3, 6, r + 9,
|
|
48
|
+
4, 7, r + 8,
|
|
49
|
+
5, 8, r + 7,
|
|
50
|
+
6, r + 7, 9,
|
|
51
|
+
7, 10, r + 6,
|
|
52
|
+
8, 11, r + 5,
|
|
53
|
+
9, 12, 14,
|
|
54
|
+
10, 13, 14,
|
|
55
|
+
11, 14, r + 4,
|
|
56
|
+
12, 15, r + 3,
|
|
57
|
+
13, r + 1, r + 2,
|
|
58
|
+
]);
|
|
59
|
+
exports.bdd = util_endpoints_1.BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -3,13 +3,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.defaultEndpointResolver = void 0;
|
|
4
4
|
const util_endpoints_1 = require("@aws-sdk/util-endpoints");
|
|
5
5
|
const util_endpoints_2 = require("@smithy/util-endpoints");
|
|
6
|
-
const
|
|
6
|
+
const bdd_1 = require("./bdd");
|
|
7
7
|
const cache = new util_endpoints_2.EndpointCache({
|
|
8
8
|
size: 50,
|
|
9
9
|
params: ["Endpoint", "KvsARN", "Region", "UseFIPS"],
|
|
10
10
|
});
|
|
11
11
|
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
12
|
-
return cache.get(endpointParams, () => (0, util_endpoints_2.
|
|
12
|
+
return cache.get(endpointParams, () => (0, util_endpoints_2.decideEndpoint)(bdd_1.bdd, {
|
|
13
13
|
endpointParams: endpointParams,
|
|
14
14
|
logger: context.logger,
|
|
15
15
|
}));
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { BinaryDecisionDiagram } from "@smithy/util-endpoints";
|
|
2
|
+
const o = "ref";
|
|
3
|
+
const a = -1, b = "isSet", c = "parsedArn", d = "stringEquals", e = "getAttr", f = "arnType", g = "partitionResult", h = { [o]: c }, i = { [o]: f }, j = { "fn": e, "argv": [h, "partition"] }, k = { "authSchemes": [{ "name": "sigv4a", "signingName": "cloudfront-keyvaluestore", "signingRegionSet": ["*"] }] }, l = [{ [o]: "KvsARN" }], m = [{ [o]: "Region" }], n = [{ [o]: "Endpoint" }];
|
|
4
|
+
const _data = {
|
|
5
|
+
conditions: [
|
|
6
|
+
["booleanEquals", [{ [o]: "UseFIPS" }, true]],
|
|
7
|
+
[b, l],
|
|
8
|
+
["aws.parseArn", l, c],
|
|
9
|
+
[d, [{ fn: e, argv: [h, "service"] }, "cloudfront"]],
|
|
10
|
+
[d, [{ fn: e, argv: [h, "region"] }, ""]],
|
|
11
|
+
[e, [h, "resourceId[0]"], f],
|
|
12
|
+
[d, [i, ""]],
|
|
13
|
+
[d, [i, "key-value-store"]],
|
|
14
|
+
[d, [j, "aws"]],
|
|
15
|
+
[b, m],
|
|
16
|
+
["aws.partition", m, g],
|
|
17
|
+
[d, [j, { fn: e, argv: [{ [o]: g }, "name"] }]],
|
|
18
|
+
[b, n],
|
|
19
|
+
["parseURL", n, "url"]
|
|
20
|
+
],
|
|
21
|
+
results: [
|
|
22
|
+
[a],
|
|
23
|
+
["{url#scheme}://{parsedArn#accountId}.{url#authority}{url#path}", k],
|
|
24
|
+
[a, "Provided endpoint is not a valid URL"],
|
|
25
|
+
["https://{parsedArn#accountId}.cloudfront-kvs.global.api.aws", k],
|
|
26
|
+
[a, "Client was configured for partition `{partitionResult#name}` but Kvs ARN has `{parsedArn#partition}`"],
|
|
27
|
+
[a, "CloudFront-KeyValueStore is not supported in partition `{parsedArn#partition}`"],
|
|
28
|
+
[a, "ARN resource type is invalid. Expected `key-value-store`, found: `{arnType}`"],
|
|
29
|
+
[a, "No resource type found in the KVS ARN. Resource type must be `key-value-store`."],
|
|
30
|
+
[a, "Provided ARN must be a global resource ARN. Found: `{parsedArn#region}`"],
|
|
31
|
+
[a, "Provided ARN is not a valid CloudFront Service ARN. Found: `{parsedArn#service}`"],
|
|
32
|
+
[a, "KVS ARN must be a valid ARN"],
|
|
33
|
+
[a, "KVS ARN must be provided to use this service"],
|
|
34
|
+
[a, "Invalid Configuration: FIPS is not supported with CloudFront-KeyValueStore."]
|
|
35
|
+
]
|
|
36
|
+
};
|
|
37
|
+
const root = 2;
|
|
38
|
+
const r = 100_000_000;
|
|
39
|
+
const nodes = new Int32Array([
|
|
40
|
+
-1, 1, -1,
|
|
41
|
+
0, r + 12, 3,
|
|
42
|
+
1, 4, r + 11,
|
|
43
|
+
2, 5, r + 10,
|
|
44
|
+
3, 6, r + 9,
|
|
45
|
+
4, 7, r + 8,
|
|
46
|
+
5, 8, r + 7,
|
|
47
|
+
6, r + 7, 9,
|
|
48
|
+
7, 10, r + 6,
|
|
49
|
+
8, 11, r + 5,
|
|
50
|
+
9, 12, 14,
|
|
51
|
+
10, 13, 14,
|
|
52
|
+
11, 14, r + 4,
|
|
53
|
+
12, 15, r + 3,
|
|
54
|
+
13, r + 1, r + 2,
|
|
55
|
+
]);
|
|
56
|
+
export const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import { awsEndpointFunctions } from "@aws-sdk/util-endpoints";
|
|
2
|
-
import { customEndpointFunctions,
|
|
3
|
-
import {
|
|
2
|
+
import { customEndpointFunctions, decideEndpoint, EndpointCache } from "@smithy/util-endpoints";
|
|
3
|
+
import { bdd } from "./bdd";
|
|
4
4
|
const cache = new EndpointCache({
|
|
5
5
|
size: 50,
|
|
6
6
|
params: ["Endpoint", "KvsARN", "Region", "UseFIPS"],
|
|
7
7
|
});
|
|
8
8
|
export const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
9
|
-
return cache.get(endpointParams, () =>
|
|
9
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
10
10
|
endpointParams: endpointParams,
|
|
11
11
|
logger: context.logger,
|
|
12
12
|
}));
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-cloudfront-keyvaluestore",
|
|
3
3
|
"description": "AWS SDK for JavaScript Cloudfront Keyvaluestore Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1034.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-cloudfront-keyvaluestore",
|
|
@@ -21,42 +21,42 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.974.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.974.3",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.34",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
27
27
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/signature-v4-multi-region": "^3.996.
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.33",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
31
|
+
"@aws-sdk/signature-v4-multi-region": "^3.996.20",
|
|
32
32
|
"@aws-sdk/types": "^3.973.8",
|
|
33
|
-
"@aws-sdk/util-endpoints": "^3.996.
|
|
33
|
+
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
36
|
-
"@smithy/config-resolver": "^4.4.
|
|
37
|
-
"@smithy/core": "^3.23.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "^3.973.19",
|
|
36
|
+
"@smithy/config-resolver": "^4.4.17",
|
|
37
|
+
"@smithy/core": "^3.23.16",
|
|
38
38
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
39
39
|
"@smithy/hash-node": "^4.2.14",
|
|
40
40
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
41
41
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
42
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
43
|
-
"@smithy/middleware-retry": "^4.5.
|
|
44
|
-
"@smithy/middleware-serde": "^4.2.
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.4.31",
|
|
43
|
+
"@smithy/middleware-retry": "^4.5.4",
|
|
44
|
+
"@smithy/middleware-serde": "^4.2.19",
|
|
45
45
|
"@smithy/middleware-stack": "^4.2.14",
|
|
46
46
|
"@smithy/node-config-provider": "^4.3.14",
|
|
47
|
-
"@smithy/node-http-handler": "^4.
|
|
47
|
+
"@smithy/node-http-handler": "^4.6.0",
|
|
48
48
|
"@smithy/protocol-http": "^5.3.14",
|
|
49
|
-
"@smithy/smithy-client": "^4.12.
|
|
49
|
+
"@smithy/smithy-client": "^4.12.12",
|
|
50
50
|
"@smithy/types": "^4.14.1",
|
|
51
51
|
"@smithy/url-parser": "^4.2.14",
|
|
52
52
|
"@smithy/util-base64": "^4.3.2",
|
|
53
53
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
54
54
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
57
|
-
"@smithy/util-endpoints": "^3.4.
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.3.48",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.2.53",
|
|
57
|
+
"@smithy/util-endpoints": "^3.4.2",
|
|
58
58
|
"@smithy/util-middleware": "^4.2.14",
|
|
59
|
-
"@smithy/util-retry": "^4.3.
|
|
59
|
+
"@smithy/util-retry": "^4.3.3",
|
|
60
60
|
"@smithy/util-utf8": "^4.2.2",
|
|
61
61
|
"tslib": "^2.6.2"
|
|
62
62
|
},
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.ruleSet = void 0;
|
|
4
|
-
const r = "type", s = "rules", t = "conditions", u = "ref", v = "endpoint", w = "properties", x = "authSchemes", y = "signingName", z = "signingRegionSet", A = "headers";
|
|
5
|
-
const a = false, b = "isSet", c = "parsedArn", d = "stringEquals", e = "getAttr", f = "arnType", g = "partitionResult", h = "tree", i = "error", j = { "required": false, [r]: "string" }, k = { [u]: c }, l = { [u]: f }, m = { [t]: [{ "fn": b, "argv": [{ [u]: "Endpoint" }] }], [s]: [{ [t]: [{ "fn": "parseURL", "argv": [{ [u]: "Endpoint" }], "assign": "url" }], [s]: [{ [v]: { "url": "{url#scheme}://{parsedArn#accountId}.{url#authority}{url#path}", [w]: { [x]: [{ "name": "sigv4a", [y]: "cloudfront-keyvaluestore", [z]: ["*"] }] }, [A]: {} }, [r]: "endpoint" }], [r]: h }, { [i]: "Provided endpoint is not a valid URL", [r]: i }], [r]: h }, n = { [v]: { "url": "https://{parsedArn#accountId}.cloudfront-kvs.global.api.aws", [w]: { [x]: [{ "name": "sigv4a", [y]: "cloudfront-keyvaluestore", [z]: ["*"] }] }, [A]: {} }, [r]: "endpoint" }, o = { [i]: "No resource type found in the KVS ARN. Resource type must be `key-value-store`.", [r]: i }, p = [{ [u]: "KvsARN" }], q = [{ [u]: "Region" }];
|
|
6
|
-
const _data = { version: "1.0", parameters: { KvsARN: j, Region: j, UseFIPS: { required: true, default: a, [r]: "boolean" }, Endpoint: j }, [s]: [{ [t]: [{ fn: "booleanEquals", argv: [{ [u]: "UseFIPS" }, a] }], [s]: [{ [t]: [{ fn: b, argv: p }], [s]: [{ [t]: [{ fn: "aws.parseArn", argv: p, assign: c }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [k, "service"] }, "cloudfront"] }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [k, "region"] }, ""] }], [s]: [{ [t]: [{ fn: e, argv: [k, "resourceId[0]"], assign: f }], [s]: [{ [t]: [{ fn: "not", argv: [{ fn: d, argv: [l, ""] }] }], [s]: [{ [t]: [{ fn: d, argv: [l, "key-value-store"] }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [k, "partition"] }, "aws"] }], [s]: [{ [t]: [{ fn: b, argv: q }], [s]: [{ [t]: [{ fn: "aws.partition", argv: q, assign: g }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [{ [u]: g }, "name"] }, "{parsedArn#partition}"] }], [s]: [m, n], [r]: h }, { error: "Client was configured for partition `{partitionResult#name}` but Kvs ARN has `{parsedArn#partition}`", [r]: i }], [r]: h }], [r]: h }, m, n], [r]: h }, { error: "CloudFront-KeyValueStore is not supported in partition `{parsedArn#partition}`", [r]: i }], [r]: h }, { error: "ARN resource type is invalid. Expected `key-value-store`, found: `{arnType}`", [r]: i }], [r]: h }, o], [r]: h }, o], [r]: h }, { error: "Provided ARN must be a global resource ARN. Found: `{parsedArn#region}`", [r]: i }], [r]: h }, { error: "Provided ARN is not a valid CloudFront Service ARN. Found: `{parsedArn#service}`", [r]: i }], [r]: h }, { error: "KVS ARN must be a valid ARN", [r]: i }], [r]: h }, { error: "KVS ARN must be provided to use this service", [r]: i }], [r]: h }, { error: "Invalid Configuration: FIPS is not supported with CloudFront-KeyValueStore.", [r]: i }] };
|
|
7
|
-
exports.ruleSet = _data;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
const r = "type", s = "rules", t = "conditions", u = "ref", v = "endpoint", w = "properties", x = "authSchemes", y = "signingName", z = "signingRegionSet", A = "headers";
|
|
2
|
-
const a = false, b = "isSet", c = "parsedArn", d = "stringEquals", e = "getAttr", f = "arnType", g = "partitionResult", h = "tree", i = "error", j = { "required": false, [r]: "string" }, k = { [u]: c }, l = { [u]: f }, m = { [t]: [{ "fn": b, "argv": [{ [u]: "Endpoint" }] }], [s]: [{ [t]: [{ "fn": "parseURL", "argv": [{ [u]: "Endpoint" }], "assign": "url" }], [s]: [{ [v]: { "url": "{url#scheme}://{parsedArn#accountId}.{url#authority}{url#path}", [w]: { [x]: [{ "name": "sigv4a", [y]: "cloudfront-keyvaluestore", [z]: ["*"] }] }, [A]: {} }, [r]: "endpoint" }], [r]: h }, { [i]: "Provided endpoint is not a valid URL", [r]: i }], [r]: h }, n = { [v]: { "url": "https://{parsedArn#accountId}.cloudfront-kvs.global.api.aws", [w]: { [x]: [{ "name": "sigv4a", [y]: "cloudfront-keyvaluestore", [z]: ["*"] }] }, [A]: {} }, [r]: "endpoint" }, o = { [i]: "No resource type found in the KVS ARN. Resource type must be `key-value-store`.", [r]: i }, p = [{ [u]: "KvsARN" }], q = [{ [u]: "Region" }];
|
|
3
|
-
const _data = { version: "1.0", parameters: { KvsARN: j, Region: j, UseFIPS: { required: true, default: a, [r]: "boolean" }, Endpoint: j }, [s]: [{ [t]: [{ fn: "booleanEquals", argv: [{ [u]: "UseFIPS" }, a] }], [s]: [{ [t]: [{ fn: b, argv: p }], [s]: [{ [t]: [{ fn: "aws.parseArn", argv: p, assign: c }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [k, "service"] }, "cloudfront"] }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [k, "region"] }, ""] }], [s]: [{ [t]: [{ fn: e, argv: [k, "resourceId[0]"], assign: f }], [s]: [{ [t]: [{ fn: "not", argv: [{ fn: d, argv: [l, ""] }] }], [s]: [{ [t]: [{ fn: d, argv: [l, "key-value-store"] }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [k, "partition"] }, "aws"] }], [s]: [{ [t]: [{ fn: b, argv: q }], [s]: [{ [t]: [{ fn: "aws.partition", argv: q, assign: g }], [s]: [{ [t]: [{ fn: d, argv: [{ fn: e, argv: [{ [u]: g }, "name"] }, "{parsedArn#partition}"] }], [s]: [m, n], [r]: h }, { error: "Client was configured for partition `{partitionResult#name}` but Kvs ARN has `{parsedArn#partition}`", [r]: i }], [r]: h }], [r]: h }, m, n], [r]: h }, { error: "CloudFront-KeyValueStore is not supported in partition `{parsedArn#partition}`", [r]: i }], [r]: h }, { error: "ARN resource type is invalid. Expected `key-value-store`, found: `{arnType}`", [r]: i }], [r]: h }, o], [r]: h }, o], [r]: h }, { error: "Provided ARN must be a global resource ARN. Found: `{parsedArn#region}`", [r]: i }], [r]: h }, { error: "Provided ARN is not a valid CloudFront Service ARN. Found: `{parsedArn#service}`", [r]: i }], [r]: h }, { error: "KVS ARN must be a valid ARN", [r]: i }], [r]: h }, { error: "KVS ARN must be provided to use this service", [r]: i }], [r]: h }, { error: "Invalid Configuration: FIPS is not supported with CloudFront-KeyValueStore.", [r]: i }] };
|
|
4
|
-
export const ruleSet = _data;
|