diff --git a/pages.ko/common/aws-cloudformation.md b/pages.ko/common/aws-cloudformation.md new file mode 100644 index 000000000..4f9850d32 --- /dev/null +++ b/pages.ko/common/aws-cloudformation.md @@ -0,0 +1,32 @@ +# aws cloudformation + +> 인프라를 코드로 처리하여 AWS 및 타사 리소스를 모델링, 프로비저닝 및 관리. +> 더 많은 정보: . + +- 템플릿 파일에서 스택 생성: + +`aws cloudformation create-stack --stack-name {{스택-이름}} --region {{지역}} --template-body {{file://경로/대상/파일.yml}} --profile {{프로파일}}` + +- 스택 삭제: + +`aws cloudformation delete-stack --stack-name {{스택-이름}} --profile {{프로파일}}` + +- 모든 스택 나열: + +`aws cloudformation list-stacks --profile {{프로파일}}` + +- 실행 중인 모든 스택 나열: + +`aws cloudformation list-stacks --stack-status-filter CREATE_COMPLETE --profile {{프로파일}}` + +- 스택 상태 확인: + +`aws cloudformation describe-stacks --stack-name {{스택-아이디}} --profile {{프로파일}}` + +- 스택에 대한 드리프트 감지 시작: + +`aws cloudformation detect-stack-drift --stack-name {{스택-아이디}} --profile {{프로파일}}` + +- 이전 명령어 호출 결과의 'StackDriftDetectionId'를 사용하여 스택의 드리프트 상태 출력을 확인: + +`aws cloudformation describe-stack-resource-drifts --stack-name {{스택-드리프트-탐지-아이디}} --profile {{프로파일}}` diff --git a/pages.ko/common/aws-codeartifact.md b/pages.ko/common/aws-codeartifact.md new file mode 100644 index 000000000..64375a9d8 --- /dev/null +++ b/pages.ko/common/aws-codeartifact.md @@ -0,0 +1,25 @@ +# aws codeartifact + +> CodeArtifact 리포지토리, 도메인, 패키지, 패키지 버전 및 자산을 관리. +> CodeArtifact는 인기 있는 패키지 관리자 및 Maven, Gradle, npm, Yarn, Twine, pip, NuGet 및 SwiftPM과 같은 빌드 도구와 호환되는 아티팩트 리포지토리. +> 더 많은 정보: . + +- AWS 계정에 사용 가능한 도메인 나열: + +`aws codeartifact list-domains` + +- 특정 패키지 관리자에 대한 자격 증명 생성: + +`aws codeartifact login --tool {{npm|pip|twine}} --domain {{_도메인}} --repository {{레포지토리_이름}}` + +- CodeArtifact 레포지토리의 엔드포인트 URL 가져오기: + +`aws codeartifact get-repository-endpoint --domain {{your_domain}} --repository {{레포지토리_이름}} --format {{npm|pypi|maven|nuget|generic}}` + +- 도움말 표시: + +`aws codeartifact help` + +- 특정 하위 명령어에 대한 도움말 표시: + +`aws codeartifact {{subcommand}} help` diff --git a/pages.ko/common/aws-codecommit.md b/pages.ko/common/aws-codecommit.md new file mode 100644 index 000000000..6d2267d53 --- /dev/null +++ b/pages.ko/common/aws-codecommit.md @@ -0,0 +1,12 @@ +# aws codecommit + +> 개인 Git 저장소를 호스팅하는 관리형 소스 제어 서비스. +> 더 많은 정보: . + +- 도움말 표시: + +`aws codecommit help` + +- 특정 명령어에 대한 도움말 표시: + +`aws codecommit {{명령어}} help` diff --git a/pages.ko/common/aws-cognito-idp.md b/pages.ko/common/aws-cognito-idp.md new file mode 100644 index 000000000..0bed3a82d --- /dev/null +++ b/pages.ko/common/aws-cognito-idp.md @@ -0,0 +1,28 @@ +# aws cognito-idp + +> Configure an Amazon Cognito user pool and its users and groups and authenticate them. +> 더 많은 정보: . + +- 새로운 Cognito 사용자 풀 생성: + +`aws cognito-idp create-user-pool --pool-name {{이름}}` + +- 모든 사용자 풀 나열 : + +`aws cognito-idp list-user-pools --max-results {{10}}` + +- 특정 사용자 풀 삭제: + +`aws cognito-idp delete-user-pool --user-pool-id {{사용자_풀_아이디}}` + +- 특정 풀에 사용자 생성: + +`aws cognito-idp admin-create-user --username {{사용자명}} --user-pool-id {{사용자_풀_아이디}}` + +- 특정 풀의 사용자 나열: + +`aws cognito-idp list-users --user-pool-id {{사용자_풀_아이디}}` + +- 특정 풀에서 사용자 삭제: + +`aws cognito-idp admin-delete-user --username {{사용자명}} --user-pool-id {{사용자_풀_아이디}}`