HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: //lib/python3.6/site-packages/awscli/examples/lightsail/get-bundles.rst
**To get the bundles for new instances**

The following ``get-bundles`` example displays details about all of the available bundles that can be used to create new instances in Amazon Lightsail. ::

    aws lightsail get-bundles

Output::

    {
        "bundles": [
            {
                "price": 3.5,
                "cpuCount": 1,
                "diskSizeInGb": 20,
                "bundleId": "nano_2_0",
                "instanceType": "nano",
                "isActive": true,
                "name": "Nano",
                "power": 300,
                "ramSizeInGb": 0.5,
                "transferPerMonthInGb": 1024,
                "supportedPlatforms": [
                    "LINUX_UNIX"
                ]
            },
            {
                "price": 5.0,
                "cpuCount": 1,
                "diskSizeInGb": 40,
                "bundleId": "micro_2_0",
                "instanceType": "micro",
                "isActive": true,
                "name": "Micro",
                "power": 500,
                "ramSizeInGb": 1.0,
                "transferPerMonthInGb": 2048,
                "supportedPlatforms": [
                    "LINUX_UNIX"
                ]
            },
            {
                "price": 10.0,
                "cpuCount": 1,
                "diskSizeInGb": 60,
                "bundleId": "small_2_0",
                "instanceType": "small",
                "isActive": true,
                "name": "Small",
                "power": 1000,
                "ramSizeInGb": 2.0,
                "transferPerMonthInGb": 3072,
                "supportedPlatforms": [
                    "LINUX_UNIX"
                ]
            },
            ...
            }
        ]
    }