Skip to content

Commit

Permalink
fix(route53): add RoutingControlArn to HealthCheck patch (#18645)
Browse files Browse the repository at this point in the history
The Route53 HealthCheckConfig structure is modeled in the CloudFormation spec as
a JSON blob, but it was previously modeled as an explicit structure (see
structure, as it's not updated with the Route53 spec. This adds the missing
RoutingControlArn to the structure.

fixes #18570


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
njlynch authored Jan 26, 2022
1 parent 2eda19e commit c58e8bb
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,12 @@
"Required": false,
"UpdateType": "Mutable"
},
"RoutingControlArn": {
"Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-routingcontrolarn",
"PrimitiveType": "String",
"Required": false,
"UpdateType": "Mutable"
},
"SearchString": {
"Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-healthcheck-healthcheckconfig.html#cfn-route53-healthcheck-healthcheckconfig-searchstring",
"PrimitiveType": "String",
Expand Down Expand Up @@ -154,4 +160,4 @@
}
}
}
}
}

0 comments on commit c58e8bb

Please sign in to comment.