From c58e8bbbcb0a66c37b65cddc1da8d19dfbf26b4f Mon Sep 17 00:00:00 2001 From: Nick Lynch <1376292+njlynch@users.noreply.github.com> Date: Wed, 26 Jan 2022 12:11:55 +0000 Subject: [PATCH] fix(route53): add RoutingControlArn to HealthCheck patch (#18645) 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* --- .../000_cfn/660_Route53_HealthCheck_patch.json | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/packages/@aws-cdk/cfnspec/spec-source/specification/000_cfn/660_Route53_HealthCheck_patch.json b/packages/@aws-cdk/cfnspec/spec-source/specification/000_cfn/660_Route53_HealthCheck_patch.json index b03232b4e72a5..4ff2061df1a22 100644 --- a/packages/@aws-cdk/cfnspec/spec-source/specification/000_cfn/660_Route53_HealthCheck_patch.json +++ b/packages/@aws-cdk/cfnspec/spec-source/specification/000_cfn/660_Route53_HealthCheck_patch.json @@ -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", @@ -154,4 +160,4 @@ } } } -} \ No newline at end of file +}