如何找到 JSON 格式的值

How to find the value in JSON format

此命令“aws iam get-account-password-policy”以 JSON 格式提供输出。

{
    "PasswordPolicy": {
        "MinimumPasswordLength": 15,
        "RequireSymbols": false,
        "RequireNumbers": false,
        "RequireUppercaseCharacters": false,
        "RequireLowercaseCharacters": false,
        "AllowUsersToChangePassword": false,
        "ExpirePasswords": false,
        "PasswordReusePrevention": 5
    }
}

我需要从中提取“MinimumPasswordLength”和“PasswordReusePrevention”值,例如 15 和 5。 谁能建议我怎么做或有什么想法?

aws iam get-account-password-policy --query "PasswordPolicy.MinimumPasswordLength"

aws iam get-account-password-policy --query "PasswordPolicy.PasswordReusePrevention"

供进一步参考。

Documentation link - Controlling command output from the AWS CL