简体   繁体   中英

Powershell 7.2.5 ConvertFrom-Json Outputting Array as One Object

I'm using the AWS CLI command aws iam list-users in Powershell 7.2.5 and trying to convert the output from JSON to a Powershell Object.

The JSON output of the above command looks like this (actual values omitted):

{
    "Users": [
        {
            "Path": "/",
            "UserName": "username1",
            "UserId": "userid1",
            "Arn": "arnid1",
            "CreateDate": "createddate"
        },
        {
            "Path": "/",
            "UserName": "username2",
            "UserId": "userid2",
            "Arn": "arnid2",
            "CreateDate": "createddate"
        },
        {
            "Path": "/",
            "UserName": "username3",
            "UserId": "userid3",
            "Arn": "arnid3",
            "CreateDate": "createddate"
        }
    ]
}

When I try and run the following code to create an array of Powershell Objects the output comes out as one Object.

$users = ConvertFrom-Json -InputObject $usersJson

Users
-----
{@{Path=/; UserName=username1; UserId=userid1; Arn=arnid1; CreateDate=createddate}, @{Path=/; UserName=username2; UserId=userid2; Arn=arnid2; CreateDate=createddate}, @{Path=/; UserName=username3; UserId=userid3; Arn=arnid3; CreateDate=createddate}}

Have read over countless posts and am now at a loss of what to do.

Any help would be greatly appreciated.

Santiago 's comment was correct:

$users.Users shows all the entries as individual objects.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM