AWS Doc SDK Examples
翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。
GetTemplate
で を使用する CLI
以下のコード例は、GetTemplate
の使用方法を示しています。
- CLI
-
- AWS CLI
-
AWS CloudFormation スタックのテンプレート本文を表示するには
以下の
get-template
例は、myteststack
スタックのテンプレートを表示します。aws cloudformation get-template --stack-name
myteststack
出力:
{ "TemplateBody": { "AWSTemplateFormatVersion": "2010-09-09", "Outputs": { "BucketName": { "Description": "Name of S3 bucket to hold website content", "Value": { "Ref": "S3Bucket" } } }, "Description": "AWS CloudFormation Sample Template S3_Bucket: Sample template showing how to create a publicly accessible S3 bucket. **WARNING** This template creates an S3 bucket. You will be billed for the AWS resources used if you create a stack from this template.", "Resources": { "S3Bucket": { "Type": "AWS::S3::Bucket", "Properties": { "AccessControl": "PublicRead" } } } } }
-
API 詳細については、AWS CLI 「 コマンドリファレンスGetTemplate
」の「」を参照してください。
-
- PowerShell
-
- のツール PowerShell
-
例 1: 指定されたスタックに関連付けられているテンプレートを返します。
Get-CFNTemplate -StackName "myStack"
-
API 詳細については、「 コマンドレットリファレンスGetTemplate」の「」を参照してください。 AWS Tools for PowerShell
-
EstimateTemplateCost
ListStackResources