@maestro-js/aws-cdk-recipes 1.0.0-alpha.17 → 1.0.0-alpha.18
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 +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -917,6 +917,7 @@ declare namespace ReactRouterSsrSiteLambda {
|
|
|
917
917
|
}
|
|
918
918
|
}
|
|
919
919
|
|
|
920
|
+
type EcsLogRetention = LogRetention;
|
|
920
921
|
/**
|
|
921
922
|
* A Fargate service with task definition, containers, optional ALB, auto-scaling, Spot capacity,
|
|
922
923
|
* and IAM permissions. Supports multi-container sidecars and conditional ALB routing rules.
|
|
@@ -960,7 +961,7 @@ declare class EcsFargateService extends Construct {
|
|
|
960
961
|
* ```
|
|
961
962
|
*/
|
|
962
963
|
declare namespace EcsFargateService {
|
|
963
|
-
type LogRetention =
|
|
964
|
+
type LogRetention = EcsLogRetention;
|
|
964
965
|
interface ImageBuildProps {
|
|
965
966
|
/**
|
|
966
967
|
* The path to the Docker build context directory.
|