

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

# 更新傳輸
<a name="orgs_transfer_billing-update-transfer"></a>

當您登入組織的管理帳戶時，您可以更新指派給轉移的名稱，以便管理和支付另一個組織的合併帳單。這可協助您識別和組織轉移。

只有您和繼承轉移的任何帳戶可以看到此名稱。

## 更新轉移
<a name="orgs_transfer_billing-update-transfers-steps"></a>

**術語和概念**  
以下是 AWS 帳單與成本管理 主控台中使用的術語和概念：  
**傳入帳單**：帳單轉移可讓您管理和支付另一個組織的合併帳單。
**傳出帳單**：帳單轉移，允許組織外部的帳戶管理和支付合併帳單。

**最低許可**  
若要更新轉移，您的 必須具有下列許可：  
`organizations:ListInboundResponsibilityTransfers`
`organizations:ListOutboundResponsibilityTransfers`
`organizations:UpdateResponsibilityTransfer`

若要更新轉移，請完成下列步驟。

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

**更新轉移**

1. 登入 AWS 管理主控台 ，並在 https：//[https://console.aws.amazon.com/costmanagement/](https://console.aws.amazon.com/costmanagement/) 開啟 AWS 帳單與成本管理 主控台。

1. 在**偏好設定和設定的**左側導覽上，選擇**帳單轉移**。

1. 在**傳入帳單**索引標籤上，選取您要更新的轉移。

1. 選擇**動作**下拉式功能表，然後選擇**編輯名稱**。

1. 在**編輯轉移名稱對話方塊上**，輸入新名稱，然後選擇**更新名稱**。

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

**更新轉移**  
您可以使用下列其中一個操作：
+ AWS CLI：[list-inbound-responsibility-transfers](https://docs.aws.amazon.com/cli/latest/reference/organizations/list-inbound-responsibility-transfers.html)、[list-outbound-responsibility-transfers](https://docs.aws.amazon.com/cli/latest/reference/organizations/list-outbound-responsibility-transfers.html) 和 [update-responsibility-transfer](https://docs.aws.amazon.com/cli/latest/reference/organizations/describe-responsibility-transfer.html)

  1. 執行下列命令來尋找傳入帳單的帳單轉移 ID：

     ```
     $ C:\> aws organizations list-inbound-responsibility-transfers \
         --type BILLING
     ```

  1. 從回應中，記下您要更新的轉移帳單轉移 ID。

  1. 執行下列命令來更新傳輸：

     ```
     $ C:\> aws organizations update-responsibility-transfer \
         --id {{exampleid}}
         --name {{"Updated name for billing transfer"}}
     ```
+ AWS SDKs：[list-inbound-responsibility-transfers](https://docs.aws.amazon.com/cli/latest/reference/organizations/API_ListInboundResponsibilityTransfers.html)、[list-outbound-responsibility-transfers](https://docs.aws.amazon.com/organizations/latest/APIReference/API_ListOutboundResponsibilityTransfers.html) 和 [update-responsibility-transfer](https://docs.aws.amazon.com/organizations/latest/APIReference/API_DescribeResponsibilityTransfer.html)

------