User guide
For related API reference information, see Amazon.CloudFormation and
Amazon.CloudFormation.Model in the AWS SDK for .NET API Reference.
Resource APIs
The SDK for .NET provides the AWS Resource APIs for .NET for programming with AWS CloudFormation.
These resource APIs provide a resource-level programming model that enables you to write code to work
more directly with AWS CloudFormation resources as compared to their low-level API counterparts. (For
more information about the AWS Resource APIs for .NET, including how to download and reference
these resource APIs, see AWS Resource APIs for .NET (p. 41).)
The following example shows how to use the AWS Resource APIs for .NET to list accessible resources
in AWS CloudFormation:
// using Amazon.CloudFormation.Resources;
var cf = new CloudFormation();
foreach (var stack in cf.GetStacks())
{
Console.WriteLine("Stack: {0}", stack.Name);
Console.WriteLine(" Status: {0}", stack.StackStatus);
Console.WriteLine(" Created: {0}", stack.CreationTime);
var ps = stack.Parameters;
if (ps.Any())
{
Console.WriteLine(" Parameters:");
foreach (var p in ps)
{
Console.WriteLine(" {0} = {1}",
p.ParameterKey, p.ParameterValue);
}
}
}
For related API reference information, see Amazon.CloudFormation.Resources.
Amazon DynamoDB Programming with the AWS
SDK for .NET
The AWS SDK for .NET supports Amazon DynamoDB, which is a fast NoSQL database service offered
by AWS.
The following information introduces you to the DynamoDB programming models and their APIs. There
are also links to additional DynamoDB programming resources within the SDK for .NET.
Topics
• Programming Models (p. 47)
• Additional Resources (p. 52)
Version v2.0.0
46
AWS SDK for .NET Developer Guide
Amazon DynamoDB