@awboost/cfn-resource-types 0.1.532 → 0.1.533

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.
@@ -16,7 +16,7 @@ export type BedrockAgentCoreMemoryProperties = {
16
16
  EncryptionKeyArn?: string;
17
17
  /**
18
18
  * Duration in days until memory events expire
19
- * @min `7`
19
+ * @min `3`
20
20
  * @max `365`
21
21
  */
22
22
  EventExpiryDuration: number;
@@ -138,6 +138,45 @@ export type AuthorizerConfiguration = {
138
138
  */
139
139
  CustomJWTAuthorizer?: CustomJWTAuthorizerConfiguration;
140
140
  };
141
+ /**
142
+ * Type definition for `AWS::BedrockAgentCore::Runtime.AuthorizingClaimMatchValueType`.
143
+ * The value or values in the custom claim to match and relationship of match
144
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-authorizingclaimmatchvaluetype.html}
145
+ */
146
+ export type AuthorizingClaimMatchValueType = {
147
+ /**
148
+ * The relationship between the claim field value and the value or values being matched
149
+ */
150
+ ClaimMatchOperator: ClaimMatchOperator;
151
+ /**
152
+ * The value or values in the custom claim to match for
153
+ */
154
+ ClaimMatchValue: ClaimMatchValueType;
155
+ };
156
+ /**
157
+ * Type definition for `AWS::BedrockAgentCore::Runtime.ClaimMatchOperator`.
158
+ * The relationship between the claim field value and the value or values being matched
159
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-claimmatchoperator.html}
160
+ */
161
+ export type ClaimMatchOperator = "EQUALS" | "CONTAINS" | "CONTAINS_ANY";
162
+ /**
163
+ * Type definition for `AWS::BedrockAgentCore::Runtime.ClaimMatchValueType`.
164
+ * The value or values in the custom claim to match for
165
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-claimmatchvaluetype.html}
166
+ */
167
+ export type ClaimMatchValueType = {
168
+ /**
169
+ * The string value to match for
170
+ * @pattern `[A-Za-z0-9_.-]+`
171
+ */
172
+ MatchValueString?: string;
173
+ /**
174
+ * The list of strings to check for a match
175
+ * @minLength `1`
176
+ * @maxLength `255`
177
+ */
178
+ MatchValueStringList?: string[];
179
+ };
141
180
  /**
142
181
  * Type definition for `AWS::BedrockAgentCore::Runtime.Code`.
143
182
  * Object represents source code from zip file
@@ -183,6 +222,26 @@ export type ContainerConfiguration = {
183
222
  */
184
223
  ContainerUri: string;
185
224
  };
225
+ /**
226
+ * Type definition for `AWS::BedrockAgentCore::Runtime.CustomClaimValidationType`.
227
+ * Required custom claim
228
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-customclaimvalidationtype.html}
229
+ */
230
+ export type CustomClaimValidationType = {
231
+ /**
232
+ * The value or values in the custom claim to match and relationship of match
233
+ */
234
+ AuthorizingClaimMatchValue: AuthorizingClaimMatchValueType;
235
+ /**
236
+ * The name of the custom claim to validate
237
+ * @pattern `[A-Za-z0-9_.-:]+`
238
+ */
239
+ InboundTokenClaimName: string;
240
+ /**
241
+ * Token claim data type
242
+ */
243
+ InboundTokenClaimValueType: InboundTokenClaimValueType;
244
+ };
186
245
  /**
187
246
  * Type definition for `AWS::BedrockAgentCore::Runtime.CustomJWTAuthorizerConfiguration`.
188
247
  * Configuration for custom JWT authorizer
@@ -199,6 +258,16 @@ export type CustomJWTAuthorizerConfiguration = {
199
258
  * @minLength `1`
200
259
  */
201
260
  AllowedClients?: string[];
261
+ /**
262
+ * List of allowed scopes
263
+ * @minLength `1`
264
+ */
265
+ AllowedScopes?: string[];
266
+ /**
267
+ * List of required custom claims
268
+ * @minLength `1`
269
+ */
270
+ CustomClaims?: CustomClaimValidationType[];
202
271
  /**
203
272
  * OpenID Connect discovery URL
204
273
  * @pattern `^.+/\.well-known/openid-configuration$`
@@ -211,6 +280,12 @@ export type CustomJWTAuthorizerConfiguration = {
211
280
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-environmentvariablesmap.html}
212
281
  */
213
282
  export type EnvironmentVariablesMap = Record<string, string>;
283
+ /**
284
+ * Type definition for `AWS::BedrockAgentCore::Runtime.InboundTokenClaimValueType`.
285
+ * Token claim data type
286
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-runtime-inboundtokenclaimvaluetype.html}
287
+ */
288
+ export type InboundTokenClaimValueType = "STRING" | "STRING_ARRAY";
214
289
  /**
215
290
  * Type definition for `AWS::BedrockAgentCore::Runtime.LifecycleConfiguration`.
216
291
  * Configuration for managing the lifecycle of runtime sessions and resources
@@ -13,17 +13,7 @@ export type EC2NatGatewayProperties = {
13
13
  * [Public NAT gateway only] The allocation ID of the Elastic IP address that's associated with the NAT gateway. This property is required for a public NAT gateway and cannot be specified with a private NAT gateway.
14
14
  */
15
15
  AllocationId?: string;
16
- /**
17
- * Indicates whether this is a zonal (single-AZ) or regional (multi-AZ) NAT gateway.
18
- A zonal NAT gateway is a NAT Gateway that provides redundancy and scalability within a single availability zone. A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
19
- For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
20
- */
21
16
  AvailabilityMode?: string;
22
- /**
23
- * For regional NAT gateways only: Specifies which Availability Zones you want the NAT gateway to support and the Elastic IP addresses (EIPs) to use in each AZ. The regional NAT gateway uses these EIPs to handle outbound NAT traffic from their respective AZs. If not specified, the NAT gateway will automatically expand to new AZs and associate EIPs upon detection of an elastic network interface. If you specify this parameter, auto-expansion is disabled and you must manually manage AZ coverage.
24
- A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
25
- For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
26
- */
27
17
  AvailabilityZoneAddresses?: AvailabilityZoneAddress[];
28
18
  /**
29
19
  * Indicates whether the NAT gateway supports public or private connectivity. The default is public connectivity.
@@ -78,25 +68,11 @@ export type EC2NatGatewayAttributes = {
78
68
  };
79
69
  /**
80
70
  * Type definition for `AWS::EC2::NatGateway.AvailabilityZoneAddress`.
81
- * For regional NAT gateways only: The configuration specifying which Elastic IP address (EIP) to use for handling outbound NAT traffic from a specific Availability Zone.
82
- A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
83
- For more information, see [Regional NAT gateways for automatic multi-AZ expansion](https://docs.aws.amazon.com/vpc/latest/userguide/nat-gateways-regional.html) in the *Amazon VPC User Guide*.
84
71
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-natgateway-availabilityzoneaddress.html}
85
72
  */
86
73
  export type AvailabilityZoneAddress = {
87
- /**
88
- * The allocation IDs of the Elastic IP addresses (EIPs) to be used for handling outbound NAT traffic in this specific Availability Zone.
89
- */
90
74
  AllocationIds: string[];
91
- /**
92
- * For regional NAT gateways only: The Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ.
93
- A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
94
- */
95
75
  AvailabilityZone?: string;
96
- /**
97
- * For regional NAT gateways only: The ID of the Availability Zone where this specific NAT gateway configuration will be active. Each AZ in a regional NAT gateway has its own configuration to handle outbound NAT traffic from that AZ. Use this instead of AvailabilityZone for consistent identification of AZs across AWS Regions.
98
- A regional NAT gateway is a single NAT Gateway that works across multiple availability zones (AZs) in your VPC, providing redundancy, scalability and availability across all the AZs in a Region.
99
- */
100
76
  AvailabilityZoneId?: string;
101
77
  };
102
78
  /**
@@ -47,10 +47,19 @@ export type IoTCommandProperties = {
47
47
  * The payload associated with the command.
48
48
  */
49
49
  Payload?: CommandPayload;
50
+ /**
51
+ * The payload template associated with the command.
52
+ * @maxLength `32768`
53
+ */
54
+ PayloadTemplate?: string;
50
55
  /**
51
56
  * A flag indicating whether the command is pending deletion.
52
57
  */
53
58
  PendingDeletion?: boolean;
59
+ /**
60
+ * The command preprocessor configuration.
61
+ */
62
+ Preprocessor?: CommandPreprocessor;
54
63
  /**
55
64
  * The customer role associated with the command.
56
65
  * @minLength `20`
@@ -72,6 +81,13 @@ export type IoTCommandAttributes = {
72
81
  */
73
82
  CommandArn: string;
74
83
  };
84
+ /**
85
+ * Type definition for `AWS::IoT::Command.AwsJsonSubstitutionCommandPreprocessorConfig`.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-awsjsonsubstitutioncommandpreprocessorconfig.html}
87
+ */
88
+ export type AwsJsonSubstitutionCommandPreprocessorConfig = {
89
+ OutputFormat: OutputFormat;
90
+ };
75
91
  /**
76
92
  * Type definition for `AWS::IoT::Command.CommandParameter`.
77
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparameter.html}
@@ -88,8 +104,18 @@ export type CommandParameter = {
88
104
  * @pattern `^[.$a-zA-Z0-9_-]+$`
89
105
  */
90
106
  Name: string;
107
+ Type?: CommandParameterType;
91
108
  Value?: CommandParameterValue;
109
+ /**
110
+ * @minLength `1`
111
+ */
112
+ ValueConditions?: CommandParameterValueCondition[];
92
113
  };
114
+ /**
115
+ * Type definition for `AWS::IoT::Command.CommandParameterType`.
116
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametertype.html}
117
+ */
118
+ export type CommandParameterType = "STRING" | "INTEGER" | "DOUBLE" | "LONG" | "UNSIGNEDLONG" | "BOOLEAN" | "BINARY";
93
119
  /**
94
120
  * Type definition for `AWS::IoT::Command.CommandParameterValue`.
95
121
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervalue.html}
@@ -118,6 +144,52 @@ export type CommandParameterValue = {
118
144
  */
119
145
  UL?: string;
120
146
  };
147
+ /**
148
+ * Type definition for `AWS::IoT::Command.CommandParameterValueComparisonOperand`.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluecomparisonoperand.html}
150
+ */
151
+ export type CommandParameterValueComparisonOperand = {
152
+ Number?: string;
153
+ NumberRange?: CommandParameterValueNumberRange;
154
+ /**
155
+ * @minLength `1`
156
+ * @maxLength `10`
157
+ */
158
+ Numbers?: string[];
159
+ String?: string;
160
+ /**
161
+ * @minLength `1`
162
+ * @maxLength `10`
163
+ */
164
+ Strings?: string[];
165
+ };
166
+ /**
167
+ * Type definition for `AWS::IoT::Command.CommandParameterValueComparisonOperator`.
168
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluecomparisonoperator.html}
169
+ */
170
+ export type CommandParameterValueComparisonOperator = "EQUALS" | "NOT_EQUALS" | "LESS_THAN" | "LESS_THAN_EQUALS" | "GREATER_THAN" | "GREATER_THAN_EQUALS" | "IN_SET" | "NOT_IN_SET" | "IN_RANGE" | "NOT_IN_RANGE";
171
+ /**
172
+ * Type definition for `AWS::IoT::Command.CommandParameterValueCondition`.
173
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluecondition.html}
174
+ */
175
+ export type CommandParameterValueCondition = {
176
+ ComparisonOperator: CommandParameterValueComparisonOperator;
177
+ Operand: CommandParameterValueComparisonOperand;
178
+ };
179
+ /**
180
+ * Type definition for `AWS::IoT::Command.CommandParameterValueNumberRange`.
181
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandparametervaluenumberrange.html}
182
+ */
183
+ export type CommandParameterValueNumberRange = {
184
+ /**
185
+ * @minLength `1`
186
+ */
187
+ Max: string;
188
+ /**
189
+ * @minLength `1`
190
+ */
191
+ Min: string;
192
+ };
121
193
  /**
122
194
  * Type definition for `AWS::IoT::Command.CommandPayload`.
123
195
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandpayload.html}
@@ -129,6 +201,18 @@ export type CommandPayload = {
129
201
  */
130
202
  ContentType?: string;
131
203
  };
204
+ /**
205
+ * Type definition for `AWS::IoT::Command.CommandPreprocessor`.
206
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-commandpreprocessor.html}
207
+ */
208
+ export type CommandPreprocessor = {
209
+ AwsJsonSubstitution?: AwsJsonSubstitutionCommandPreprocessorConfig;
210
+ };
211
+ /**
212
+ * Type definition for `AWS::IoT::Command.OutputFormat`.
213
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-command-outputformat.html}
214
+ */
215
+ export type OutputFormat = "JSON" | "CBOR";
132
216
  /**
133
217
  * Type definition for `AWS::IoT::Command.Tag`.
134
218
  * A key-value pair to associate with a resource.
@@ -0,0 +1,131 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::Lightsail::DatabaseSnapshot
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-databasesnapshot.html}
6
+ */
7
+ export type LightsailDatabaseSnapshotProperties = {
8
+ /**
9
+ * The name of the database on which to base your new snapshot.
10
+ * @pattern `^\w[\w\-]*\w$`
11
+ */
12
+ RelationalDatabaseName: string;
13
+ /**
14
+ * The name for your new database snapshot.
15
+ * @minLength `2`
16
+ * @maxLength `255`
17
+ * @pattern `^\w[\w\-]*\w$`
18
+ */
19
+ RelationalDatabaseSnapshotName: string;
20
+ /**
21
+ * An array of key-value pairs to apply to this resource.
22
+ * @maxLength `50`
23
+ */
24
+ Tags?: Tag[];
25
+ };
26
+ /**
27
+ * Attribute type definition for `AWS::Lightsail::DatabaseSnapshot`.
28
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-databasesnapshot.html#aws-resource-lightsail-databasesnapshot-return-values}
29
+ */
30
+ export type LightsailDatabaseSnapshotAttributes = {
31
+ /**
32
+ * The Amazon Resource Name (ARN) of the database snapshot.
33
+ * @pattern `.*\S.*`
34
+ */
35
+ Arn: string;
36
+ /**
37
+ * The timestamp when the database snapshot was created.
38
+ */
39
+ CreatedAt: string;
40
+ /**
41
+ * The software of the database snapshot (for example, MySQL).
42
+ * @pattern `.*\S.*`
43
+ */
44
+ Engine: string;
45
+ /**
46
+ * The database engine version for the database snapshot (for example, 5.7.23).
47
+ * @pattern `.*\S.*`
48
+ */
49
+ EngineVersion: string;
50
+ /**
51
+ * The Amazon Resource Name (ARN) of the database from which the database snapshot was created.
52
+ * @pattern `.*\S.*`
53
+ */
54
+ FromRelationalDatabaseArn: string;
55
+ /**
56
+ * The blueprint ID of the database from which the database snapshot was created. A blueprint describes the major engine version of a database.
57
+ */
58
+ FromRelationalDatabaseBlueprintId: string;
59
+ /**
60
+ * The bundle ID of the database from which the database snapshot was created.
61
+ */
62
+ FromRelationalDatabaseBundleId: string;
63
+ /**
64
+ * The name of the source database from which the database snapshot was created.
65
+ * @pattern `.*\S.*`
66
+ */
67
+ FromRelationalDatabaseName: string;
68
+ /**
69
+ * The Region name and Availability Zone where the database snapshot is located.
70
+ */
71
+ Location: {
72
+ /**
73
+ * The Availability Zone where the database snapshot was created.
74
+ */
75
+ AvailabilityZone: string;
76
+ /**
77
+ * The AWS Region where the database snapshot was created.
78
+ */
79
+ RegionName: string;
80
+ };
81
+ /**
82
+ * The name of the database snapshot.
83
+ * @pattern `^\w[\w\-]*\w$`
84
+ */
85
+ Name: string;
86
+ /**
87
+ * The Lightsail resource type.
88
+ */
89
+ ResourceType: "RelationalDatabaseSnapshot";
90
+ /**
91
+ * The size of the disk in GB (for example, 32) for the database snapshot.
92
+ */
93
+ SizeInGb: number;
94
+ /**
95
+ * The state of the database snapshot.
96
+ * @pattern `.*\S.*`
97
+ */
98
+ State: string;
99
+ /**
100
+ * The support code for the database snapshot. Include this code in your email to support when you have questions about a database snapshot in Lightsail. This code enables our support team to look up your Lightsail information more easily.
101
+ */
102
+ SupportCode: string;
103
+ };
104
+ /**
105
+ * Type definition for `AWS::Lightsail::DatabaseSnapshot.Tag`.
106
+ * A key-value pair to associate with a resource.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lightsail-databasesnapshot-tag.html}
108
+ */
109
+ export type Tag = {
110
+ /**
111
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
112
+ * @minLength `1`
113
+ * @maxLength `128`
114
+ */
115
+ Key: string;
116
+ /**
117
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
118
+ * @minLength `0`
119
+ * @maxLength `256`
120
+ */
121
+ Value?: string;
122
+ };
123
+ /**
124
+ * Resource Type definition for AWS::Lightsail::DatabaseSnapshot
125
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-databasesnapshot.html}
126
+ */
127
+ export declare class LightsailDatabaseSnapshot extends $Resource<"AWS::Lightsail::DatabaseSnapshot", LightsailDatabaseSnapshotProperties, LightsailDatabaseSnapshotAttributes> {
128
+ static readonly Type = "AWS::Lightsail::DatabaseSnapshot";
129
+ constructor(logicalId: string, properties: LightsailDatabaseSnapshotProperties, options?: $ResourceOptions);
130
+ }
131
+ //# sourceMappingURL=AWS-Lightsail-DatabaseSnapshot.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Lightsail::DatabaseSnapshot
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-databasesnapshot.html}
5
+ */
6
+ export class LightsailDatabaseSnapshot extends $Resource {
7
+ static Type = "AWS::Lightsail::DatabaseSnapshot";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, LightsailDatabaseSnapshot.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Lightsail-DatabaseSnapshot.js.map
@@ -5,6 +5,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-configurationset.html}
6
6
  */
7
7
  export type SESConfigurationSetProperties = {
8
+ /**
9
+ * An object that defines a MailManager archive that is used to preserve emails that you send using the configuration set.
10
+ */
11
+ ArchivingOptions?: ArchivingOptions;
8
12
  /**
9
13
  * An object that defines the dedicated IP pool that is used to send emails that you send using the configuration set.
10
14
  */
@@ -41,6 +45,17 @@ export type SESConfigurationSetProperties = {
41
45
  */
42
46
  VdmOptions?: VdmOptions;
43
47
  };
48
+ /**
49
+ * Type definition for `AWS::SES::ConfigurationSet.ArchivingOptions`.
50
+ * An object that defines a MailManager archive that is used to preserve emails that you send using the configuration set.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-archivingoptions.html}
52
+ */
53
+ export type ArchivingOptions = {
54
+ /**
55
+ * The ARN of the MailManager archive to associate with the configuration set.
56
+ */
57
+ ArchiveArn?: string;
58
+ };
44
59
  /**
45
60
  * Type definition for `AWS::SES::ConfigurationSet.DashboardOptions`.
46
61
  * Preferences regarding the Dashboard feature.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.532",
3
+ "version": "0.1.533",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },