@jjrawlins/cdk-iam-policy-builder-helper 0.0.45 → 0.0.46
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.
- package/.jsii +2 -2
- package/cdk-iam-policy-builder-helper/jsii/jsii.go +2 -2
- package/cdk-iam-policy-builder-helper/version +1 -1
- package/lib/bin/create-actions-json.js +6 -1
- package/lib/bin/download-actions-json.js +9 -7
- package/lib/bin/download-managed-policies-json.js +6 -2
- package/lib/constructs/Actions.d.ts +35 -28
- package/lib/constructs/Actions.js +36 -29
- package/lib/constructs/ManagedPolicies.d.ts +12 -0
- package/lib/constructs/ManagedPolicies.js +13 -1
- package/package.json +1 -1
|
@@ -5555,4 +5555,16 @@ export declare const ManagedPolicies: {
|
|
|
5555
5555
|
PolicyName: string;
|
|
5556
5556
|
Arn: string;
|
|
5557
5557
|
};
|
|
5558
|
+
AmazonECSInfrastructureRolePolicyForManagedInstances: {
|
|
5559
|
+
PolicyName: string;
|
|
5560
|
+
Arn: string;
|
|
5561
|
+
};
|
|
5562
|
+
AmazonECSInstanceRolePolicyForManagedInstances: {
|
|
5563
|
+
PolicyName: string;
|
|
5564
|
+
Arn: string;
|
|
5565
|
+
};
|
|
5566
|
+
AWSTransformApplicationECSDeploymentPolicy: {
|
|
5567
|
+
PolicyName: string;
|
|
5568
|
+
Arn: string;
|
|
5569
|
+
};
|
|
5558
5570
|
};
|