Note: for support questions, please first reference our documentation, then use Stackoverflow. This repository's issues are intended for feature requests and bug reports.
I'm submitting a ...
What is the current behavior?
If the current behavior is a :beetle:bug:beetle:: Please provide the steps to reproduce
CfnIdentityPool
in aws-cognito
has no identityPoolId
any more. This id is required for CfnIdentityPoolRoleAttachment
(CfnIdentityPoolRoleAttachmentProps
)
This attribute existed in 0.31.0 at least
What is the motivation / use case for changing the behavior or adding this feature?
Please tell us about your environment:
Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. associated pull-request, stackoverflow, gitter, etc)
As of v1.0.0 you need to use ref
.
const pool = new CfnIdentifyPool(this, 'Pool', ...);
const id = pool.ref;
Thanks
had same issue, perhaps the docs on ref
property could be improved a bit to make it obvious that this resolves in the identityPoolId format?
Best regards,
Most helpful comment
As of v1.0.0 you need to use
ref
.