0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

AWS CLIのShorthand SyntaxでFirehoseを作成するコマンドのメモ

Posted at

シンプルなメモ。
(Firehoseに限らず)AWS CLIでShorthand Syntaxを使いたい時に細かい書き方でエラーが出ることがよくあり、結構いつも億劫になるので。

aws firehose create-delivery-stream --delivery-stream-name cli-generated-stream \
--delivery-stream-type DirectPut \
--http-endpoint-destination-configuration 'EndpointConfiguration={Url=https://....},S3Configuration={BucketARN=arn:aws:s3:::<Bucket Name>,RoleARN=<Role ARN>}'

注意点

  • シングルクォートがないとUnknown optionsのエラー
  • {}の中はJSONではなく、Url=...のようにイコールで結ぶ

環境
MacOS バージョン 10.15.7
AWS CLI バージョン 2.0.38

0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?