We can easily create the same endpoint using a CloudFormation template. Let's just add this block to the CloudFormation template's Resources section:
"TestEndpointHealthCheck": { "Type": "AWS::Route53::HealthCheck", "Properties": { "HealthCheckConfig": { "Port": "443", "Type": "HTTPS", "ResourcePath": "/test", "FullyQualifiedDomainName": { "Ref": "DomainName" }, "RequestInterval": "30", "FailureThreshold": "3", "MeasureLatency": "true", "EnableSNI": "true" }, "HealthCheckTags": [ { "Key"...