by XDK
3. August 2019 00:12
Examples:
1) List of EC2 instance IDs:
aws ec2 describe-instances | grep InstanceId | tr '",' ' '
2) List of Load Balancers by Name:
aws elbv2 describe-load-balancers | grep LoadBalancerName | tr '",' ' '
3) List of Target Groups by Name:
aws elbv2 describe-target-groups | grep TargetGroupName | tr '",' ' '
4) List of Autoscale Groups by Name:
aws autoscaling describe-auto-scaling-groups | grep AutoScalingGroupName | tr '",' ' '
5) List of Launch configurations by Name:
aws autoscaling describe-launch-configurations | grep LaunchConfigurationName | tr '",' ' '
6) List of available IAM users by Name:
aws iam list-users | grep UserName | tr '",' ' '
Reference