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

43 lines
1.4 KiB
JSON

{
"testCases": [
{
"documentation": "For custom endpoint with fips disabled and dualstack disabled",
"expect": {
"endpoint": {
"url": "https://example.com"
}
},
"params": {
"UseDualStack": false,
"UseFIPS": false,
"Region": "us-east-1",
"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": {
"UseDualStack": false,
"UseFIPS": true,
"Region": "us-east-1",
"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": {
"UseDualStack": true,
"UseFIPS": false,
"Region": "us-east-1",
"Endpoint": "https://example.com"
}
}
],
"version": "1.0"
}