Container for the parameters to the DescribeStackResources operation.

Returns AWS resource descriptions for running and deleted stacks. If StackName is specified, all the associated resources that are part of the stack are returned. If PhysicalResourceId is specified, all the associated resources of the stack the resource belongs to are returned.

For deleted stacks, DescribeStackResources returns resource information for up to 90 days after the stack has been deleted.

You must specify StackName or PhysicalResourceId. In addition, you can specify LogicalResourceId to filter the returned result. For more information about resources, the LogicalResourceId and PhysicalResourceId , go to the AWS CloudFormation User Guide.

NOTE: A ValidationError is returned if you specify both StackName and PhysicalResourceId in the same request.

Namespace: Amazon.CloudFormation.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class DescribeStackResourcesRequest : AmazonWebServiceRequest
Public Class DescribeStackResourcesRequest _
	Inherits AmazonWebServiceRequest
public ref class DescribeStackResourcesRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
DescribeStackResourcesRequest()()()()
Initializes a new instance of the DescribeStackResourcesRequest class
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
LogicalResourceId
The logical name of the resource as specified in the template. Default: There is no default value.
PhysicalResourceId
The name or unique identifier that corresponds to a physical instance ID of a resource supported by AWS CloudFormation. For example, for an Amazon Elastic Compute Cloud (EC2) instance, PhysicalResourceId corresponds to the InstanceId. You can pass the EC2 InstanceId to DescribeStackResources to find which stack the instance belongs to and what other resources are part of the stack. Default: There is no default value.
StackName
The name or the unique identifier associated with the stack. Default: There is no default value.
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithLogicalResourceId(String)
Sets the LogicalResourceId property
WithPhysicalResourceId(String)
Sets the PhysicalResourceId property
WithStackName(String)
Sets the StackName property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.CloudFormation.Model..::..DescribeStackResourcesRequest

See Also