aws_resource_get
Read a single AWS resource by its CloudFormation type name and primary identifier, using the Cloud Control API. Supports hundreds of resource types like Lambda functions, S3 buckets, and IAM roles.
Instructions
Read a single AWS resource via Cloud Control API. Covers hundreds of resource types with a CloudFormation schema. typeName is '::::' (e.g. 'AWS::Lambda::Function'); identifier is the primary key for that type (function name, bucket name, IAM role name, ARN, or composite id). Returns parsed Properties. For resources not covered by CCAPI or for data-plane operations, use aws_call.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| typeName | Yes | CloudFormation type name, e.g. 'AWS::Lambda::Function', 'AWS::S3::Bucket', 'AWS::IAM::Role'. | |
| identifier | Yes | Primary identifier for the resource (function name, bucket name, ARN, or composite id). | |
| profile | No | Override session profile for this call. | |
| region | No | Override session region for this call. | |
| timeoutMs | No | Timeout in milliseconds. Default 60000. |