文件範例儲存庫中有更多 AWS SDK可用的範例。 AWS SDK
本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。
EstimateTemplateCost
搭配 使用 CLI
下列程式碼範例示範如何使用 EstimateTemplateCost
。
- CLI
-
- AWS CLI
-
估算範本成本
下列
estimate-template-cost
範例會為template.yaml
目前資料夾中名為 的範本產生成本估算。aws cloudformation estimate-template-cost \ --template-body
file://template.yaml
輸出:
{ "Url": "http://calculator.s3.amazonaws.com/calc5.html?key=cloudformation/7870825a-xmpl-4def-92e7-c4f8dd360cca" }
-
如需API詳細資訊,請參閱 命令參考 EstimateTemplateCost
中的 。 AWS CLI
-
- PowerShell
-
- 適用於 的工具 PowerShell
-
範例 1:傳回URL具有查詢字串的 AWS 簡易每月計算器,該字串說明執行範本所需的資源。範本是從指定的 Amazon S3 URL和套用的單一自訂參數取得。參數也可以使用 'Key' 和 'Value' 來指定,而不是 'ParameterKey' 和 'ParameterValue'。
Measure-CFNTemplateCost -TemplateURL https://s3.amazonaws.com/amzn-s3-demo-bucket/templatefile.template ` -Region us-west-1 ` -Parameter @{ ParameterKey="KeyName"; ParameterValue="myKeyPairName" }
範例 2:傳回URL具有查詢字串的 AWS 簡易每月計算器,該字串說明執行範本所需的資源。範本從提供的內容剖析,並套用自訂參數 (此範例假設範本內容已宣告兩個參數 'KeyName' 和 'InstanceType')。自訂參數也可以使用 'Key' 和 'Value' 來指定,而不是 'ParameterKey' 和 'ParameterValue'。
Measure-CFNTemplateCost -TemplateBody "{TEMPLATE CONTENT HERE}" ` -Parameter @( @{ ParameterKey="KeyName"; ParameterValue="myKeyPairName" },` @{ ParameterKey="InstanceType"; ParameterValue="m1.large" })
範例 3:使用 New-Object 建置一組範本參數,並傳回URL具有查詢字串的 AWS 簡易每月計算器,該字串描述執行範本所需的資源。範本是從提供的內容中剖析,具有自訂參數 (此範例假設範本內容已宣告兩個參數 'KeyName' 和 'InstanceType')。
$p1 = New-Object -Type Amazon.CloudFormation.Model.Parameter $p1.ParameterKey = "KeyName" $p1.ParameterValue = "myKeyPairName" $p2 = New-Object -Type Amazon.CloudFormation.Model.Parameter $p2.ParameterKey = "InstanceType" $p2.ParameterValue = "m1.large" Measure-CFNTemplateCost -TemplateBody "{TEMPLATE CONTENT HERE}" -Parameter @( $p1, $p2 )
-
如需API詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考 EstimateTemplateCost中的 。
-