LoginSignup
1
0

More than 5 years have passed since last update.

CloudFormationでよくお世話になるFn::XXX
これをAWS CDKで使う場合、以下のように書きます。

import * as cdk from '@aws-cdk/cdk';

cdk.Fn.conditionIf('IsProduction', 'Linear10PercentEvery1Minute', 'AllAtOnce').toString()

@aws-cdk/cdkのプロパティにFnがあり、その中にメソッドとして実装されています。
具体的に渡すべき値やその後の処理などについては型定義ファイルを見ると良いでしょう。

ENV

$ cdk --version
0.28.0 (build 3ba2622)
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0