{
    "testCases": [
        {
            "documentation": "For region eu-central-1 with FIPS enabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise-fips.eu-central-1.api.aws"
                }
            },
            "params": {
                "UseDualStack": true,
                "UseFIPS": true,
                "Region": "eu-central-1"
            }
        },
        {
            "documentation": "For region eu-central-1 with FIPS enabled and DualStack disabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise-fips.eu-central-1.amazonaws.com"
                }
            },
            "params": {
                "UseDualStack": false,
                "UseFIPS": true,
                "Region": "eu-central-1"
            }
        },
        {
            "documentation": "For region eu-central-1 with FIPS disabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise.eu-central-1.api.aws"
                }
            },
            "params": {
                "UseDualStack": true,
                "UseFIPS": false,
                "Region": "eu-central-1"
            }
        },
        {
            "documentation": "For region eu-central-1 with FIPS disabled and DualStack disabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise.eu-central-1.amazonaws.com"
                }
            },
            "params": {
                "UseDualStack": false,
                "UseFIPS": false,
                "Region": "eu-central-1"
            }
        },
        {
            "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise-fips.us-east-1.api.aws"
                }
            },
            "params": {
                "UseDualStack": true,
                "UseFIPS": true,
                "Region": "us-east-1"
            }
        },
        {
            "documentation": "For region us-east-1 with FIPS enabled and DualStack disabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise-fips.us-east-1.amazonaws.com"
                }
            },
            "params": {
                "UseDualStack": false,
                "UseFIPS": true,
                "Region": "us-east-1"
            }
        },
        {
            "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise.us-east-1.api.aws"
                }
            },
            "params": {
                "UseDualStack": true,
                "UseFIPS": false,
                "Region": "us-east-1"
            }
        },
        {
            "documentation": "For region us-east-1 with FIPS disabled and DualStack disabled",
            "expect": {
                "endpoint": {
                    "url": "https://iotfleetwise.us-east-1.amazonaws.com"
                }
            },
            "params": {
                "UseDualStack": false,
                "UseFIPS": false,
                "Region": "us-east-1"
            }
        },
        {
            "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"
}