# Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.1#2# Licensed under the Apache License, Version 2.0 (the "License"). You3# may not use this file except in compliance with the License. A copy of4# the License is located at5#6# http://aws.amazon.com/apache2.0/7#8# or in the "license" file accompanying this file. This file is9# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF10# ANY KIND, either express or implied. See the License for the specific11# language governing permissions and limitations under the License.121314def register_create_hosted_zone_doc_fix(cli):15# We can remove this customization once we begin documenting16# members of complex parameters because the member's docstring17# has the necessary documentation.18cli.register(19'doc-option.route53.create-hosted-zone.hosted-zone-config',20add_private_zone_note)212223def add_private_zone_note(help_command, **kwargs):24note = (25'<p>Note do <b>not</b> include <code>PrivateZone</code> in this '26'input structure. Its value is returned in the output to the command.'27'</p>'28)29help_command.doc.include_doc_string(note)303132