python-botocore/tests/functional/endpoint-rules/shield/endpoint-tests-1.json
2022-12-12 08:14:19 -08:00

65 lines
2.1 KiB
JSON

{
"testCases": [
{
"documentation": "For region aws-global with FIPS disabled and DualStack disabled",
"expect": {
"endpoint": {
"properties": {
"authSchemes": [
{
"name": "sigv4",
"signingName": "shield",
"signingRegion": "us-east-1"
}
]
},
"url": "https://shield.us-east-1.amazonaws.com"
}
},
"params": {
"Region": "aws-global",
"UseDualStack": false,
"UseFIPS": false
}
},
{
"documentation": "For custom endpoint with fips disabled and dualstack disabled",
"expect": {
"endpoint": {
"url": "https://example.com"
}
},
"params": {
"Region": "us-east-1",
"UseDualStack": false,
"UseFIPS": false,
"Endpoint": "https://example.com"
}
},
{
"documentation": "For custom endpoint with fips enabled and dualstack disabled",
"expect": {
"error": "Invalid Configuration: FIPS and custom endpoint are not supported"
},
"params": {
"Region": "us-east-1",
"UseDualStack": false,
"UseFIPS": true,
"Endpoint": "https://example.com"
}
},
{
"documentation": "For custom endpoint with fips disabled and dualstack enabled",
"expect": {
"error": "Invalid Configuration: Dualstack and custom endpoint are not supported"
},
"params": {
"Region": "us-east-1",
"UseDualStack": true,
"UseFIPS": false,
"Endpoint": "https://example.com"
}
}
],
"version": "1.0"
}