I hereby claim:
- I am yamatatsu on github.
- I am yamatatsu (https://keybase.io/yamatatsu) on keybase.
- I have a public key ASDDiPVd3NZqaoG2LtJ0O8Ze0U0-T0i4NgferG3X-JFSqwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
https://docs.aws.amazon.com/ja_jp/cdk/latest/guide/core_concepts.html
ここではAWS CDKのコンセプト(whiy と how)について説明します。AWS Construct Library についても議論します。
AWS CDK Apps は Constructs と呼ばれる building block によって構成されており、 Constructs に構成されて stacks と apps を形成します。
basic building blocks compose single or multiple AWS resources
| // ~/.mongorc.js | |
| if (db == "test") db = db.getSiblingDB("your-default-db-name"); | |
| prompt = () => db + "$ "; | |
| const oid = ObjectId; | |
| const sc = () => db.getCollectionNames(); | |
| const sd = () => db.adminCommand( { listDatabases: 1 } ).databases.map(d => d.name); |