연결 세부 정보 보기 - 개발자 도구 콘솔

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

연결 세부 정보 보기

개발자 도구 콘솔 또는 AWS Command Line Interface (AWS CLI)의 get-connection 명령을 사용하여 연결에 대한 세부 정보를 볼 수 있습니다. 를 AWS CLI사용하려면 최신 버전을 이미 AWS CLI 설치했거나 현재 버전으로 업데이트해야 합니다. 자세한 내용을 알아보려면 AWS Command Line Interface 사용자 가이드에서 AWS CLI설치를 참조하세요.

연결을 보려면(콘솔)
  1. https://console.aws.amazon.com/codesuite/settings/connections에서 개발자 도구 콘솔을 엽니다.

  2. [설정(Settings)] > [연결(Connections)]을 선택합니다.

  3. 보려는 연결 옆에 있는 버튼을 선택한 다음 [세부 정보 보기(View details)]를 선택합니다.

  4. 연결에 대해 다음과 같은 정보가 나타납니다.

    • 연결 이름

    • 연결의 공급자 유형

    • 연결 상태

    • 연결ARN.

    • GitHubEnterprise Server와 같은 설치된 공급자에 대해 연결을 생성한 경우 연결과 관련된 호스트 정보.

    • GitHubEnterprise Server와 같은 설치된 공급자에 대해 연결을 생성한 경우 연결을 위해 호스트와 연결된 엔드포인트 정보

  5. 연결이 [보류 중(Pending)] 상태인 경우 연결을 완료하려면 [보류 중인 연결 업데이트(Update pending connection)]를 선택합니다. 자세한 내용은 보류 중인 연결 업데이트를 참조하세요.

연결을 보려면 (CLI)
  • 터미널 또는 명령줄에서 get-connection 명령을 실행합니다. 예를 들어, 다음 명령을 사용하여 arn:aws:codestar-connections:us-west-2:account_id:connection/aEXAMPLE-8aad-4d5d-8878-dfcab0bc441f ARN 값과의 연결 세부 정보를 볼 수 있습니다.

    aws codeconnections get-connection --connection-arn arn:aws:codeconnections:us-west-2:account_id:connection/aEXAMPLE-8aad-4d5d-8878-dfcab0bc441f

    명령이 성공할 경우 연결 세부 정보가 반환됩니다.

    Bitbucket 연결의 출력 예:

    { "Connection": { "ConnectionName": "MyConnection", "ConnectionArn": "arn:aws:codeconnections:us-west-2:account_id:connection/cdacd948-EXAMPLE", "ProviderType": "Bitbucket", "OwnerAccountId": "account_id", "ConnectionStatus": "AVAILABLE" } }

    GitHub 연결에 대한 예제 출력:

    { "Connection": { "ConnectionName": "MyGitHubConnection", "ConnectionArn": "arn:aws:codeconnections:us-west-2:account_id:connection/ebcd4a13-EXAMPLE", "ProviderType": "GitHub", "OwnerAccountId": "account_id", "ConnectionStatus": "AVAILABLE" } }

    GitHub 엔터프라이즈 서버 연결의 출력 예:

    { "Connection": { "ConnectionName": "MyConnection", "ConnectionArn": "arn:aws:codeconnections:us-west-2:account_id:connection/2d178fb9-EXAMPLE", "ProviderType": "GitHubEnterpriseServer", "OwnerAccountId": "account_id", "ConnectionStatus": "PENDING", "HostArn": "arn:aws:ccodeconnections:us-west-2:account_id:host/sdfsdf-EXAMPLE" } }