@aws-cdk/integ-runner 2.186.0 → 2.186.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.
@@ -66,5 +66,7 @@
66
66
  "@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": true,
67
67
  "@aws-cdk/core:enableAdditionalMetadataCollection": true,
68
68
  "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": true,
69
- "@aws-cdk/aws-s3:setUniqueReplicationRoleName": true
69
+ "@aws-cdk/aws-s3:setUniqueReplicationRoleName": true,
70
+ "@aws-cdk/aws-events:requireEventBusPolicySid": true,
71
+ "@aws-cdk/aws-dynamodb:retainTableReplica": true
70
72
  }
@@ -282,4 +282,6 @@ export declare function currentlyRecommendedAwsCdkLibFlags(): {
282
282
  "@aws-cdk/core:enableAdditionalMetadataCollection": boolean;
283
283
  "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": boolean;
284
284
  "@aws-cdk/aws-s3:setUniqueReplicationRoleName": boolean;
285
+ "@aws-cdk/aws-events:requireEventBusPolicySid": boolean;
286
+ "@aws-cdk/aws-dynamodb:retainTableReplica": boolean;
285
287
  };
@@ -1450,7 +1450,7 @@ var require_cxapi = __commonJS({
1450
1450
  "../../../node_modules/@aws-cdk/cx-api/lib/cxapi.js"(exports2) {
1451
1451
  "use strict";
1452
1452
  Object.defineProperty(exports2, "__esModule", { value: true });
1453
- exports2.SSMPARAM_NO_INVALIDATE = exports2.PROVIDER_ERROR_KEY = exports2.CLI_VERSION_ENV = exports2.CLI_ASM_VERSION_ENV = exports2.DEFAULT_REGION_ENV = exports2.DEFAULT_ACCOUNT_ENV = exports2.CONTEXT_OVERFLOW_LOCATION_ENV = exports2.CONTEXT_ENV = exports2.OUTDIR_ENV = void 0;
1453
+ exports2.SSMPARAM_NO_INVALIDATE = exports2.PROVIDER_ERROR_KEY = exports2.TOOLKIT_VERSION_ENV = exports2.CLI_VERSION_ENV = exports2.CLI_ASM_VERSION_ENV = exports2.DEFAULT_REGION_ENV = exports2.DEFAULT_ACCOUNT_ENV = exports2.CONTEXT_OVERFLOW_LOCATION_ENV = exports2.CONTEXT_ENV = exports2.OUTDIR_ENV = void 0;
1454
1454
  exports2.OUTDIR_ENV = "CDK_OUTDIR";
1455
1455
  exports2.CONTEXT_ENV = "CDK_CONTEXT_JSON";
1456
1456
  exports2.CONTEXT_OVERFLOW_LOCATION_ENV = "CONTEXT_OVERFLOW_LOCATION_ENV";
@@ -1458,6 +1458,7 @@ var require_cxapi = __commonJS({
1458
1458
  exports2.DEFAULT_REGION_ENV = "CDK_DEFAULT_REGION";
1459
1459
  exports2.CLI_ASM_VERSION_ENV = "CDK_CLI_ASM_VERSION";
1460
1460
  exports2.CLI_VERSION_ENV = "CDK_CLI_VERSION";
1461
+ exports2.TOOLKIT_VERSION_ENV = "CDK_TOOLKIT_VERSION";
1461
1462
  exports2.PROVIDER_ERROR_KEY = "$providerError";
1462
1463
  exports2.SSMPARAM_NO_INVALIDATE = "[cdk:skip]";
1463
1464
  }
@@ -5054,7 +5055,7 @@ var require_semver2 = __commonJS({
5054
5055
  // ../cloud-assembly-schema/cli-version.json
5055
5056
  var require_cli_version = __commonJS({
5056
5057
  "../cloud-assembly-schema/cli-version.json"(exports2, module2) {
5057
- module2.exports = { version: "2.1006.0" };
5058
+ module2.exports = { version: "3.0.0" };
5058
5059
  }
5059
5060
  });
5060
5061
 
@@ -5423,7 +5424,12 @@ var require_cloud_assembly_schema = __commonJS({
5423
5424
  ]
5424
5425
  },
5425
5426
  displayName: {
5426
- description: "A string that represents this artifact. Should only be used in user interfaces. (Default - no display name)",
5427
+ description: `A string that can be shown to a user to uniquely identify this artifact inside a cloud assembly tree
5428
+
5429
+ Is used by the CLI to present a list of stacks to the user in a way that
5430
+ makes sense to them. Even though the property name "display name" doesn't
5431
+ imply it, this field is used to select stacks as well, so all stacks should
5432
+ have a unique display name. (Default - no display name)`,
5427
5433
  type: "string"
5428
5434
  }
5429
5435
  },
@@ -6364,19 +6370,19 @@ var require_cloud_assembly_schema = __commonJS({
6364
6370
  ]
6365
6371
  },
6366
6372
  CcApiContextQuery: {
6367
- description: "Query input for lookup up Cloudformation resources using CC API",
6373
+ description: "Query input for lookup up CloudFormation resources using CC API",
6368
6374
  type: "object",
6369
6375
  properties: {
6370
6376
  typeName: {
6371
- description: "The Cloudformation resource type.\nSee https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html",
6377
+ description: "The CloudFormation resource type.\nSee https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html",
6372
6378
  type: "string"
6373
6379
  },
6374
6380
  exactIdentifier: {
6375
- description: "Identifier of the resource to look up using `GetResource`.\n\nSpecifying exactIdentifier will return exactly one result, or throw an error. (Default - Either exactIdentifier or propertyMatch should be specified.)",
6381
+ description: "Identifier of the resource to look up using `GetResource`.\n\nSpecifying exactIdentifier will return exactly one result, or throw an error\nunless `ignoreErrorOnMissingContext` is set. (Default - Either exactIdentifier or propertyMatch should be specified.)",
6376
6382
  type: "string"
6377
6383
  },
6378
6384
  propertyMatch: {
6379
- description: "Returns any resources matching these properties, using `ListResources`.\n\nSpecifying propertyMatch will return 0 or more results.\n\n## Notes on property completeness\n\nCloudControl API's `ListResources` may return fewer properties than\n`GetResource` would, depending on the resource implementation.\n\nThe resources that `propertyMatch` matches against will *only ever* be the\nproperties returned by the `ListResources` call. (Default - Either exactIdentifier or propertyMatch should be specified.)",
6385
+ description: "Returns any resources matching these properties, using `ListResources`.\n\nBy default, specifying propertyMatch will successfully return 0 or more\nresults. To throw an error if the number of results is unexpected (and\nprevent the query results from being committed to context), specify\n`expectedMatchCount`.\n\n## Notes on property completeness\n\nCloudControl API's `ListResources` may return fewer properties than\n`GetResource` would, depending on the resource implementation.\n\nThe resources that `propertyMatch` matches against will *only ever* be the\nproperties returned by the `ListResources` call. (Default - Either exactIdentifier or propertyMatch should be specified.)",
6380
6386
  $ref: "#/definitions/Record<string,unknown>"
6381
6387
  },
6382
6388
  propertiesToReturn: {
@@ -6386,11 +6392,21 @@ var require_cloud_assembly_schema = __commonJS({
6386
6392
  type: "string"
6387
6393
  }
6388
6394
  },
6395
+ expectedMatchCount: {
6396
+ description: "Expected count of results if `propertyMatch` is specified.\n\nIf the expected result count does not match the actual count,\nby default an error is produced and the result is not committed to cached\ncontext, and the user can correct the situation and try again without\nhaving to manually clear out the context key using `cdk context --remove`\n\nIf the value of * `ignoreErrorOnMissingContext` is `true`, the value of\n`expectedMatchCount` is `at-least-one | exactly-one` and the number\nof found resources is 0, `dummyValue` is returned and committed to context\ninstead. (Default 'any')",
6397
+ enum: [
6398
+ "any",
6399
+ "at-least-one",
6400
+ "at-most-one",
6401
+ "exactly-one"
6402
+ ],
6403
+ type: "string"
6404
+ },
6389
6405
  dummyValue: {
6390
6406
  description: "The value to return if the resource was not found and `ignoreErrorOnMissingContext` is true.\n\nIf supplied, `dummyValue` should be an array of objects.\n\n`dummyValue` does not have to have elements, and it may have objects with\ndifferent properties than the properties in `propertiesToReturn`, but it\nwill be easiest for downstream code if the `dummyValue` conforms to\nthe expected response shape. (Default - No dummy value available)"
6391
6407
  },
6392
6408
  ignoreErrorOnMissingContext: {
6393
- description: "Ignore an error and return the `dummyValue` instead if the resource was not found.\n\n- In case of an `exactIdentifier` lookup, return the `dummyValue` if the resource with\n that identifier was not found.\n- In case of a `propertyMatch` lookup, this setting currently does not have any effect,\n as `propertyMatch` queries can legally return 0 resources.\n\nif `ignoreErrorOnMissingContext` is set, `dummyValue` should be set and be an array.",
6409
+ description: "Ignore an error and return the `dummyValue` instead if the resource was not found.\n\n- In case of an `exactIdentifier` lookup, return the `dummyValue` if the resource with\n that identifier was not found.\n- In case of a `propertyMatch` lookup, return the `dummyValue` if `expectedMatchCount`\n is `at-least-one | exactly-one` and the number of resources found was 0.\n\nif `ignoreErrorOnMissingContext` is set, `dummyValue` should be set and be an array.",
6394
6410
  default: false,
6395
6411
  type: "boolean"
6396
6412
  },
@@ -6965,8 +6981,8 @@ var require_integ_schema = __commonJS({
6965
6981
  var require_version = __commonJS({
6966
6982
  "../cloud-assembly-schema/schema/version.json"(exports2, module2) {
6967
6983
  module2.exports = {
6968
- schemaHash: "5683db246fac20b864d94d7bceef24ebda1a38c8c1f8ef0d5978534097dc9504",
6969
- revision: 42
6984
+ schemaHash: "96958a4c40e0a00e850f0c14dd6e9c0fc8db0b075f1f155cea41ab198c0514be",
6985
+ revision: 43
6970
6986
  };
6971
6987
  }
6972
6988
  });
@@ -7497,7 +7513,7 @@ var require_cloud_artifact = __commonJS({
7497
7513
  };
7498
7514
  exports2.CloudArtifact = CloudArtifact;
7499
7515
  _a = JSII_RTTI_SYMBOL_1;
7500
- CloudArtifact[_a] = { fqn: "@aws-cdk/cx-api.CloudArtifact", version: "2.185.0" };
7516
+ CloudArtifact[_a] = { fqn: "@aws-cdk/cx-api.CloudArtifact", version: "2.187.0" };
7501
7517
  }
7502
7518
  });
7503
7519
 
@@ -7567,7 +7583,7 @@ var require_asset_manifest_artifact = __commonJS({
7567
7583
  };
7568
7584
  exports2.AssetManifestArtifact = AssetManifestArtifact;
7569
7585
  _a = JSII_RTTI_SYMBOL_1;
7570
- AssetManifestArtifact[_a] = { fqn: "@aws-cdk/cx-api.AssetManifestArtifact", version: "2.185.0" };
7586
+ AssetManifestArtifact[_a] = { fqn: "@aws-cdk/cx-api.AssetManifestArtifact", version: "2.187.0" };
7571
7587
  Object.defineProperty(AssetManifestArtifact.prototype, ASSET_MANIFEST_ARTIFACT_SYM, {
7572
7588
  value: true,
7573
7589
  enumerable: false,
@@ -7615,7 +7631,7 @@ var require_environment2 = __commonJS({
7615
7631
  };
7616
7632
  exports2.EnvironmentUtils = EnvironmentUtils;
7617
7633
  _a = JSII_RTTI_SYMBOL_1;
7618
- EnvironmentUtils[_a] = { fqn: "@aws-cdk/cx-api.EnvironmentUtils", version: "2.185.0" };
7634
+ EnvironmentUtils[_a] = { fqn: "@aws-cdk/cx-api.EnvironmentUtils", version: "2.187.0" };
7619
7635
  }
7620
7636
  });
7621
7637
 
@@ -7721,7 +7737,7 @@ var require_cloudformation_artifact = __commonJS({
7721
7737
  };
7722
7738
  exports2.CloudFormationStackArtifact = CloudFormationStackArtifact;
7723
7739
  _a = JSII_RTTI_SYMBOL_1;
7724
- CloudFormationStackArtifact[_a] = { fqn: "@aws-cdk/cx-api.CloudFormationStackArtifact", version: "2.185.0" };
7740
+ CloudFormationStackArtifact[_a] = { fqn: "@aws-cdk/cx-api.CloudFormationStackArtifact", version: "2.187.0" };
7725
7741
  Object.defineProperty(CloudFormationStackArtifact.prototype, CLOUDFORMATION_STACK_ARTIFACT_SYM, {
7726
7742
  value: true,
7727
7743
  enumerable: false,
@@ -7786,7 +7802,7 @@ var require_nested_cloud_assembly_artifact = __commonJS({
7786
7802
  };
7787
7803
  exports2.NestedCloudAssemblyArtifact = NestedCloudAssemblyArtifact;
7788
7804
  _a = JSII_RTTI_SYMBOL_1;
7789
- NestedCloudAssemblyArtifact[_a] = { fqn: "@aws-cdk/cx-api.NestedCloudAssemblyArtifact", version: "2.185.0" };
7805
+ NestedCloudAssemblyArtifact[_a] = { fqn: "@aws-cdk/cx-api.NestedCloudAssemblyArtifact", version: "2.187.0" };
7790
7806
  Object.defineProperty(NestedCloudAssemblyArtifact.prototype, NESTED_CLOUD_ASSEMBLY_SYM, {
7791
7807
  value: true,
7792
7808
  enumerable: false,
@@ -7847,7 +7863,7 @@ var require_tree_cloud_artifact = __commonJS({
7847
7863
  };
7848
7864
  exports2.TreeCloudArtifact = TreeCloudArtifact;
7849
7865
  _a = JSII_RTTI_SYMBOL_1;
7850
- TreeCloudArtifact[_a] = { fqn: "@aws-cdk/cx-api.TreeCloudArtifact", version: "2.185.0" };
7866
+ TreeCloudArtifact[_a] = { fqn: "@aws-cdk/cx-api.TreeCloudArtifact", version: "2.187.0" };
7851
7867
  Object.defineProperty(TreeCloudArtifact.prototype, TREE_CLOUD_ARTIFACT_SYM, {
7852
7868
  value: true,
7853
7869
  enumerable: false,
@@ -8113,7 +8129,7 @@ var require_cloud_assembly = __commonJS({
8113
8129
  };
8114
8130
  exports2.CloudAssembly = CloudAssembly;
8115
8131
  _a = JSII_RTTI_SYMBOL_1;
8116
- CloudAssembly[_a] = { fqn: "@aws-cdk/cx-api.CloudAssembly", version: "2.185.0" };
8132
+ CloudAssembly[_a] = { fqn: "@aws-cdk/cx-api.CloudAssembly", version: "2.187.0" };
8117
8133
  var CloudAssemblyBuilder = class _CloudAssemblyBuilder {
8118
8134
  /**
8119
8135
  * Initializes a cloud assembly builder.
@@ -8207,7 +8223,7 @@ var require_cloud_assembly = __commonJS({
8207
8223
  };
8208
8224
  exports2.CloudAssemblyBuilder = CloudAssemblyBuilder;
8209
8225
  _b = JSII_RTTI_SYMBOL_1;
8210
- CloudAssemblyBuilder[_b] = { fqn: "@aws-cdk/cx-api.CloudAssemblyBuilder", version: "2.185.0" };
8226
+ CloudAssemblyBuilder[_b] = { fqn: "@aws-cdk/cx-api.CloudAssemblyBuilder", version: "2.187.0" };
8211
8227
  function filterUndefined(obj) {
8212
8228
  if (Array.isArray(obj)) {
8213
8229
  return obj.filter((x) => x !== void 0).map((x) => filterUndefined(x));
@@ -8336,7 +8352,7 @@ var require_features = __commonJS({
8336
8352
  "use strict";
8337
8353
  Object.defineProperty(exports2, "__esModule", { value: true });
8338
8354
  exports2.LAMBDA_NODEJS_USE_LATEST_RUNTIME = exports2.ENABLE_OPENSEARCH_MULTIAZ_WITH_STANDBY = exports2.AUTOSCALING_GENERATE_LAUNCH_TEMPLATE = exports2.EFS_MOUNTTARGET_ORDERINSENSITIVE_LOGICAL_ID = exports2.EFS_DENY_ANONYMOUS_ACCESS = exports2.KMS_ALIAS_NAME_REF = exports2.INCLUDE_PREFIX_IN_UNIQUE_NAME_GENERATION = exports2.APIGATEWAY_REQUEST_VALIDATOR_UNIQUE_ID = exports2.EC2_RESTRICT_DEFAULT_SECURITY_GROUP = exports2.ENABLE_EMR_SERVICE_POLICY_V2 = exports2.REDSHIFT_COLUMN_ID = exports2.SECRETS_MANAGER_TARGET_ATTACHMENT_RESOURCE_POLICY = exports2.EC2_LAUNCH_TEMPLATE_DEFAULT_USER_DATA = exports2.APIGATEWAY_AUTHORIZER_CHANGE_DEPLOYMENT_LOGICAL_ID = exports2.CODEDEPLOY_REMOVE_ALARMS_FROM_DEPLOYMENT_GROUP = exports2.DATABASE_PROXY_UNIQUE_RESOURCE_NAME = exports2.AWS_CUSTOM_RESOURCE_LATEST_SDK_DEFAULT = exports2.ROUTE53_PATTERNS_USE_CERTIFICATE = exports2.S3_SERVER_ACCESS_LOGS_USE_BUCKET_POLICY = exports2.ECS_DISABLE_EXPLICIT_DEPLOYMENT_CONTROLLER_FOR_CIRCUIT_BREAKER = exports2.EVENTS_TARGET_QUEUE_SAME_ACCOUNT = exports2.ENABLE_PARTITION_LITERALS = exports2.APIGATEWAY_DISABLE_CLOUDWATCH_ROLE = exports2.SNS_SUBSCRIPTIONS_SQS_DECRYPTION_POLICY = exports2.S3_CREATE_DEFAULT_LOGGING_POLICY = exports2.CODEPIPELINE_CROSS_ACCOUNT_KEY_ALIAS_STACK_SAFE_RESOURCE_NAME = exports2.VALIDATE_SNAPSHOT_REMOVAL_POLICY = exports2.IAM_IMPORTED_ROLE_STACK_SAFE_DEFAULT_POLICY_NAME = exports2.IAM_MINIMIZE_POLICIES = exports2.ECS_ARN_FORMAT_INCLUDES_CLUSTER_NAME = exports2.EC2_UNIQUE_IMDSV2_LAUNCH_TEMPLATE_NAME = exports2.ECS_SERVICE_EXTENSIONS_ENABLE_DEFAULT_LOG_DRIVER = exports2.TARGET_PARTITIONS = exports2.CHECK_SECRET_USAGE = exports2.CLOUDFRONT_DEFAULT_SECURITY_POLICY_TLS_V1_2_2021 = exports2.LAMBDA_RECOGNIZE_LAYER_VERSION = exports2.LAMBDA_RECOGNIZE_VERSION_PROPS = exports2.EFS_DEFAULT_ENCRYPTION_AT_REST = exports2.APIGATEWAY_USAGEPLANKEY_ORDERINSENSITIVE_ID = exports2.RDS_LOWERCASE_DB_IDENTIFIER = exports2.ECS_REMOVE_DEFAULT_DESIRED_COUNT = exports2.S3_GRANT_WRITE_WITHOUT_ACL = exports2.KMS_DEFAULT_KEY_POLICIES = exports2.SECRETS_MANAGER_PARSE_OWNED_SECRET_NAME = exports2.DOCKER_IGNORE_SUPPORT = exports2.STACK_RELATIVE_EXPORTS_CONTEXT = exports2.NEW_STYLE_STACK_SYNTHESIS_CONTEXT = exports2.ENABLE_DIFF_NO_FAIL = exports2.ENABLE_DIFF_NO_FAIL_CONTEXT = exports2.ENABLE_STACK_NAME_DUPLICATES_CONTEXT = void 0;
8339
- exports2.NEW_PROJECT_DEFAULT_CONTEXT = exports2.FUTURE_FLAGS = exports2.FUTURE_FLAGS_EXPIRED = exports2.CURRENT_VERSION_FLAG_DEFAULTS = exports2.CURRENTLY_RECOMMENDED_FLAGS = exports2.CURRENT_VERSION_EXPIRED_FLAGS = exports2.FLAGS = exports2.PIPELINE_REDUCE_STAGE_ROLE_TRUST_SCOPE = exports2.SET_UNIQUE_REPLICATION_ROLE_NAME = exports2.LAMBDA_CREATE_NEW_POLICIES_WITH_ADDTOROLEPOLICY = exports2.ENABLE_ADDITIONAL_METADATA_COLLECTION = exports2.IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS = exports2.ALB_DUALSTACK_WITHOUT_PUBLIC_IPV4_SECURITY_GROUP_RULES_DEFAULT = exports2.Disable_ECS_IMDS_Blocking = exports2.Enable_IMDS_Blocking_Deprecated_Feature = exports2.USER_POOL_DOMAIN_NAME_METHOD_WITHOUT_CUSTOM_RESOURCE = exports2.ASPECT_STABILIZATION = exports2.BASTION_HOST_USE_AMAZON_LINUX_2023_BY_DEFAULT = exports2.STEPFUNCTIONS_TASKS_FIX_RUN_ECS_TASK_POLICY = exports2.LAMBDA_NODEJS_SDK_V3_EXCLUDE_SMITHY_PACKAGES = exports2.CFN_INCLUDE_REJECT_COMPLEX_RESOURCE_UPDATE_CREATE_POLICY_INTRINSICS = exports2.USE_CORRECT_VALUE_FOR_INSTANCE_RESOURCE_ID_PROPERTY = exports2.APPSYNC_GRAPHQLAPI_SCOPE_LAMBDA_FUNCTION_PERMISSION = exports2.EC2_SUM_TIMEOUT_ENABLED = exports2.DYNAMODB_TABLEV2_RESOURCE_POLICY_PER_REPLICA = exports2.REDUCE_EC2_FARGATE_CLOUDWATCH_PERMISSIONS = exports2.USE_NEW_S3URI_PARAMETERS_FOR_BEDROCK_INVOKE_MODEL_TASK = exports2.S3_KEEP_NOTIFICATION_IN_IMPORTED_BUCKET = exports2.LOG_API_RESPONSE_DATA_PROPERTY_TRUE_DEFAULT = exports2.ECS_REMOVE_DEFAULT_DEPLOYMENT_ALARM = exports2.EBS_DEFAULT_GP3 = exports2.EKS_NODEGROUP_NAME = exports2.PIPELINE_REDUCE_ASSET_ROLE_TRUST_SCOPE = exports2.KMS_REDUCE_CROSS_ACCOUNT_REGION_POLICY_SCOPE = exports2.CODEPIPELINE_DEFAULT_PIPELINE_TYPE_TO_V2 = exports2.CODEPIPELINE_CROSS_ACCOUNT_KEYS_DEFAULT_VALUE_TO_FALSE = exports2.LAMBDA_PERMISSION_LOGICAL_ID_FOR_LAMBDA_ACTION = exports2.CODECOMMIT_SOURCE_ACTION_DEFAULT_BRANCH_NAME = exports2.APPSYNC_ENABLE_USE_ARN_IDENTIFIER_SOURCE_API_ASSOCIATION = exports2.AURORA_CLUSTER_CHANGE_SCOPE_OF_INSTANCE_PARAMETER_GROUP_WITH_EACH_PARAMETERS = exports2.RDS_PREVENT_RENDERING_DEPRECATED_CREDENTIALS = void 0;
8355
+ exports2.NEW_PROJECT_DEFAULT_CONTEXT = exports2.FUTURE_FLAGS = exports2.FUTURE_FLAGS_EXPIRED = exports2.CURRENT_VERSION_FLAG_DEFAULTS = exports2.CURRENTLY_RECOMMENDED_FLAGS = exports2.CURRENT_VERSION_EXPIRED_FLAGS = exports2.FLAGS = exports2.LOG_USER_POOL_CLIENT_SECRET_VALUE = exports2.DYNAMODB_TABLE_RETAIN_TABLE_REPLICA = exports2.EVENTBUS_POLICY_SID_REQUIRED = exports2.PIPELINE_REDUCE_STAGE_ROLE_TRUST_SCOPE = exports2.SET_UNIQUE_REPLICATION_ROLE_NAME = exports2.LAMBDA_CREATE_NEW_POLICIES_WITH_ADDTOROLEPOLICY = exports2.ENABLE_ADDITIONAL_METADATA_COLLECTION = exports2.IAM_OIDC_REJECT_UNAUTHORIZED_CONNECTIONS = exports2.ALB_DUALSTACK_WITHOUT_PUBLIC_IPV4_SECURITY_GROUP_RULES_DEFAULT = exports2.Disable_ECS_IMDS_Blocking = exports2.Enable_IMDS_Blocking_Deprecated_Feature = exports2.USER_POOL_DOMAIN_NAME_METHOD_WITHOUT_CUSTOM_RESOURCE = exports2.ASPECT_STABILIZATION = exports2.BASTION_HOST_USE_AMAZON_LINUX_2023_BY_DEFAULT = exports2.STEPFUNCTIONS_TASKS_FIX_RUN_ECS_TASK_POLICY = exports2.LAMBDA_NODEJS_SDK_V3_EXCLUDE_SMITHY_PACKAGES = exports2.CFN_INCLUDE_REJECT_COMPLEX_RESOURCE_UPDATE_CREATE_POLICY_INTRINSICS = exports2.USE_CORRECT_VALUE_FOR_INSTANCE_RESOURCE_ID_PROPERTY = exports2.APPSYNC_GRAPHQLAPI_SCOPE_LAMBDA_FUNCTION_PERMISSION = exports2.EC2_SUM_TIMEOUT_ENABLED = exports2.DYNAMODB_TABLEV2_RESOURCE_POLICY_PER_REPLICA = exports2.REDUCE_EC2_FARGATE_CLOUDWATCH_PERMISSIONS = exports2.USE_NEW_S3URI_PARAMETERS_FOR_BEDROCK_INVOKE_MODEL_TASK = exports2.S3_KEEP_NOTIFICATION_IN_IMPORTED_BUCKET = exports2.LOG_API_RESPONSE_DATA_PROPERTY_TRUE_DEFAULT = exports2.ECS_REMOVE_DEFAULT_DEPLOYMENT_ALARM = exports2.EBS_DEFAULT_GP3 = exports2.EKS_NODEGROUP_NAME = exports2.PIPELINE_REDUCE_ASSET_ROLE_TRUST_SCOPE = exports2.KMS_REDUCE_CROSS_ACCOUNT_REGION_POLICY_SCOPE = exports2.CODEPIPELINE_DEFAULT_PIPELINE_TYPE_TO_V2 = exports2.CODEPIPELINE_CROSS_ACCOUNT_KEYS_DEFAULT_VALUE_TO_FALSE = exports2.LAMBDA_PERMISSION_LOGICAL_ID_FOR_LAMBDA_ACTION = exports2.CODECOMMIT_SOURCE_ACTION_DEFAULT_BRANCH_NAME = exports2.APPSYNC_ENABLE_USE_ARN_IDENTIFIER_SOURCE_API_ASSOCIATION = exports2.AURORA_CLUSTER_CHANGE_SCOPE_OF_INSTANCE_PARAMETER_GROUP_WITH_EACH_PARAMETERS = exports2.RDS_PREVENT_RENDERING_DEPRECATED_CREDENTIALS = void 0;
8340
8356
  exports2.futureFlagDefault = futureFlagDefault;
8341
8357
  var flag_modeling_1 = require_flag_modeling();
8342
8358
  exports2.ENABLE_STACK_NAME_DUPLICATES_CONTEXT = "@aws-cdk/core:enableStackNameDuplicates";
@@ -8423,6 +8439,9 @@ var require_features = __commonJS({
8423
8439
  exports2.LAMBDA_CREATE_NEW_POLICIES_WITH_ADDTOROLEPOLICY = "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy";
8424
8440
  exports2.SET_UNIQUE_REPLICATION_ROLE_NAME = "@aws-cdk/aws-s3:setUniqueReplicationRoleName";
8425
8441
  exports2.PIPELINE_REDUCE_STAGE_ROLE_TRUST_SCOPE = "@aws-cdk/pipelines:reduceStageRoleTrustScope";
8442
+ exports2.EVENTBUS_POLICY_SID_REQUIRED = "@aws-cdk/aws-events:requireEventBusPolicySid";
8443
+ exports2.DYNAMODB_TABLE_RETAIN_TABLE_REPLICA = "@aws-cdk/aws-dynamodb:retainTableReplica";
8444
+ exports2.LOG_USER_POOL_CLIENT_SECRET_VALUE = "@aws-cdk/cognito:logUserPoolClientSecretValue";
8426
8445
  exports2.FLAGS = {
8427
8446
  //////////////////////////////////////////////////////////////////////
8428
8447
  [exports2.ENABLE_STACK_NAME_DUPLICATES_CONTEXT]: {
@@ -9637,6 +9656,55 @@ var require_features = __commonJS({
9637
9656
  defaults: { v2: true },
9638
9657
  recommendedValue: true,
9639
9658
  compatibilityWithOldBehaviorMd: "Disable the feature flag to add the root account principal back"
9659
+ },
9660
+ //////////////////////////////////////////////////////////////////////
9661
+ [exports2.EVENTBUS_POLICY_SID_REQUIRED]: {
9662
+ type: flag_modeling_1.FlagType.BugFix,
9663
+ summary: "When enabled, grantPutEventsTo() will use resource policies with Statement IDs for service principals.",
9664
+ detailsMd: `
9665
+ Currently, when granting permissions to service principals using grantPutEventsTo(), the operation silently fails
9666
+ because service principals require resource policies with Statement IDs.
9667
+
9668
+ When this flag is enabled:
9669
+ - Resource policies will be created with Statement IDs for service principals
9670
+ - The operation will succeed as expected
9671
+
9672
+ When this flag is disabled:
9673
+ - A warning will be emitted
9674
+ - The grant operation will be dropped
9675
+ - No permissions will be added
9676
+
9677
+ This fixes the issue where permissions were silently not being added for service principals.
9678
+ `,
9679
+ introducedIn: { v2: "2.186.0" },
9680
+ recommendedValue: true
9681
+ },
9682
+ //////////////////////////////////////////////////////////////////////
9683
+ [exports2.DYNAMODB_TABLE_RETAIN_TABLE_REPLICA]: {
9684
+ type: flag_modeling_1.FlagType.BugFix,
9685
+ summary: "When enabled, table replica will be default to the removal policy of source table unless specified otherwise.",
9686
+ detailsMd: `
9687
+ Currently, table replica will always be deleted when stack deletes regardless of source table's deletion policy.
9688
+ When enabled, table replica will be default to the removal policy of source table unless specified otherwise.
9689
+ `,
9690
+ introducedIn: { v2: "2.187.0" },
9691
+ recommendedValue: true
9692
+ },
9693
+ //////////////////////////////////////////////////////////////////////
9694
+ [exports2.LOG_USER_POOL_CLIENT_SECRET_VALUE]: {
9695
+ type: flag_modeling_1.FlagType.ApiDefault,
9696
+ summary: "When disabled, the value of the user pool client secret will not be logged in the custom resource lambda function logs.",
9697
+ detailsMd: `
9698
+ When this feature flag is enabled, the SDK API call response to desribe user pool client values will be logged in the custom
9699
+ resource lambda function logs.
9700
+
9701
+ When this feature flag is disabled, the SDK API call response to describe user pool client values will not be logged in the custom
9702
+ resource lambda function logs.
9703
+ `,
9704
+ introducedIn: { v2: "2.187.0" },
9705
+ defaults: { v2: false },
9706
+ recommendedValue: false,
9707
+ compatibilityWithOldBehaviorMd: "Enable the feature flag to keep the old behavior and log the client secret values"
9640
9708
  }
9641
9709
  };
9642
9710
  var CURRENT_MV = "v2";
@@ -9753,7 +9821,7 @@ var require_placeholders = __commonJS({
9753
9821
  };
9754
9822
  exports2.EnvironmentPlaceholders = EnvironmentPlaceholders;
9755
9823
  _a = JSII_RTTI_SYMBOL_1;
9756
- EnvironmentPlaceholders[_a] = { fqn: "@aws-cdk/cx-api.EnvironmentPlaceholders", version: "2.185.0" };
9824
+ EnvironmentPlaceholders[_a] = { fqn: "@aws-cdk/cx-api.EnvironmentPlaceholders", version: "2.187.0" };
9757
9825
  EnvironmentPlaceholders.CURRENT_REGION = "${AWS::Region}";
9758
9826
  EnvironmentPlaceholders.CURRENT_ACCOUNT = "${AWS::AccountId}";
9759
9827
  EnvironmentPlaceholders.CURRENT_PARTITION = "${AWS::Partition}";
@@ -12614,6 +12682,7 @@ __export(recommended_feature_flags_exports, {
12614
12682
  "@aws-cdk/aws-codepipeline:crossAccountKeysDefaultValueToFalse": () => _aws_cdk_aws_codepipeline_crossAccountKeysDefaultValueToFalse,
12615
12683
  "@aws-cdk/aws-codepipeline:defaultPipelineTypeToV2": () => _aws_cdk_aws_codepipeline_defaultPipelineTypeToV2,
12616
12684
  "@aws-cdk/aws-dynamodb:resourcePolicyPerReplica": () => _aws_cdk_aws_dynamodb_resourcePolicyPerReplica,
12685
+ "@aws-cdk/aws-dynamodb:retainTableReplica": () => _aws_cdk_aws_dynamodb_retainTableReplica,
12617
12686
  "@aws-cdk/aws-ec2:bastionHostUseAmazonLinux2023ByDefault": () => _aws_cdk_aws_ec2_bastionHostUseAmazonLinux2023ByDefault,
12618
12687
  "@aws-cdk/aws-ec2:ebsDefaultGp3Volume": () => _aws_cdk_aws_ec2_ebsDefaultGp3Volume,
12619
12688
  "@aws-cdk/aws-ec2:ec2SumTImeoutEnabled": () => _aws_cdk_aws_ec2_ec2SumTImeoutEnabled,
@@ -12631,6 +12700,7 @@ __export(recommended_feature_flags_exports, {
12631
12700
  "@aws-cdk/aws-eks:nodegroupNameAttribute": () => _aws_cdk_aws_eks_nodegroupNameAttribute,
12632
12701
  "@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault": () => _aws_cdk_aws_elasticloadbalancingV2_albDualstackWithoutPublicIpv4SecurityGroupRulesDefault,
12633
12702
  "@aws-cdk/aws-events:eventsTargetQueueSameAccount": () => _aws_cdk_aws_events_eventsTargetQueueSameAccount,
12703
+ "@aws-cdk/aws-events:requireEventBusPolicySid": () => _aws_cdk_aws_events_requireEventBusPolicySid,
12634
12704
  "@aws-cdk/aws-iam:importedRoleStackSafeDefaultPolicyName": () => _aws_cdk_aws_iam_importedRoleStackSafeDefaultPolicyName,
12635
12705
  "@aws-cdk/aws-iam:minimizePolicies": () => _aws_cdk_aws_iam_minimizePolicies,
12636
12706
  "@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": () => _aws_cdk_aws_iam_oidcRejectUnauthorizedConnections,
@@ -12667,7 +12737,7 @@ __export(recommended_feature_flags_exports, {
12667
12737
  "@aws-cdk/customresources:installLatestAwsSdkDefault": () => _aws_cdk_customresources_installLatestAwsSdkDefault,
12668
12738
  default: () => recommended_feature_flags_default
12669
12739
  });
12670
- var _aws_cdk_aws_lambda_recognizeLayerVersion, _aws_cdk_core_checkSecretUsage, _aws_cdk_core_target_partitions, _aws_cdk_containers_ecs_service_extensions_enableDefaultLogDriver, _aws_cdk_aws_ec2_uniqueImdsv2TemplateName, _aws_cdk_aws_ecs_arnFormatIncludesClusterName, _aws_cdk_aws_iam_minimizePolicies, _aws_cdk_core_validateSnapshotRemovalPolicy, _aws_cdk_aws_codepipeline_crossAccountKeyAliasStackSafeResourceName, _aws_cdk_aws_s3_createDefaultLoggingPolicy, _aws_cdk_aws_sns_subscriptions_restrictSqsDescryption, _aws_cdk_aws_apigateway_disableCloudWatchRole, _aws_cdk_core_enablePartitionLiterals, _aws_cdk_aws_events_eventsTargetQueueSameAccount, _aws_cdk_aws_ecs_disableExplicitDeploymentControllerForCircuitBreaker, _aws_cdk_aws_iam_importedRoleStackSafeDefaultPolicyName, _aws_cdk_aws_s3_serverAccessLogsUseBucketPolicy, _aws_cdk_aws_route53_patters_useCertificate, _aws_cdk_customresources_installLatestAwsSdkDefault, _aws_cdk_aws_rds_databaseProxyUniqueResourceName, _aws_cdk_aws_codedeploy_removeAlarmsFromDeploymentGroup, _aws_cdk_aws_apigateway_authorizerChangeDeploymentLogicalId, _aws_cdk_aws_ec2_launchTemplateDefaultUserData, _aws_cdk_aws_secretsmanager_useAttachedSecretResourcePolicyForSecretTargetAttachments, _aws_cdk_aws_redshift_columnId, _aws_cdk_aws_stepfunctions_tasks_enableEmrServicePolicyV2, _aws_cdk_aws_ec2_restrictDefaultSecurityGroup, _aws_cdk_aws_apigateway_requestValidatorUniqueId, _aws_cdk_aws_kms_aliasNameRef, _aws_cdk_aws_autoscaling_generateLaunchTemplateInsteadOfLaunchConfig, _aws_cdk_core_includePrefixInUniqueNameGeneration, _aws_cdk_aws_efs_denyAnonymousAccess, _aws_cdk_aws_opensearchservice_enableOpensearchMultiAzWithStandby, _aws_cdk_aws_lambda_nodejs_useLatestRuntimeVersion, _aws_cdk_aws_efs_mountTargetOrderInsensitiveLogicalId, _aws_cdk_aws_rds_auroraClusterChangeScopeOfInstanceParameterGroupWithEachParameters, _aws_cdk_aws_appsync_useArnForSourceApiAssociationIdentifier, _aws_cdk_aws_rds_preventRenderingDeprecatedCredentials, _aws_cdk_aws_codepipeline_actions_useNewDefaultBranchForCodeCommitSource, _aws_cdk_aws_cloudwatch_actions_changeLambdaPermissionLogicalIdForLambdaAction, _aws_cdk_aws_codepipeline_crossAccountKeysDefaultValueToFalse, _aws_cdk_aws_codepipeline_defaultPipelineTypeToV2, _aws_cdk_aws_kms_reduceCrossAccountRegionPolicyScope, _aws_cdk_aws_eks_nodegroupNameAttribute, _aws_cdk_aws_ec2_ebsDefaultGp3Volume, _aws_cdk_aws_ecs_removeDefaultDeploymentAlarm, _aws_cdk_custom_resources_logApiResponseDataPropertyTrueDefault, _aws_cdk_aws_s3_keepNotificationInImportedBucket, _aws_cdk_aws_ecs_enableImdsBlockingDeprecatedFeature, _aws_cdk_aws_ecs_disableEcsImdsBlocking, _aws_cdk_aws_ecs_reduceEc2FargateCloudWatchPermissions, _aws_cdk_aws_dynamodb_resourcePolicyPerReplica, _aws_cdk_aws_ec2_ec2SumTImeoutEnabled, _aws_cdk_aws_appsync_appSyncGraphQLAPIScopeLambdaPermission, _aws_cdk_aws_rds_setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId, _aws_cdk_core_cfnIncludeRejectComplexResourceUpdateCreatePolicyIntrinsics, _aws_cdk_aws_lambda_nodejs_sdkV3ExcludeSmithyPackages, _aws_cdk_aws_stepfunctions_tasks_fixRunEcsTaskPolicy, _aws_cdk_aws_ec2_bastionHostUseAmazonLinux2023ByDefault, _aws_cdk_aws_route53_targets_userPoolDomainNameMethodWithoutCustomResource, _aws_cdk_aws_elasticloadbalancingV2_albDualstackWithoutPublicIpv4SecurityGroupRulesDefault, _aws_cdk_aws_iam_oidcRejectUnauthorizedConnections, _aws_cdk_core_enableAdditionalMetadataCollection, _aws_cdk_aws_lambda_createNewPoliciesWithAddToRolePolicy, _aws_cdk_aws_s3_setUniqueReplicationRoleName, recommended_feature_flags_default;
12740
+ var _aws_cdk_aws_lambda_recognizeLayerVersion, _aws_cdk_core_checkSecretUsage, _aws_cdk_core_target_partitions, _aws_cdk_containers_ecs_service_extensions_enableDefaultLogDriver, _aws_cdk_aws_ec2_uniqueImdsv2TemplateName, _aws_cdk_aws_ecs_arnFormatIncludesClusterName, _aws_cdk_aws_iam_minimizePolicies, _aws_cdk_core_validateSnapshotRemovalPolicy, _aws_cdk_aws_codepipeline_crossAccountKeyAliasStackSafeResourceName, _aws_cdk_aws_s3_createDefaultLoggingPolicy, _aws_cdk_aws_sns_subscriptions_restrictSqsDescryption, _aws_cdk_aws_apigateway_disableCloudWatchRole, _aws_cdk_core_enablePartitionLiterals, _aws_cdk_aws_events_eventsTargetQueueSameAccount, _aws_cdk_aws_ecs_disableExplicitDeploymentControllerForCircuitBreaker, _aws_cdk_aws_iam_importedRoleStackSafeDefaultPolicyName, _aws_cdk_aws_s3_serverAccessLogsUseBucketPolicy, _aws_cdk_aws_route53_patters_useCertificate, _aws_cdk_customresources_installLatestAwsSdkDefault, _aws_cdk_aws_rds_databaseProxyUniqueResourceName, _aws_cdk_aws_codedeploy_removeAlarmsFromDeploymentGroup, _aws_cdk_aws_apigateway_authorizerChangeDeploymentLogicalId, _aws_cdk_aws_ec2_launchTemplateDefaultUserData, _aws_cdk_aws_secretsmanager_useAttachedSecretResourcePolicyForSecretTargetAttachments, _aws_cdk_aws_redshift_columnId, _aws_cdk_aws_stepfunctions_tasks_enableEmrServicePolicyV2, _aws_cdk_aws_ec2_restrictDefaultSecurityGroup, _aws_cdk_aws_apigateway_requestValidatorUniqueId, _aws_cdk_aws_kms_aliasNameRef, _aws_cdk_aws_autoscaling_generateLaunchTemplateInsteadOfLaunchConfig, _aws_cdk_core_includePrefixInUniqueNameGeneration, _aws_cdk_aws_efs_denyAnonymousAccess, _aws_cdk_aws_opensearchservice_enableOpensearchMultiAzWithStandby, _aws_cdk_aws_lambda_nodejs_useLatestRuntimeVersion, _aws_cdk_aws_efs_mountTargetOrderInsensitiveLogicalId, _aws_cdk_aws_rds_auroraClusterChangeScopeOfInstanceParameterGroupWithEachParameters, _aws_cdk_aws_appsync_useArnForSourceApiAssociationIdentifier, _aws_cdk_aws_rds_preventRenderingDeprecatedCredentials, _aws_cdk_aws_codepipeline_actions_useNewDefaultBranchForCodeCommitSource, _aws_cdk_aws_cloudwatch_actions_changeLambdaPermissionLogicalIdForLambdaAction, _aws_cdk_aws_codepipeline_crossAccountKeysDefaultValueToFalse, _aws_cdk_aws_codepipeline_defaultPipelineTypeToV2, _aws_cdk_aws_kms_reduceCrossAccountRegionPolicyScope, _aws_cdk_aws_eks_nodegroupNameAttribute, _aws_cdk_aws_ec2_ebsDefaultGp3Volume, _aws_cdk_aws_ecs_removeDefaultDeploymentAlarm, _aws_cdk_custom_resources_logApiResponseDataPropertyTrueDefault, _aws_cdk_aws_s3_keepNotificationInImportedBucket, _aws_cdk_aws_ecs_enableImdsBlockingDeprecatedFeature, _aws_cdk_aws_ecs_disableEcsImdsBlocking, _aws_cdk_aws_ecs_reduceEc2FargateCloudWatchPermissions, _aws_cdk_aws_dynamodb_resourcePolicyPerReplica, _aws_cdk_aws_ec2_ec2SumTImeoutEnabled, _aws_cdk_aws_appsync_appSyncGraphQLAPIScopeLambdaPermission, _aws_cdk_aws_rds_setCorrectValueForDatabaseInstanceReadReplicaInstanceResourceId, _aws_cdk_core_cfnIncludeRejectComplexResourceUpdateCreatePolicyIntrinsics, _aws_cdk_aws_lambda_nodejs_sdkV3ExcludeSmithyPackages, _aws_cdk_aws_stepfunctions_tasks_fixRunEcsTaskPolicy, _aws_cdk_aws_ec2_bastionHostUseAmazonLinux2023ByDefault, _aws_cdk_aws_route53_targets_userPoolDomainNameMethodWithoutCustomResource, _aws_cdk_aws_elasticloadbalancingV2_albDualstackWithoutPublicIpv4SecurityGroupRulesDefault, _aws_cdk_aws_iam_oidcRejectUnauthorizedConnections, _aws_cdk_core_enableAdditionalMetadataCollection, _aws_cdk_aws_lambda_createNewPoliciesWithAddToRolePolicy, _aws_cdk_aws_s3_setUniqueReplicationRoleName, _aws_cdk_aws_events_requireEventBusPolicySid, _aws_cdk_aws_dynamodb_retainTableReplica, recommended_feature_flags_default;
12671
12741
  var init_recommended_feature_flags = __esm({
12672
12742
  "lib/recommended-feature-flags.json"() {
12673
12743
  _aws_cdk_aws_lambda_recognizeLayerVersion = true;
@@ -12738,6 +12808,8 @@ var init_recommended_feature_flags = __esm({
12738
12808
  _aws_cdk_core_enableAdditionalMetadataCollection = true;
12739
12809
  _aws_cdk_aws_lambda_createNewPoliciesWithAddToRolePolicy = true;
12740
12810
  _aws_cdk_aws_s3_setUniqueReplicationRoleName = true;
12811
+ _aws_cdk_aws_events_requireEventBusPolicySid = true;
12812
+ _aws_cdk_aws_dynamodb_retainTableReplica = true;
12741
12813
  recommended_feature_flags_default = {
12742
12814
  "@aws-cdk/aws-lambda:recognizeLayerVersion": _aws_cdk_aws_lambda_recognizeLayerVersion,
12743
12815
  "@aws-cdk/core:checkSecretUsage": _aws_cdk_core_checkSecretUsage,
@@ -12803,7 +12875,9 @@ var init_recommended_feature_flags = __esm({
12803
12875
  "@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections": _aws_cdk_aws_iam_oidcRejectUnauthorizedConnections,
12804
12876
  "@aws-cdk/core:enableAdditionalMetadataCollection": _aws_cdk_core_enableAdditionalMetadataCollection,
12805
12877
  "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy": _aws_cdk_aws_lambda_createNewPoliciesWithAddToRolePolicy,
12806
- "@aws-cdk/aws-s3:setUniqueReplicationRoleName": _aws_cdk_aws_s3_setUniqueReplicationRoleName
12878
+ "@aws-cdk/aws-s3:setUniqueReplicationRoleName": _aws_cdk_aws_s3_setUniqueReplicationRoleName,
12879
+ "@aws-cdk/aws-events:requireEventBusPolicySid": _aws_cdk_aws_events_requireEventBusPolicySid,
12880
+ "@aws-cdk/aws-dynamodb:retainTableReplica": _aws_cdk_aws_dynamodb_retainTableReplica
12807
12881
  };
12808
12882
  }
12809
12883
  });
package/package.json CHANGED
@@ -45,31 +45,31 @@
45
45
  "@types/yargs": "^17.0.33",
46
46
  "@typescript-eslint/eslint-plugin": "^8",
47
47
  "@typescript-eslint/parser": "^8",
48
- "aws-cdk-lib": "^2.185.0",
48
+ "aws-cdk-lib": "^2.187.0",
49
49
  "commit-and-tag-version": "^12",
50
50
  "constructs": "^10",
51
51
  "eslint": "^9",
52
52
  "eslint-config-prettier": "^10.1.1",
53
- "eslint-import-resolver-typescript": "^4.2.2",
53
+ "eslint-import-resolver-typescript": "^4.3.1",
54
54
  "eslint-plugin-import": "^2.31.0",
55
55
  "eslint-plugin-jest": "^28.11.0",
56
56
  "eslint-plugin-jsdoc": "^50.6.9",
57
- "eslint-plugin-prettier": "^5.2.3",
57
+ "eslint-plugin-prettier": "^5.2.6",
58
58
  "jest": "^29.7.0",
59
59
  "jest-junit": "^16",
60
60
  "license-checker": "^25.0.1",
61
61
  "mock-fs": "^5",
62
62
  "prettier": "^2.8",
63
63
  "projen": "^0.91.18",
64
- "ts-jest": "^29.2.6",
64
+ "ts-jest": "^29.3.1",
65
65
  "typescript": "5.6",
66
- "@aws-cdk/aws-service-spec": "^0.1.62",
66
+ "@aws-cdk/aws-service-spec": "^0.1.66",
67
67
  "@aws-cdk/cdk-cli-wrapper": "0.0.0",
68
- "@aws-cdk/cloud-assembly-schema": "42.0.0",
68
+ "@aws-cdk/cloud-assembly-schema": "43.1.0",
69
69
  "@aws-cdk/cloudformation-diff": "2.180.0",
70
- "@aws-cdk/cx-api": "^2.185.0",
70
+ "@aws-cdk/cx-api": "^2.187.0",
71
71
  "@aws-sdk/client-cloudformation": "^3",
72
- "aws-cdk": "2.1006.0",
72
+ "aws-cdk": "3.0.0",
73
73
  "cdk-assets": "3.2.0",
74
74
  "chalk": "^4",
75
75
  "chokidar": "^3",
@@ -78,8 +78,8 @@
78
78
  "yargs": "^16"
79
79
  },
80
80
  "dependencies": {
81
- "@aws-cdk/aws-service-spec": "0.1.62",
82
- "aws-cdk": "2.1006.0"
81
+ "@aws-cdk/aws-service-spec": "0.1.66",
82
+ "aws-cdk": "3.0.0"
83
83
  },
84
84
  "keywords": [
85
85
  "aws",
@@ -94,7 +94,7 @@
94
94
  "publishConfig": {
95
95
  "access": "public"
96
96
  },
97
- "version": "2.186.0",
97
+ "version": "2.186.2",
98
98
  "types": "lib/index.d.ts",
99
99
  "//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"npx projen\".",
100
100
  "optionalDependencies": {