@awboost/cfn-resource-types 0.1.452 → 0.1.453

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.
@@ -14,15 +14,16 @@ export type ECRRepositoryProperties = {
14
14
  */
15
15
  EncryptionConfiguration?: EncryptionConfiguration;
16
16
  /**
17
- * The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
18
- */
17
+ * The ``imageScanningConfiguration`` parameter is being deprecated, in favor of specifying the image scanning configuration at the registry level. For more information, see ``PutRegistryScanningConfiguration``.
18
+ The image scanning configuration for the repository. This determines whether images are scanned for known vulnerabilities after being pushed to the repository.
19
+ */
19
20
  ImageScanningConfiguration?: ImageScanningConfiguration;
20
21
  /**
21
22
  * The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
22
23
  */
23
24
  ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "MUTABLE_WITH_EXCLUSION" | "IMMUTABLE_WITH_EXCLUSION";
24
25
  /**
25
- * The image tag mutability exclusion filters associated with the repository. These filters specify which image tags can override the repository's default image tag mutability setting.
26
+ * A list of filters that specify which image tags are excluded from the repository's image tag mutability setting.
26
27
  * @minLength `1`
27
28
  * @maxLength `5`
28
29
  */
@@ -100,7 +101,7 @@ export type ImageScanningConfiguration = {
100
101
  };
101
102
  /**
102
103
  * Type definition for `AWS::ECR::Repository.ImageTagMutabilityExclusionFilter`.
103
- * Overrides the default image tag mutability setting of the repository for image tags that match the specified filters.
104
+ * A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
104
105
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html}
105
106
  */
106
107
  export type ImageTagMutabilityExclusionFilter = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.452",
3
+ "version": "0.1.453",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },