

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

# 転送の表示
<a name="orgs_transfer_billing-view-transfer"></a>

組織の管理アカウントにサインインすると、転送を表示できます。

## ステータス
<a name="orgs_transfer_billing-view-transfer-status"></a>

転送のステータスは次のとおりです。
+ **Transfer accepted** (`ACCEPTED`): 招待が受信者によって承諾されました。転送は開始日に開始されます。
+ **転送が取り消**されました (`WITHDRAWN`): 転送が取り消されました。転送は終了日に終了します。

![\[alt text not found\]](http://docs.aws.amazon.com/ja_jp/awsaccountbilling/latest/aboutv2/images/transfer-billing-relationship-statuses.png)


*図 1: AWS Billing and Cost Management コンソールに表示される転送ステータス。*

## 転送を表示する
<a name="orgs_transfer_billing-view-transfers-steps"></a>

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

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

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

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

**転送を表示するには**

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

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

1. 

**インバウンド請求の場合:**

   1. **請求転送**ページで、**インバウンド請求**タブを選択します。

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

   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)、および [describe-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
     ```

     **アウトバウンド請求の場合:**

     次のコマンドを実行して、アウトバウンド請求の請求転送 ID を検索します。

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

  1. レスポンスから、詳細を表示する転送の請求転送 ID を書き留めます。

  1. 次のコマンドを実行して、転送の詳細を表示します。

     ```
     $ C:\> aws organizations describe-responsibility-transfer \
         --id exampleid
     ```
+ 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)、および [describe-responsibility-transfer](https://docs.aws.amazon.com/organizations/latest/APIReference/API_DescribeResponsibilityTransfer.html)

------