SoSleepy

Troy Bowman

AWS PowerShell Getting Started

How to find the equivalent AWS PowerShell command to the CLI

Get-AWSCmdletName -AwsCliCommand "route53 list-resource-record-sets" -WarningAction SilentlyContinue

A newer method is to use Get-AWSCmdletName with -Service and -ApiOperation

Get-AWSCmdletName -Service route53 -ApiOperation ListResourceRecordSets

If you don’t know the full name of the -ApiOperation to search for, use the -MatchWithRegex switch as a wildcard option.

Get-AWSCmdletName -Service route53 -ApiOperation "record" -MatchWithRegex
,

Leave a Reply

Your email address will not be published. Required fields are marked *