HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/doc/awscli/examples/cloudcontrol/list-resources.rst
**To list the resources of a given type**

The following ``list-resources`` example lists the AWS::Kinesis::Stream resources provisioned in your AWS account. ::

    aws cloudcontrol list-resources \
        --type-name AWS::Kinesis::Stream
 
Output::

    {
        "TypeName": "AWS::Kinesis::Stream", 
        "ResourceDescriptions": [
            {
                "Identifier": "MyKinesisStream", 
                "Properties": "{\"Name\":\"MyKinesisStream\"}"
            }, 
            {
                "Identifier": "AnotherStream", 
                "Properties": "{\"Name\":\"AnotherStream\"}"
            }
        ]
    }

For more information, see `Discovering resources <https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/resource-operations-list.html>`__ in the *Cloud Control API User Guide*.