@maestro-js/aws-cdk-recipes 1.0.0-alpha.19 → 1.0.0-alpha.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.
package/dist/index.d.ts CHANGED
@@ -917,7 +917,6 @@ declare namespace ReactRouterSsrSiteLambda {
917
917
  }
918
918
  }
919
919
 
920
- type EcsLogRetention = LogRetention;
921
920
  /**
922
921
  * A Fargate service with task definition, containers, optional ALB, auto-scaling, Spot capacity,
923
922
  * and IAM permissions. Supports multi-container sidecars and conditional ALB routing rules.
@@ -961,7 +960,7 @@ declare class EcsFargateService extends Construct {
961
960
  * ```
962
961
  */
963
962
  declare namespace EcsFargateService {
964
- type LogRetention = EcsLogRetention;
963
+ type LogRetention = LogRetention;
965
964
  interface ImageBuildProps {
966
965
  /**
967
966
  * The path to the Docker build context directory.
@@ -2009,7 +2008,6 @@ declare namespace Redis {
2009
2008
  * ```ts
2010
2009
  * const email = new Email(this, 'Transactional', {
2011
2010
  * sender: 'notifications.example.com',
2012
- * configurationSetName: 'transactional',
2013
2011
  * hostedZone: zone,
2014
2012
  * events: [{ types: ['bounce', 'complaint'], snsTopic: alertsTopic }]
2015
2013
  * })
@@ -2031,7 +2029,6 @@ declare class Email extends Construct {
2031
2029
  * ```ts
2032
2030
  * const props: Email.Props = {
2033
2031
  * sender: 'notifications.example.com',
2034
- * configurationSetName: 'transactional',
2035
2032
  * hostedZone: zone,
2036
2033
  * dmarc: 'v=DMARC1; p=quarantine; rua=mailto:dmarc@example.com;'
2037
2034
  * }
@@ -2073,13 +2070,6 @@ declare namespace Email {
2073
2070
  * or an email address (e.g. `'hello@example.com'`) to verify a single address.
2074
2071
  */
2075
2072
  sender: string;
2076
- /**
2077
- * The name of the SES configuration set.
2078
- *
2079
- * This is required so that the name is predictable and can be passed to the
2080
- * `@maestro-js/mail` SES driver at runtime.
2081
- */
2082
- configurationSetName: string;
2083
2073
  /**
2084
2074
  * A Route 53 hosted zone for automatic DNS verification and DMARC record creation.
2085
2075
  *
package/dist/index.js CHANGED
@@ -2029,7 +2029,6 @@ var Email = class extends Construct17 {
2029
2029
  throw new Error("DMARC records can only be configured for domain senders, not email addresses");
2030
2030
  }
2031
2031
  let configurationSetProps = {
2032
- configurationSetName: props.configurationSetName,
2033
2032
  reputationMetrics: true
2034
2033
  };
2035
2034
  if (props.transform?.configurationSet) {
package/package.json CHANGED
@@ -12,15 +12,13 @@
12
12
  "constructs": "^10.4.2"
13
13
  },
14
14
  "peerDependencies": {
15
- "aws-cdk-lib": "^2.178.0",
16
- "esbuild": "^0.25.0"
15
+ "aws-cdk-lib": "^2.178.0"
17
16
  },
18
17
  "devDependencies": {
19
18
  "@types/node": "^22.0.0",
20
- "aws-cdk-lib": "^2.178.0",
21
- "esbuild": "^0.25.0"
19
+ "aws-cdk-lib": "^2.178.0"
22
20
  },
23
- "version": "1.0.0-alpha.19",
21
+ "version": "1.0.0-alpha.2",
24
22
  "publishConfig": {
25
23
  "access": "restricted"
26
24
  },