|
1 |
| -# CloudFormation code examples for the SDK for .NET |
2 |
| - |
3 |
| -## Overview |
4 |
| - |
5 |
| -Shows how to use the AWS SDK for .NET to work with AWS CloudFormation. |
6 |
| - |
7 |
| -<!--custom.overview.start--> |
8 |
| -<!--custom.overview.end--> |
9 |
| - |
10 |
| -_CloudFormation enables you to create and provision AWS infrastructure deployments predictably and repeatedly._ |
11 |
| - |
12 |
| -## ⚠ Important |
13 |
| - |
14 |
| -* Running this code might result in charges to your AWS account. For more details, see [AWS Pricing](https://aws.amazon.com/pricing/) and [Free Tier](https://aws.amazon.com/free/). |
15 |
| -* Running the tests might result in charges to your AWS account. |
16 |
| -* We recommend that you grant your code least privilege. At most, grant only the minimum permissions required to perform the task. For more information, see [Grant least privilege](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege). |
17 |
| -* This code is not tested in every AWS Region. For more information, see [AWS Regional Services](https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services). |
18 |
| - |
19 |
| -<!--custom.important.start--> |
20 |
| -<!--custom.important.end--> |
21 |
| - |
22 |
| -## Code examples |
23 |
| - |
24 |
| -### Prerequisites |
25 |
| - |
26 |
| -For prerequisites, see the [README](../README.md#Prerequisites) in the `dotnetv3` folder. |
27 |
| - |
28 |
| - |
29 |
| -<!--custom.prerequisites.start--> |
30 |
| -<!--custom.prerequisites.end--> |
31 |
| - |
32 |
| -### Get started |
33 |
| - |
34 |
| -- [Hello CloudFormation](Actions/HelloCloudFormation.cs#L4) (`DescribeStackResources`) |
35 |
| - |
36 |
| - |
37 |
| -<!--custom.examples.start--> |
38 |
| -<!--custom.examples.end--> |
39 |
| - |
40 |
| -## Run the examples |
41 |
| - |
42 |
| -### Instructions |
43 |
| - |
44 |
| -For general instructions to run the examples, see the |
45 |
| -[README](../README.md#building-and-running-the-code-examples) in the `dotnetv3` folder. |
46 |
| - |
47 |
| -Some projects might include a settings.json file. Before compiling the project, |
48 |
| -you can change these values to match your own account and resources. Alternatively, |
49 |
| -add a settings.local.json file with your local settings, which will be loaded automatically |
50 |
| -when the application runs. |
51 |
| - |
52 |
| -After the example compiles, you can run it from the command line. To do so, navigate to |
53 |
| -the folder that contains the .csproj file and run the following command: |
54 |
| - |
55 |
| -``` |
56 |
| -dotnet run |
57 |
| -``` |
58 |
| - |
59 |
| -Alternatively, you can run the example from within your IDE. |
60 |
| - |
61 |
| - |
62 |
| -<!--custom.instructions.start--> |
63 |
| -<!--custom.instructions.end--> |
64 |
| - |
65 |
| -#### Hello CloudFormation |
66 |
| - |
67 |
| -This example shows you how to Get started using CloudFormation. |
68 |
| - |
69 |
| - |
70 |
| - |
71 |
| -### Tests |
72 |
| - |
73 |
| -⚠ Running tests might result in charges to your AWS account. |
74 |
| - |
75 |
| - |
76 |
| -To find instructions for running these tests, see the [README](../README.md#Tests) |
77 |
| -in the `dotnetv3` folder. |
78 |
| - |
79 |
| - |
80 |
| - |
81 |
| -<!--custom.tests.start--> |
82 |
| -<!--custom.tests.end--> |
83 |
| - |
84 |
| -## Additional resources |
85 |
| - |
86 |
| -- [CloudFormation User Guide](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/Welcome.html) |
87 |
| -- [CloudFormation API Reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/Welcome.html) |
88 |
| -- [SDK for .NET CloudFormation reference](https://docs.aws.amazon.com/sdkfornet/v3/apidocs/items/CloudFormation/NCloudFormation.html) |
89 |
| - |
90 |
| -<!--custom.resources.start--> |
91 |
| -<!--custom.resources.end--> |
92 |
| - |
93 |
| ---- |
94 |
| - |
95 |
| -Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
96 |
| - |
| 1 | +# CloudFormation code examples for the SDK for .NET |
| 2 | + |
| 3 | +## Overview |
| 4 | + |
| 5 | +Shows how to use the AWS SDK for .NET to work with AWS CloudFormation. |
| 6 | + |
| 7 | +<!--custom.overview.start--> |
| 8 | +<!--custom.overview.end--> |
| 9 | + |
| 10 | +_CloudFormation enables you to create and provision AWS infrastructure deployments predictably and repeatedly._ |
| 11 | + |
| 12 | +## ⚠ Important |
| 13 | + |
| 14 | +* Running this code might result in charges to your AWS account. For more details, see [AWS Pricing](https://aws.amazon.com/pricing/) and [Free Tier](https://aws.amazon.com/free/). |
| 15 | +* Running the tests might result in charges to your AWS account. |
| 16 | +* We recommend that you grant your code least privilege. At most, grant only the minimum permissions required to perform the task. For more information, see [Grant least privilege](https://docs.aws.amazon.com/IAM/latest/UserGuide/best-practices.html#grant-least-privilege). |
| 17 | +* This code is not tested in every AWS Region. For more information, see [AWS Regional Services](https://aws.amazon.com/about-aws/global-infrastructure/regional-product-services). |
| 18 | + |
| 19 | +<!--custom.important.start--> |
| 20 | +<!--custom.important.end--> |
| 21 | + |
| 22 | +## Code examples |
| 23 | + |
| 24 | +### Prerequisites |
| 25 | + |
| 26 | +For prerequisites, see the [README](../README.md#Prerequisites) in the `dotnetv3` folder. |
| 27 | + |
| 28 | + |
| 29 | +<!--custom.prerequisites.start--> |
| 30 | +<!--custom.prerequisites.end--> |
| 31 | + |
| 32 | +### Get started |
| 33 | + |
| 34 | +- [Hello CloudFormation](../CloudFormation/Actions/HelloCloudFormation.cs#L4) (`DescribeStackResources`) |
| 35 | + |
| 36 | + |
| 37 | +<!--custom.examples.start--> |
| 38 | +<!--custom.examples.end--> |
| 39 | + |
| 40 | +## Run the examples |
| 41 | + |
| 42 | +### Instructions |
| 43 | + |
| 44 | +For general instructions to run the examples, see the |
| 45 | +[README](../README.md#building-and-running-the-code-examples) in the `dotnetv3` folder. |
| 46 | + |
| 47 | +Some projects might include a settings.json file. Before compiling the project, |
| 48 | +you can change these values to match your own account and resources. Alternatively, |
| 49 | +add a settings.local.json file with your local settings, which will be loaded automatically |
| 50 | +when the application runs. |
| 51 | + |
| 52 | +After the example compiles, you can run it from the command line. To do so, navigate to |
| 53 | +the folder that contains the .csproj file and run the following command: |
| 54 | + |
| 55 | +``` |
| 56 | +dotnet run |
| 57 | +``` |
| 58 | + |
| 59 | +Alternatively, you can run the example from within your IDE. |
| 60 | + |
| 61 | + |
| 62 | +<!--custom.instructions.start--> |
| 63 | +<!--custom.instructions.end--> |
| 64 | + |
| 65 | +#### Hello CloudFormation |
| 66 | + |
| 67 | +This example shows you how to get started using CloudFormation. |
| 68 | + |
| 69 | + |
| 70 | + |
| 71 | +### Tests |
| 72 | + |
| 73 | +⚠ Running tests might result in charges to your AWS account. |
| 74 | + |
| 75 | + |
| 76 | +To find instructions for running these tests, see the [README](../README.md#Tests) |
| 77 | +in the `dotnetv3` folder. |
| 78 | + |
| 79 | + |
| 80 | + |
| 81 | +<!--custom.tests.start--> |
| 82 | +<!--custom.tests.end--> |
| 83 | + |
| 84 | +## Additional resources |
| 85 | + |
| 86 | +- [CloudFormation User Guide](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/Welcome.html) |
| 87 | +- [CloudFormation API Reference](https://docs.aws.amazon.com/AWSCloudFormation/latest/APIReference/Welcome.html) |
| 88 | +- [SDK for .NET CloudFormation reference](https://docs.aws.amazon.com/sdkfornet/v3/apidocs/items/CloudFormation/NCloudFormation.html) |
| 89 | + |
| 90 | +<!--custom.resources.start--> |
| 91 | +<!--custom.resources.end--> |
| 92 | + |
| 93 | +--- |
| 94 | + |
| 95 | +Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. |
| 96 | + |
97 | 97 | SPDX-License-Identifier: Apache-2.0
|
0 commit comments