@lambda-kata/cdk 0.1.3-rc.75 → 0.1.3-rc.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -97,12 +97,11 @@ export declare class SnapStartActivator extends Construct {
|
|
|
97
97
|
constructor(scope: Construct, id: string, props: SnapStartActivatorProps);
|
|
98
98
|
/**
|
|
99
99
|
* Creates the Lambda function that handles Custom Resource events.
|
|
100
|
+
* Permissions are passed via initialPolicy to ensure they are part of the
|
|
101
|
+
* role creation (not a separate AWS::IAM::Policy resource), preventing
|
|
102
|
+
* IAM propagation race conditions.
|
|
100
103
|
*/
|
|
101
104
|
private createProviderFunction;
|
|
102
|
-
/**
|
|
103
|
-
* Grants necessary permissions to the provider function.
|
|
104
|
-
*/
|
|
105
|
-
private grantPermissions;
|
|
106
105
|
/**
|
|
107
106
|
* Generates the inline handler code for the Custom Resource.
|
|
108
107
|
*
|
package/package.json
CHANGED