AWS code-library documentation change
Summary
Added PowerShell examples for listing hosted zones by name
Security assessment
Routine documentation update showing how to list hosted zones. No security implications or security features documented.
Diff
diff --git a/code-library/latest/ug/route-53_example_route-53_ListHostedZonesByName_section.md b/code-library/latest/ug/route-53_example_route-53_ListHostedZonesByName_section.md index 2f4596c41..8d96cd8a4 100644 --- a//code-library/latest/ug/route-53_example_route-53_ListHostedZonesByName_section.md +++ b//code-library/latest/ug/route-53_example_route-53_ListHostedZonesByName_section.md @@ -107,0 +108,20 @@ PowerShell +**Tools for PowerShell V5** + + +**Example 1: Returns all of your public and private hosted zones in ASCII order by domain name.** + + + Get-R53HostedZonesByName + + +**Example 2: Returns your public and private hosted zones, in ASCII order by domain name, starting at the specified DNS name.** + + + Get-R53HostedZonesByName -DnsName example2.com + + + * For API details, see [ListHostedZonesByName](https://docs.aws.amazon.com/powershell/v5/reference) in _AWS Tools for PowerShell Cmdlet Reference (V5)_. + + + +