

文件 AWS 開發套件範例 GitHub 儲存庫中有更多可用的 [AWS SDK 範例](https://github.com/awsdocs/aws-doc-sdk-examples)。

本文為英文版的機器翻譯版本，如內容有任何歧義或不一致之處，概以英文版為準。

# 搭配使用 `DescribePlacementGroups` 與 CLI
<a name="ec2_example_ec2_DescribePlacementGroups_section"></a>

下列程式碼範例示範如何使用 `DescribePlacementGroups`。

------
#### [ CLI ]

**AWS CLI**  
**描述您的置放群組**  
此範例命令描述您的所有置放群組。  
命令：  

```
aws ec2 describe-placement-groups
```
輸出：  

```
{
    "PlacementGroups": [
        {
            "GroupName": "my-cluster",
            "State": "available",
            "Strategy": "cluster"
        },
        ...
    ]
}
```
+  如需 API 詳細資訊，請參閱《AWS CLI 命令參考》**中的 [DescribePlacementGroups](https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ec2/describe-placement-groups.html)。

------
#### [ PowerShell ]

**Tools for PowerShell V4**  
**範例 1：此範例描述指定的置放群組。**  

```
Get-EC2PlacementGroup -GroupName my-placement-group
```
**輸出：**  

```
GroupName             State        Strategy
---------             -----        --------
my-placement-group    available    cluster
```
+  如需 API 詳細資訊，請參閱《AWS Tools for PowerShell Cmdlet 參考 (V4)》**中的 [DescribePlacementGroups](https://docs.aws.amazon.com/powershell/v4/reference)。

**Tools for PowerShell V5**  
**範例 1：此範例描述指定的置放群組。**  

```
Get-EC2PlacementGroup -GroupName my-placement-group
```
**輸出：**  

```
GroupName             State        Strategy
---------             -----        --------
my-placement-group    available    cluster
```
+  如需 API 詳細資訊，請參閱《AWS Tools for PowerShell Cmdlet 參考 (V5)》**中的 [DescribePlacementGroups](https://docs.aws.amazon.com/powershell/v5/reference)。

------