@fjall/components-infrastructure 0.80.4 → 0.81.2

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.
Files changed (40) hide show
  1. package/dist/lib/__tests__/setup.js +1 -78
  2. package/dist/lib/resources/aws/compute/ecsFreeTier.d.ts +2 -1
  3. package/dist/lib/resources/aws/compute/ecsFreeTier.js +1 -352
  4. package/dist/lib/resources/aws/compute/ecsSpot.d.ts +2 -1
  5. package/dist/lib/resources/aws/compute/ecsSpot.js +1 -332
  6. package/dist/lib/resources/aws/compute/utilities/capacityProviderDrainWaiter.js +1 -180
  7. package/dist/lib/resources/aws/utilities/cfnOutput.js +1 -13
  8. package/package.json +3 -3
  9. package/dist/lib/patterns/aws/cdn.d.ts +0 -133
  10. package/dist/lib/patterns/aws/cdn.js +0 -216
  11. package/dist/lib/patterns/aws/dynamodb.d.ts +0 -66
  12. package/dist/lib/patterns/aws/dynamodb.js +0 -106
  13. package/dist/lib/patterns/aws/loadBalancer.d.ts +0 -163
  14. package/dist/lib/patterns/aws/loadBalancer.js +0 -278
  15. package/dist/lib/patterns/aws/queue.d.ts +0 -61
  16. package/dist/lib/patterns/aws/queue.js +0 -103
  17. package/dist/lib/resources/aws/cdn/cloudFront.d.ts +0 -65
  18. package/dist/lib/resources/aws/cdn/cloudFront.js +0 -135
  19. package/dist/lib/resources/aws/cdn/index.d.ts +0 -1
  20. package/dist/lib/resources/aws/cdn/index.js +0 -18
  21. package/dist/lib/resources/aws/compute/capacityProviderDrainWaiter.d.ts +0 -20
  22. package/dist/lib/resources/aws/compute/capacityProviderDrainWaiter.js +0 -180
  23. package/dist/lib/resources/aws/database/dynamodb.d.ts +0 -70
  24. package/dist/lib/resources/aws/database/dynamodb.js +0 -170
  25. package/dist/lib/resources/aws/database/rdsDeletionWaiter.d.ts +0 -33
  26. package/dist/lib/resources/aws/database/rdsDeletionWaiter.js +0 -74
  27. package/dist/lib/resources/aws/messaging/index.d.ts +0 -1
  28. package/dist/lib/resources/aws/messaging/index.js +0 -18
  29. package/dist/lib/resources/aws/messaging/sqs.d.ts +0 -65
  30. package/dist/lib/resources/aws/messaging/sqs.js +0 -195
  31. package/dist/lib/resources/aws/networking/vpcEndpoint.d.ts +0 -20
  32. package/dist/lib/resources/aws/networking/vpcEndpoint.js +0 -59
  33. package/dist/lib/resources/aws/networking/vpcEndpoints.d.ts +0 -71
  34. package/dist/lib/resources/aws/networking/vpcEndpoints.js +0 -125
  35. package/dist/lib/resources/aws/utilities/cfnOutput.test.d.ts +0 -1
  36. package/dist/lib/resources/aws/utilities/cfnOutput.test.js +0 -102
  37. package/dist/lib/utils/sanitizeCfnKey.d.ts +0 -5
  38. package/dist/lib/utils/sanitizeCfnKey.js +0 -11
  39. package/dist/lib/utils/tagResource.d.ts +0 -24
  40. package/dist/lib/utils/tagResource.js +0 -30
@@ -3,7 +3,7 @@ import { Connections, type IConnectable, type IVpc } from "aws-cdk-lib/aws-ec2";
3
3
  import { Construct } from "constructs";
4
4
  import { type StackBuilder } from "../base/awsStack";
5
5
  import { type SecretValue } from "aws-cdk-lib";
6
- import { type IManagedPolicy, PolicyDocument } from "aws-cdk-lib/aws-iam";
6
+ import { type IManagedPolicy, PolicyDocument, Role } from "aws-cdk-lib/aws-iam";
7
7
  import { Repository } from "aws-cdk-lib/aws-ecr";
8
8
  import { type KeyValue } from "../../../types";
9
9
  export declare enum ScalingType {
@@ -69,6 +69,7 @@ export default class Ec2Cluster extends Construct implements IConnectable {
69
69
  addHostedZone(props: Ec2ClusterProps): void;
70
70
  registerLoadBalancerTargets(props: Ec2ClusterProps): void;
71
71
  getImage(props: Ec2ClusterProps): ContainerImage;
72
+ getTaskRole(): Role | undefined;
72
73
  static build(id: string, props: Ec2ClusterProps): (sb: StackBuilder) => Construct;
73
74
  }
74
75
  export {};