You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"documentation": "The AWS region used to dispatch the request.",
8
+
"type": "String"
9
+
},
10
+
"UseDualStack": {
11
+
"builtIn": "AWS::UseDualStack",
12
+
"required": true,
13
+
"default": false,
14
+
"documentation": "When true, use the dual-stack endpoint. If the configured endpoint does not support dual-stack, dispatching the request MAY return an error.",
15
+
"type": "Boolean"
16
+
},
17
+
"UseFIPS": {
18
+
"builtIn": "AWS::UseFIPS",
19
+
"required": true,
20
+
"default": false,
21
+
"documentation": "When true, send this request to the FIPS-compliant regional endpoint. If the configured endpoint does not have a FIPS compliant endpoint, dispatching the request will return an error.",
22
+
"type": "Boolean"
23
+
},
24
+
"Endpoint": {
25
+
"builtIn": "SDK::Endpoint",
26
+
"required": false,
27
+
"documentation": "Override the endpoint used to send this request",
28
+
"type": "String"
29
+
}
30
+
},
31
+
"rules": [
32
+
{
33
+
"conditions": [
34
+
{
35
+
"fn": "aws.partition",
36
+
"argv": [
37
+
{
38
+
"ref": "Region"
39
+
}
40
+
],
41
+
"assign": "PartitionResult"
42
+
}
43
+
],
44
+
"type": "tree",
45
+
"rules": [
46
+
{
47
+
"conditions": [
48
+
{
49
+
"fn": "isSet",
50
+
"argv": [
51
+
{
52
+
"ref": "Endpoint"
53
+
}
54
+
]
55
+
}
56
+
],
57
+
"type": "tree",
58
+
"rules": [
59
+
{
60
+
"conditions": [
61
+
{
62
+
"fn": "booleanEquals",
63
+
"argv": [
64
+
{
65
+
"ref": "UseFIPS"
66
+
},
67
+
true
68
+
]
69
+
}
70
+
],
71
+
"error": "Invalid Configuration: FIPS and custom endpoint are not supported",
72
+
"type": "error"
73
+
},
74
+
{
75
+
"conditions": [],
76
+
"type": "tree",
77
+
"rules": [
78
+
{
79
+
"conditions": [
80
+
{
81
+
"fn": "booleanEquals",
82
+
"argv": [
83
+
{
84
+
"ref": "UseDualStack"
85
+
},
86
+
true
87
+
]
88
+
}
89
+
],
90
+
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported",
0 commit comments