@awboost/cfn-resource-types 0.1.393 → 0.1.394

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.
@@ -43,7 +43,7 @@ export type EC2NatGatewayProperties = {
43
43
  /**
44
44
  * The ID of the subnet in which the NAT gateway is located.
45
45
  */
46
- SubnetId: string;
46
+ SubnetId?: string;
47
47
  /**
48
48
  * The tags for the NAT gateway.
49
49
  */
@@ -31,6 +31,7 @@ export type ECRRepositoryCreationTemplateProperties = {
31
31
  */
32
32
  ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "IMMUTABLE_WITH_EXCLUSION" | "MUTABLE_WITH_EXCLUSION";
33
33
  /**
34
+ * Defines the image tag mutability exclusion filters to apply when creating repositories from this template. These filters specify which image tags can override the repository's default image tag mutability setting.
34
35
  * @minLength `1`
35
36
  * @maxLength `5`
36
37
  */
@@ -103,15 +104,12 @@ export type EncryptionConfiguration = {
103
104
  export type EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
104
105
  /**
105
106
  * Type definition for `AWS::ECR::RepositoryCreationTemplate.ImageTagMutabilityExclusionFilter`.
107
+ * Overrides the default image tag mutability setting of the repository for image tags that match the specified filters.
106
108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-imagetagmutabilityexclusionfilter.html}
107
109
  */
108
110
  export type ImageTagMutabilityExclusionFilter = {
109
- /**
110
- * Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
111
- */
112
111
  ImageTagMutabilityExclusionFilterType: "WILDCARD";
113
112
  /**
114
- * The value to use when filtering image tags.
115
113
  * @minLength `1`
116
114
  * @maxLength `128`
117
115
  * @pattern `^[0-9a-zA-Z._*-]{1,128}`
@@ -38,7 +38,7 @@ export type LambdaVersionProperties = {
38
38
  export type LambdaVersionAttributes = {
39
39
  /**
40
40
  * The ARN of the version.
41
- * @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST(\.PUBLISHED)?|[a-zA-Z0-9-_]+))?$`
41
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}((-gov)|(-iso([a-z]?)))?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
42
42
  */
43
43
  FunctionArn: string;
44
44
  /**
@@ -13,6 +13,10 @@ export type PCSClusterProperties = {
13
13
  * The networking configuration for the cluster's control plane.
14
14
  */
15
15
  Networking: {
16
+ /**
17
+ * The IP of the cluster (IPV4 or IPV6)
18
+ */
19
+ NetworkType?: "IPV4" | "IPV6";
16
20
  /**
17
21
  * The list of security group IDs associated with the Elastic Network Interface (ENI) created in subnets.
18
22
  */
@@ -79,6 +83,10 @@ export type PCSClusterAttributes = {
79
83
  * The list of endpoints available for interaction with the scheduler.
80
84
  */
81
85
  Endpoints: {
86
+ /**
87
+ * The endpoint's IPv6 address.
88
+ */
89
+ Ipv6Address: string;
82
90
  /**
83
91
  * The endpoint's connection port number.
84
92
  */
@@ -157,6 +165,10 @@ export type AuthKey = {
157
165
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-endpoint.html}
158
166
  */
159
167
  export type Endpoint = {
168
+ /**
169
+ * The endpoint's IPv6 address.
170
+ */
171
+ Ipv6Address?: string;
160
172
  /**
161
173
  * The endpoint's connection port number.
162
174
  */
@@ -54,7 +54,9 @@ export type DeletionProtection = {
54
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-verifiedpermissions-policystore-schemadefinition.html}
55
55
  */
56
56
  export type SchemaDefinition = {
57
- CedarJson?: string;
57
+ CedarJson: string;
58
+ } | {
59
+ CedarFormat: string;
58
60
  };
59
61
  /**
60
62
  * Type definition for `AWS::VerifiedPermissions::PolicyStore.Tag`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.393",
3
+ "version": "0.1.394",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },