aws_resource_get
Read a single AWS resource via Cloud Control API using its CloudFormation type name and primary identifier, returning parsed properties.
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 |
|---|---|---|---|
| region | No | Override session region for this call. | |
| profile | No | Override session profile for this call. | |
| typeName | Yes | CloudFormation type name, e.g. 'AWS::Lambda::Function', 'AWS::S3::Bucket', 'AWS::IAM::Role'. | |
| timeoutMs | No | Timeout in milliseconds. Default 60000. | |
| identifier | Yes | Primary identifier for the resource (function name, bucket name, ARN, or composite id). |