Daniel Schroeder
Daniel Schroeder
Hi Sourabh, thanks for the detailed report. I think you just forgot to add parentheses behind the S3 class. Try ```py statement.S3().on_bucket(bucket_name='some_bucket') ``` instead of ```py statement.S3.on_bucket(bucket_name='some_bucket') ``` I'm not...
Thanks so much for digging so deep. Yes, now I remember the _this_ issue. I think I will have to look into other ways to generate the code. jsii is...
Hi @akefirad, the method `addServicePrincipal` is actually not part of the Floyd package. All the IAM statement classes in the Floyd package extend [iam.PolicyStatement](https://docs.aws.amazon.com/cdk/api/latest/docs/@aws-cdk_aws-iam.PolicyStatement.html) from the CDK itself. That's where...
Interesting related links - https://gist.github.com/shortjared/4c1e3fe52bdfa47522cfe5b41e5d6f22 - https://github.com/kevinslin/cdk-constants/blob/master/lib/principals.ts
Interesting idea. But I wonder if it's good to provide the same functionality in multiple ways. Actually, I made the `to` method only public, because not all actions are documented...
Interestingly this compiles with jsii. Not sure it would be usable though. Wouldn't be the first time something passes jsii building and then throws up when imported. But my first...
I prepared a [PR](https://github.com/udondan/iam-floyd/pull/45) just to see how this would look.
It's a nice idea but I don't see a viable solution. How would floyd know if a construct has an ARN and what is the properties name without manually implementing...
Logic has been implemented and a first condition `ec2:SnapshotTime` has been fixed (and tested).
> SES actions don't support ConfigurationSet as resource To me it appears this statement is accurate. When you look in the above linked reference in the actions table, in column...