boto3 icon indicating copy to clipboard operation
boto3 copied to clipboard

doc/issue describe_availability_zones: incorrect Wavelength Zone example for group-name

Open mtulio opened this issue 1 year ago • 0 comments

Describe the issue

Hi,

The example for Wavelength Zones is incorrect in the Filter Name=group-name of the legend on the document linked to the issue for describe_availability_zones.

The zone group mentioned in the example (us-east-1-wl1-bos-wlz-1) is a zone name. The correct value must be us-east-1-wl1, see what AWS API returns:

        {
            "State": "available",
            "OptInStatus": "opted-in",
            "Messages": [],
            "RegionName": "us-east-1",
            "ZoneName": "us-east-1-wl1-bos-wlz-1",
            "ZoneId": "use1-wl1-bos-wlz1",
            "GroupName": "us-east-1-wl1",
            "NetworkBorderGroup": "us-east-1-wl1-bos-wlz-1",
            "ZoneType": "wavelength-zone",
            "ParentZoneName": "us-east-1a",
            "ParentZoneId": "use1-az4"
        },

The official AWS documentation is also incorrect, I submitted a feedback there:

https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_DescribeAvailabilityZones.html

Links

https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/ec2/client/describe_availability_zones.html

mtulio avatar Jan 19 '24 12:01 mtulio