Upgrade to Pro — share decks privately, control downloads, hide ads and more …

AWS CDKについて / about AWS CDK

cohalz
January 25, 2019

AWS CDKについて / about AWS CDK

YAPC::Tokyo 2019 前夜祭 LTソン

cohalz

January 25, 2019
Tweet

More Decks by cohalz

Other Decks in Programming

Transcript

  1. ࣮ࡍͷίʔυ const vpc = new ec2.VpcNetwork(this, 'MyVpc', { maxAZs: 2

    }); const cluster = new ecs.Cluster(this, 'Cluster', { vpc }); const fargateService = new ecs.LoadBalancedFargateService(this, "FargateService", { cluster, image: ecs.ContainerImage.fromDockerHub("amazon/amazon-ecs-sample"), });