2017-04-12 2 views

답변

1

describe-organization 명령이 정보 :

aws organizations describe-organization 

출력 : AWS 조직

{ 
    "Organization": { 
    "MasterAccountArn": "arn:aws:organizations::111111111111:account/o-exampleorgid/111111111111", 
    "MasterAccountEmail": "[email protected]", 
    "MasterAccountId": "111111111111", 
    "Id": "o-exampleorgid", 
    "FeatureSet": "ALL", 
    "Arn": "arn:aws:organizations::111111111111:organization/o-exampleorgid", 
    "AvailablePolicyTypes": [ 
     { 
     "Status": "ENABLED", 
     "Type": "SERVICE_CONTROL_POLICY" 
    ] 
    } 
} 

계층 구조에서 여러 AWS 계정을 관리하는 수단으로 introduced in early 2017했다.

참조 : AWS Organizations Documentation

관련 문제