LambdaでCloudWatchLogsを見られない時の対策

Lambdaに付けているIAMロールに以下のカスタムIAMポリシーを追加してください。そして少し待ちましょう。

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "logs:*"
            ],
            "Resource": "arn:aws:logs:*:*:*"
        },
        {
            "Effect": "Allow",
            "Action": [
                "s3:GetObject",
                "s3:PutObject"
            ],
            "Resource": "arn:aws:s3:::*"
        }
    ]
}

その他、リージョンを確認する。LambdaとCloudWatchで同じかどうか?