{
    "testCases": [
        {
            "documentation": "For custom endpoint with region not set and fips disabled",
            "expect": {
                "endpoint": {
                    "url": "https://example.com"
                }
            },
            "params": {
                "Endpoint": "https://example.com",
                "UseFIPS": false
            }
        },
        {
            "documentation": "For custom endpoint with fips enabled",
            "expect": {
                "error": "Invalid Configuration: FIPS and custom endpoint are not supported"
            },
            "params": {
                "Endpoint": "https://example.com",
                "UseFIPS": true
            }
        },
        {
            "documentation": "For region us-east-1 with FIPS enabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://cassandra-streams-fips.us-east-1.api.aws"
                }
            },
            "params": {
                "Region": "us-east-1",
                "UseFIPS": true
            }
        },
        {
            "documentation": "For region us-east-1 with FIPS disabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://cassandra-streams.us-east-1.api.aws"
                }
            },
            "params": {
                "Region": "us-east-1",
                "UseFIPS": false
            }
        },
        {
            "documentation": "For region cn-northwest-1 with FIPS enabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://cassandra-streams-fips.cn-northwest-1.api.amazonwebservices.com.cn"
                }
            },
            "params": {
                "Region": "cn-northwest-1",
                "UseFIPS": true
            }
        },
        {
            "documentation": "For region cn-northwest-1 with FIPS disabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://cassandra-streams.cn-northwest-1.api.amazonwebservices.com.cn"
                }
            },
            "params": {
                "Region": "cn-northwest-1",
                "UseFIPS": false
            }
        },
        {
            "documentation": "For region us-gov-west-1 with FIPS enabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://cassandra-streams-fips.us-gov-west-1.api.aws"
                }
            },
            "params": {
                "Region": "us-gov-west-1",
                "UseFIPS": true
            }
        },
        {
            "documentation": "For region us-gov-west-1 with FIPS disabled and DualStack enabled",
            "expect": {
                "endpoint": {
                    "url": "https://cassandra-streams.us-gov-west-1.api.aws"
                }
            },
            "params": {
                "Region": "us-gov-west-1",
                "UseFIPS": false
            }
        },
        {
            "documentation": "Missing region",
            "expect": {
                "error": "Invalid Configuration: Missing Region"
            }
        }
    ],
    "version": "1.0"
}