AWS CLI 가이드

33의 명령어를 찾았습니다

aws configure
config
AWS CLI 자격 증명 및 기본 설정

예제:

$ aws configure aws configure set aws_access_key_id YOUR_ACCESS_KEY aws configure set aws_secret_access_key YOUR_SECRET_KEY aws configure set region YOUR_REGION
config
credentials
setup
aws s3
storage
Amazon S3 버킷 및 객체 관리

예제:

$ aws s3 ls aws s3 cp local-file s3://bucket-name/ aws s3 sync local-dir s3://bucket-name/
s3
storage
bucket
aws ec2
compute
Amazon EC2 인스턴스 관리

예제:

$ aws ec2 describe-instances aws ec2 start-instances --instance-ids i-1234567890abcdef0 aws ec2 stop-instances --instance-ids i-1234567890abcdef0
ec2
instance
vm
aws lambda
serverless
AWS Lambda 함수 관리

예제:

$ aws lambda list-functions aws lambda create-function --function-name my-function --runtime nodejs14.x --handler index.handler --zip-file fileb://function.zip
lambda
function
serverless
aws iam
security
IAM 사용자 및 권한 관리

예제:

$ aws iam list-users aws iam create-user --user-name MyUser aws iam attach-user-policy --user-name MyUser --policy-arn arn:aws:iam::aws:policy/AdministratorAccess
iam
security
user
aws cloudformation
infrastructure
AWS CloudFormation 스택 관리

예제:

$ aws cloudformation create-stack --stack-name my-stack --template-body file://template.yaml aws cloudformation describe-stacks --stack-name my-stack
cloudformation
stack
template
aws rds
database
Amazon RDS 데이터베이스 관리

예제:

$ aws rds describe-db-instances aws rds create-db-instance --db-instance-identifier mydb --db-instance-class db.t3.micro --engine mysql
rds
database
mysql
aws route53
network
Amazon Route 53 DNS 관리

예제:

$ aws route53 list-hosted-zones aws route53 create-hosted-zone --name example.com --caller-reference 2014-04-01-18:47 aws route53 change-resource-record-sets --hosted-zone-id Z1PA6795UKMFR9 --change-batch file://change-batch.json
route53
dns
domain
aws cloudwatch
monitoring
Amazon CloudWatch 모니터링

예제:

$ aws cloudwatch list-metrics aws cloudwatch get-metric-statistics --namespace AWS/EC2 --metric-name CPUUtilization --dimensions Name=InstanceId,Value=i-1234567890abcdef0 --start-time 2023-01-01T00:00:00Z --end-time 2023-01-02T00:00:00Z --period 3600 --statistics Average
cloudwatch
monitoring
metrics
aws ssm
management
AWS Systems Manager 관리

예제:

$ aws ssm describe-instance-information aws ssm send-command --instance-ids i-1234567890abcdef0 --document-name AWS-RunShellScript --parameters commands=["ls -la"]
ssm
systems
manager
aws ecr
container
Amazon ECR 리포지토리 관리

예제:

$ aws ecr create-repository --repository-name my-repo aws ecr push-image aws ecr list-images
ecr
container
docker
aws eks
kubernetes
Amazon EKS 클러스터 관리

예제:

$ aws eks create-cluster --name my-cluster aws eks list-clusters aws eks update-kubeconfig
eks
kubernetes
container
aws elb
network
Elastic Load Balancing 관리

예제:

$ aws elb create-load-balancer aws elb describe-load-balancers aws elb register-instances-with-load-balancer
elb
load-balancer
network
aws elbv2
network
Application Load Balancer 관리

예제:

$ aws elbv2 create-load-balancer aws elbv2 create-target-group aws elbv2 register-targets
alb
load-balancer
network
aws emr
compute
Amazon EMR 클러스터 관리

예제:

$ aws emr create-cluster aws emr list-clusters aws emr add-steps
emr
hadoop
big-data
aws es
database
Amazon Elasticsearch Service 관리

예제:

$ aws es create-elasticsearch-domain aws es list-domain-names aws es describe-elasticsearch-domain
elasticsearch
search
database
aws events
serverless
Amazon EventBridge 규칙 관리

예제:

$ aws events put-rule aws events put-targets aws events list-rules
eventbridge
events
serverless
aws firehose
analytics
Amazon Kinesis Firehose 관리

예제:

$ aws firehose create-delivery-stream aws firehose list-delivery-streams aws firehose put-record
firehose
streaming
data
aws glacier
storage
Amazon Glacier 볼트 관리

예제:

$ aws glacier create-vault aws glacier upload-archive aws glacier initiate-job
glacier
backup
storage
aws glue
analytics
AWS Glue 데이터 카탈로그 관리

예제:

$ aws glue create-database aws glue create-table aws glue start-job-run
glue
etl
data-catalog
aws kinesis
analytics
Amazon Kinesis 스트림 관리

예제:

$ aws kinesis create-stream aws kinesis put-record aws kinesis get-records
kinesis
streaming
data
aws kms
security
AWS KMS 키 관리

예제:

$ aws kms create-key aws kms encrypt aws kms decrypt
kms
encryption
security
aws logs
monitoring
CloudWatch Logs 관리

예제:

$ aws logs create-log-group aws logs put-log-events aws logs describe-log-streams
logs
monitoring
cloudwatch
aws neptune
database
Amazon Neptune 데이터베이스 관리

예제:

$ aws neptune create-db-cluster aws neptune describe-db-clusters aws neptune create-db-instance
neptune
graph
database
aws redshift
database
Amazon Redshift 클러스터 관리

예제:

$ aws redshift create-cluster aws redshift describe-clusters aws redshift create-cluster-snapshot
redshift
data-warehouse
database
aws sagemaker
ai
Amazon SageMaker 관리

예제:

$ aws sagemaker create-training-job aws sagemaker create-model aws sagemaker create-endpoint
sagemaker
ml
ai
aws secretsmanager
security
AWS Secrets Manager 비밀 관리

예제:

$ aws secretsmanager create-secret aws secretsmanager get-secret-value aws secretsmanager list-secrets
secrets
security
credentials
aws ses
communication
Amazon SES 이메일 서비스 관리

예제:

$ aws ses send-email aws ses verify-email-identity aws ses list-identities
ses
email
communication
aws sns
messaging
Amazon SNS 토픽 관리

예제:

$ aws sns create-topic aws sns publish aws sns subscribe
sns
notification
messaging
aws sqs
messaging
Amazon SQS 큐 관리

예제:

$ aws sqs create-queue aws sqs send-message aws sqs receive-message
sqs
queue
messaging
aws stepfunctions
serverless
AWS Step Functions 워크플로우 관리

예제:

$ aws stepfunctions create-state-machine aws stepfunctions start-execution aws stepfunctions list-state-machines
step-functions
workflow
serverless
aws waf
security
AWS WAF 웹 ACL 관리

예제:

$ aws waf create-web-acl aws waf create-rule aws waf update-web-acl
waf
security
web-acl
aws xray
monitoring
AWS X-Ray 추적 관리

예제:

$ aws xray create-group aws xray put-trace-segments aws xray get-trace-summaries
xray
tracing
monitoring