Skip to content

Commit

Permalink
fix(route53): add RoutingControlArn to HealthCheck patch (aws#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 aws#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 and TikiTDO committed Feb 21, 2022
1 parent 0a49b46 commit 4621593
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 4621593

Please sign in to comment.