

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# 転送の更新
<a name="orgs_transfer_billing-update-transfer"></a>

組織の管理アカウントにサインインすると、転送に割り当てられた名前を更新して、別の組織の一括請求を管理して支払うことができます。これにより、転送を特定して整理できます。

名前は、ユーザーと移管を継承するアカウントにのみ表示されます。

## 転送を更新する
<a name="orgs_transfer_billing-update-transfers-steps"></a>

**用語と概念**  
以下は、 AWS Billing and Cost Management コンソールで使用される用語と概念です。  
**インバウンド請求: **別の組織の一括請求を管理して支払うことができる請求転送。
**アウトバウンド請求**: 組織外のアカウントが一括請求を管理および支払うことを許可する請求転送。

**最小アクセス許可**  
転送を更新するには、 に次のアクセス許可が必要です。  
`organizations:ListInboundResponsibilityTransfers`
`organizations:ListOutboundResponsibilityTransfers`
`organizations:UpdateResponsibilityTransfer`

転送を更新するには、次の手順を実行します。

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

**転送を更新するには**

1. にサインイン AWS マネジメントコンソール し、[https://console.aws.amazon.com/costmanagement/](https://console.aws.amazon.com/costmanagement/) で AWS Billing and Cost Management コンソールを開きます。

1. **設定と設定の**左側のナビゲーションで、**請求転送**を選択します。

1. **インバウンド請求**タブで、更新する転送を選択します。

1. Actions ****ドロップダウンメニューを選択し、**Edit name** を選択します。

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)

------