You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# プロジェクトディレクトリの作成
mkdir aws-cdk-sample
cd aws-cdk-sample
# CDKプロジェクトの初期化 (Go言語を指定)
cdk init app --language go
# Go依存関係の初期化
go mod init aws-cdk-sample
go mod tidy
必要な AWS CDK Go モジュールのインストール
# 基本的なAWS CDKモジュール
go get github.com/aws/aws-cdk-go/awscdk/v2
go get github.com/aws/constructs-go/constructs/v10
go get github.com/aws/jsii-runtime-go