

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 새 조직 계정을 Detective 멤버 계정으로 활성화
<a name="accounts-orgs-members-autoenable"></a>

Detective 관리자 계정은 조직 동작 그래프에서 새 조직 계정을 멤버 계정으로 자동 활성화화도록 Detective를 구성할 수 있습니다.

조직에 새 계정을 추가하면 해당 계정이 **계정 관리** 페이지의 목록에 추가됩니다. 조직 계정의 경우, **유형**은 **조직별**입니다.

기본적으로 새 조직 계정은 멤버 계정으로 활성화되지 않습니다. 해당 멤버의 상태는 **멤버가 아님**입니다.

조직 계정을 자동으로 활성화하도록 선택하면 Detective는 새 계정이 조직에 추가될 때 새 계정을 멤버 계정으로 활성화하기 시작합니다. Detective는 아직 활성화되지 않은 기존 조직 계정을 활성화하지 않습니다.

Detective는 동작 그래프의 최대 멤버 계정 수가 1,200인 경우에만 조직 계정을 멤버 계정으로 활성화할 수 있습니다. 동작 그래프에 이미 1,200개의 멤버 계정이 있는 경우 새 계정을 활성화할 수 없습니다.

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

**계정 관리** 페이지의 **새 조직 계정 자동 활성화** 설정은 조직에 계정을 추가할 때 계정을 자동으로 활성화할지 여부를 결정합니다.

**새 조직 계정을 멤버 계정으로 자동 활성화**

1. [https://console.aws.amazon.com/detective/](https://console.aws.amazon.com/detective/)에서 Amazon Detective 콘솔을 엽니다.

1. Detective 탐색 창에서 **계정 관리**를 선택합니다.

1. **새 조직 계정 자동 활성화** 상태로 전환합니다.

------
#### [ DetectiveAPI/AWS CLI ]

새 조직 계정을 Detective 멤버 계정으로 자동으로 활성화할지 여부를 결정하기 위해 관리자 계정은 Detective API 또는를 사용할 수 있습니다 AWS Command Line Interface.

구성을 보고 관리하려면 동작 그래프 ARN을 제공해야 합니다. ARN을 가져오려면 [https://docs.aws.amazon.com/detective/latest/APIReference/API_ListGraphs.html](https://docs.aws.amazon.com/detective/latest/APIReference/API_ListGraphs.html) 작업을 사용합니다.

**조직 계정 자동 활성화를 위한 현재 구성 보기**
+ **Detective API:** [https://docs.aws.amazon.com/detective/latest/APIReference/API_DescribeOrganizationConfiguration.html](https://docs.aws.amazon.com/detective/latest/APIReference/API_DescribeOrganizationConfiguration.html) 작업을 사용합니다.

  응답에서 새 조직 계정이 자동 활성화되면 `AutoEnable`은 `true`입니다.
+ **AWS CLI:** 명령줄에서 [https://docs.aws.amazon.com/cli/latest/reference/detective/describe-organization-configuration.html](https://docs.aws.amazon.com/cli/latest/reference/detective/describe-organization-configuration.html) 명령을 실행합니다.

  ```
  aws detective describe-organization-configuration --graph-arn <behavior graph ARN>
  ```

  **예제**

  ```
  aws detective describe-organization-configuration --graph-arn arn:aws:detective:us-east-1:111122223333:graph:123412341234
  ```

**새 조직 계정 자동 활성화**
+ **Detective API:** [https://docs.aws.amazon.com/detective/latest/APIReference/API_UpdateOrganizationConfiguration.html](https://docs.aws.amazon.com/detective/latest/APIReference/API_UpdateOrganizationConfiguration.html) 작업을 사용합니다. 새 조직 계정을 자동 활성화하려면 `AutoEnable`을 `true`로 설정합니다.
+ **AWS CLI:** 명령줄에서 [https://docs.aws.amazon.com/cli/latest/reference/detective/update-organization-configuration.html](https://docs.aws.amazon.com/cli/latest/reference/detective/update-organization-configuration.html) 명령을 실행합니다.

  ```
  aws detective update-organization-configuration --graph-arn <behavior graph ARN> --auto-enable | --no-auto-enable
  ```

  예제

  ```
  aws detective update-organization-configuration --graph-arn arn:aws:detective:us-east-1:111122223333:graph:123412341234 --auto-enable
  ```

------