@awboost/cfn-resource-types 0.1.312 → 0.1.314

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.
@@ -109,12 +109,19 @@ export type BedrockGuardrailAttributes = {
109
109
  */
110
110
  Version: string;
111
111
  };
112
+ /**
113
+ * Type definition for `AWS::Bedrock::Guardrail.ContentFilterAction`.
114
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfilteraction.html}
115
+ */
116
+ export type ContentFilterAction = "BLOCK" | "NONE";
112
117
  /**
113
118
  * Type definition for `AWS::Bedrock::Guardrail.ContentFilterConfig`.
114
119
  * Content filter config in content policy.
115
120
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contentfilterconfig.html}
116
121
  */
117
122
  export type ContentFilterConfig = {
123
+ InputAction?: ContentFilterAction;
124
+ InputEnabled?: boolean;
118
125
  /**
119
126
  * List of modalities
120
127
  * @minLength `1`
@@ -124,6 +131,8 @@ export type ContentFilterConfig = {
124
131
  * Strength for filters
125
132
  */
126
133
  InputStrength: FilterStrength;
134
+ OutputAction?: ContentFilterAction;
135
+ OutputEnabled?: boolean;
127
136
  /**
128
137
  * List of modalities
129
138
  * @minLength `1`
@@ -157,12 +166,19 @@ export type ContentPolicyConfig = {
157
166
  */
158
167
  FiltersConfig: ContentFilterConfig[];
159
168
  };
169
+ /**
170
+ * Type definition for `AWS::Bedrock::Guardrail.ContextualGroundingAction`.
171
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contextualgroundingaction.html}
172
+ */
173
+ export type ContextualGroundingAction = "BLOCK" | "NONE";
160
174
  /**
161
175
  * Type definition for `AWS::Bedrock::Guardrail.ContextualGroundingFilterConfig`.
162
176
  * A config for grounding filter.
163
177
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-contextualgroundingfilterconfig.html}
164
178
  */
165
179
  export type ContextualGroundingFilterConfig = {
180
+ Action?: ContextualGroundingAction;
181
+ Enabled?: boolean;
166
182
  /**
167
183
  * The threshold for this filter.
168
184
  * @min `0`
@@ -209,6 +225,10 @@ export type GuardrailStatus = "CREATING" | "UPDATING" | "VERSIONING" | "READY" |
209
225
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-managedwordsconfig.html}
210
226
  */
211
227
  export type ManagedWordsConfig = {
228
+ InputAction?: WordAction;
229
+ InputEnabled?: boolean;
230
+ OutputAction?: WordAction;
231
+ OutputEnabled?: boolean;
212
232
  /**
213
233
  * Options for managed words.
214
234
  */
@@ -236,6 +256,16 @@ export type PiiEntityConfig = {
236
256
  * Options for sensitive information action.
237
257
  */
238
258
  Action: SensitiveInformationAction;
259
+ /**
260
+ * Options for sensitive information action.
261
+ */
262
+ InputAction?: SensitiveInformationAction;
263
+ InputEnabled?: boolean;
264
+ /**
265
+ * Options for sensitive information action.
266
+ */
267
+ OutputAction?: SensitiveInformationAction;
268
+ OutputEnabled?: boolean;
239
269
  /**
240
270
  * The currently supported PII entities
241
271
  */
@@ -263,12 +293,22 @@ export type RegexConfig = {
263
293
  * @maxLength `1000`
264
294
  */
265
295
  Description?: string;
296
+ /**
297
+ * Options for sensitive information action.
298
+ */
299
+ InputAction?: SensitiveInformationAction;
300
+ InputEnabled?: boolean;
266
301
  /**
267
302
  * The regex name.
268
303
  * @minLength `1`
269
304
  * @maxLength `100`
270
305
  */
271
306
  Name: string;
307
+ /**
308
+ * Options for sensitive information action.
309
+ */
310
+ OutputAction?: SensitiveInformationAction;
311
+ OutputEnabled?: boolean;
272
312
  /**
273
313
  * The regex pattern.
274
314
  * @minLength `1`
@@ -280,7 +320,7 @@ export type RegexConfig = {
280
320
  * Options for sensitive information action.
281
321
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-sensitiveinformationaction.html}
282
322
  */
283
- export type SensitiveInformationAction = "BLOCK" | "ANONYMIZE";
323
+ export type SensitiveInformationAction = "BLOCK" | "ANONYMIZE" | "NONE";
284
324
  /**
285
325
  * Type definition for `AWS::Bedrock::Guardrail.SensitiveInformationPolicyConfig`.
286
326
  * Sensitive information policy config for a guardrail.
@@ -319,6 +359,11 @@ export type Tag = {
319
359
  */
320
360
  Value: string;
321
361
  };
362
+ /**
363
+ * Type definition for `AWS::Bedrock::Guardrail.TopicAction`.
364
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-topicaction.html}
365
+ */
366
+ export type TopicAction = "BLOCK" | "NONE";
322
367
  /**
323
368
  * Type definition for `AWS::Bedrock::Guardrail.TopicConfig`.
324
369
  * Topic config in topic policy.
@@ -336,6 +381,8 @@ export type TopicConfig = {
336
381
  * @minLength `0`
337
382
  */
338
383
  Examples?: string[];
384
+ InputAction?: TopicAction;
385
+ InputEnabled?: boolean;
339
386
  /**
340
387
  * Name of topic in topic policy
341
388
  * @minLength `1`
@@ -343,6 +390,8 @@ export type TopicConfig = {
343
390
  * @pattern `^[0-9a-zA-Z-_ !?.]+$`
344
391
  */
345
392
  Name: string;
393
+ OutputAction?: TopicAction;
394
+ OutputEnabled?: boolean;
346
395
  /**
347
396
  * Type of topic in a policy
348
397
  */
@@ -366,12 +415,21 @@ export type TopicPolicyConfig = {
366
415
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-topictype.html}
367
416
  */
368
417
  export type TopicType = "DENY";
418
+ /**
419
+ * Type definition for `AWS::Bedrock::Guardrail.WordAction`.
420
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-wordaction.html}
421
+ */
422
+ export type WordAction = "BLOCK" | "NONE";
369
423
  /**
370
424
  * Type definition for `AWS::Bedrock::Guardrail.WordConfig`.
371
425
  * A custom word config.
372
426
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-guardrail-wordconfig.html}
373
427
  */
374
428
  export type WordConfig = {
429
+ InputAction?: WordAction;
430
+ InputEnabled?: boolean;
431
+ OutputAction?: WordAction;
432
+ OutputEnabled?: boolean;
375
433
  /**
376
434
  * The custom word text.
377
435
  * @minLength `1`
@@ -215,6 +215,12 @@ export type MongoDbAtlasConfiguration = {
215
215
  * Contains the names of the fields to which to map information about the vector store.
216
216
  */
217
217
  FieldMapping: MongoDbAtlasFieldMapping;
218
+ /**
219
+ * Name of a MongoDB Atlas text index.
220
+ * @maxLength `2048`
221
+ * @pattern `^.*$`
222
+ */
223
+ TextIndexName?: string;
218
224
  /**
219
225
  * Name of a MongoDB Atlas index.
220
226
  * @maxLength `2048`
@@ -562,6 +568,12 @@ export type RdsConfiguration = {
562
568
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-rdsfieldmapping.html}
563
569
  */
564
570
  export type RdsFieldMapping = {
571
+ /**
572
+ * The name of the field in which Amazon Bedrock stores custom metadata about the vector store.
573
+ * @maxLength `63`
574
+ * @pattern `^[a-zA-Z0-9_\-]+$`
575
+ */
576
+ CustomMetadataField?: string;
565
577
  /**
566
578
  * The name of the field in which Amazon Bedrock stores metadata about the vector store.
567
579
  * @maxLength `63`
@@ -30,7 +30,7 @@ export type ReplicationSpecification = {
30
30
  * @minLength `2`
31
31
  * @maxLength `6`
32
32
  */
33
- RegionList?: ("ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")[];
33
+ RegionList?: ("af-south-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")[];
34
34
  ReplicationStrategy?: "SINGLE_REGION" | "MULTI_REGION";
35
35
  };
36
36
  /**
@@ -105,6 +105,13 @@ export type DomainStatus = "CREATING" | "AVAILABLE" | "CREATION_FAILED" | "DELET
105
105
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-domain-singlesignon.html}
106
106
  */
107
107
  export type SingleSignOn = {
108
+ /**
109
+ * The ARN of the AWS Identity Center instance.
110
+ * @minLength `10`
111
+ * @maxLength `1224`
112
+ * @pattern `arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}`
113
+ */
114
+ IdcInstanceArn?: string;
108
115
  /**
109
116
  * The type of single sign-on in Amazon DataZone.
110
117
  */
@@ -341,7 +341,7 @@ export type PointInTimeRecoverySpecification = {
341
341
  export type Projection = {
342
342
  /**
343
343
  * Represents the non-key attribute names which will be projected into the index.
344
- For local secondary indexes, the total count of ``NonKeyAttributes`` summed across all of the local secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total.
344
+ For global and local secondary indexes, the total count of ``NonKeyAttributes`` summed across all of the secondary indexes, must not exceed 100. If you project the same attribute into two different indexes, this counts as two distinct attributes when determining the total. This limit only applies when you specify the ProjectionType of ``INCLUDE``. You still can specify the ProjectionType of ``ALL`` to project all attributes from the source table, even if the table has more than 100 attributes.
345
345
  */
346
346
  NonKeyAttributes?: string[];
347
347
  /**
@@ -273,7 +273,7 @@ export type Ebs = {
273
273
  };
274
274
  /**
275
275
  * Type definition for `AWS::EC2::LaunchTemplate.ElasticGpuSpecification`.
276
- * Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.
276
+ * Amazon Elastic Graphics reached end of life on January 8, 2024.
277
277
  Specifies a specification for an Elastic GPU for an Amazon EC2 launch template.
278
278
  ``ElasticGpuSpecification`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
279
279
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-elasticgpuspecification.html}
@@ -427,7 +427,6 @@ export type InstanceRequirements = {
427
427
  * The accelerator types that must be on the instance type.
428
428
  + For instance types with FPGA accelerators, specify ``fpga``.
429
429
  + For instance types with GPU accelerators, specify ``gpu``.
430
- + For instance types with Inference accelerators, specify ``inference``.
431
430
 
432
431
  Default: Any accelerator type
433
432
  */
@@ -643,14 +642,13 @@ export type LaunchTemplateData = {
643
642
  EbsOptimized?: boolean;
644
643
  /**
645
644
  * Deprecated.
646
- Amazon Elastic Graphics reached end of life on January 8, 2024. For workloads that require graphics acceleration, we recommend that you use Amazon EC2 G4ad, G4dn, or G5 instances.
645
+ Amazon Elastic Graphics reached end of life on January 8, 2024.
647
646
  */
648
647
  ElasticGpuSpecifications?: ElasticGpuSpecification[];
649
648
  /**
650
649
  * Amazon Elastic Inference is no longer available.
651
650
  An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
652
651
  You cannot specify accelerators from different generations in the same request.
653
- Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
654
652
  */
655
653
  ElasticInferenceAccelerators?: LaunchTemplateElasticInferenceAccelerator[];
656
654
  /**
@@ -774,7 +772,8 @@ export type LaunchTemplateData = {
774
772
  };
775
773
  /**
776
774
  * Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateElasticInferenceAccelerator`.
777
- * Specifies an elastic inference accelerator.
775
+ * Amazon Elastic Inference is no longer available.
776
+ Specifies an elastic inference accelerator.
778
777
  ``LaunchTemplateElasticInferenceAccelerator`` is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
779
778
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplateelasticinferenceaccelerator.html}
780
779
  */
@@ -954,7 +953,7 @@ export type NetworkInterface = {
954
953
  */
955
954
  Description?: string;
956
955
  /**
957
- * The device index for the network interface attachment. If the network interface is of type ``interface``, you must specify a device index.
956
+ * The device index for the network interface attachment. The primary network interface has a device index of 0. If the network interface is of type ``interface``, you must specify a device index.
958
957
  If you create a launch template that includes secondary network interfaces but no primary network interface, and you specify it using the ``LaunchTemplate`` property of ``AWS::EC2::Instance``, then you must include a primary network interface using the ``NetworkInterfaces`` property of ``AWS::EC2::Instance``.
959
958
  */
960
959
  DeviceIndex?: number;
@@ -1043,12 +1042,14 @@ export type NetworkInterfaceCount = {
1043
1042
  };
1044
1043
  /**
1045
1044
  * Type definition for `AWS::EC2::LaunchTemplate.NetworkPerformanceOptions`.
1045
+ * Contains settings for the network performance options for the instance.
1046
1046
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-networkperformanceoptions.html}
1047
1047
  */
1048
1048
  export type NetworkPerformanceOptions = {
1049
1049
  /**
1050
- * Specifies the performance options of your instance or sets it to default.
1051
- */
1050
+ * Specify the bandwidth weighting option to boost the associated type of baseline bandwidth, as follows:
1051
+ + default This option uses the standard bandwidth configuration for your instance type. + vpc-1 This option boosts your networking baseline bandwidth and reduces your EBS baseline bandwidth. + ebs-1 This option boosts your EBS baseline bandwidth and reduces your networking baseline bandwidth.
1052
+ */
1052
1053
  BandwidthWeighting?: string;
1053
1054
  };
1054
1055
  /**
@@ -18,6 +18,11 @@ export type EventsConnectionProperties = {
18
18
  InvocationConnectivityParameters?: {
19
19
  ResourceParameters: ResourceParameters;
20
20
  };
21
+ /**
22
+ * @maxLength `2048`
23
+ * @pattern `^[a-zA-Z0-9_\-/:]*$`
24
+ */
25
+ KmsKeyIdentifier?: string;
21
26
  /**
22
27
  * Name of the connection.
23
28
  * @minLength `1`
@@ -93,9 +93,8 @@ export type Tag = {
93
93
  */
94
94
  Key: string;
95
95
  /**
96
- * The value associated with this tag. For example, tags with a key name of ``Department`` could have values such as ``Human Resources``, ``Accounting``, and ``Support``. Tags with a key name of ``Cost Center`` might have values that consist of the number associated with the different cost centers in your company. Typically, many resources have tags with the same key name but with different values.
97
- AWS always interprets the tag ``Value`` as a single string. If you need to store an array, you can store comma-separated values in the string. However, you must interpret the value in your code.
98
- */
96
+ * The value associated with this tag. For example, tags with a key name of ``Department`` could have values such as ``Human Resources``, ``Accounting``, and ``Support``. Tags with a key name of ``Cost Center`` might have values that consist of the number associated with the different cost centers in your company. Typically, many resources have tags with the same key name but with different values.
97
+ */
99
98
  Value: string;
100
99
  };
101
100
  /**
@@ -31,8 +31,9 @@ export type LambdaEventSourceMappingProperties = {
31
31
  */
32
32
  BatchSize?: number;
33
33
  /**
34
- * (Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry. The default value is false.
35
- */
34
+ * (Kinesis and DynamoDB Streams only) If the function returns an error, split the batch in two and retry. The default value is false.
35
+ When using ``BisectBatchOnFunctionError``, check the ``BatchSize`` parameter in the ``OnFailure`` destination message's metadata. The ``BatchSize`` could be greater than 1 since LAM consolidates failed messages metadata when writing to the ``OnFailure`` destination.
36
+ */
36
37
  BisectBatchOnFunctionError?: boolean;
37
38
  /**
38
39
  * (Kinesis, DynamoDB Streams, Amazon MSK, and self-managed Apache Kafka event sources only) A configuration object that specifies the destination of an event after Lambda processes it.
@@ -22,7 +22,7 @@ export type LaunchWizardDeploymentProperties = {
22
22
  /**
23
23
  * LaunchWizard deployment specifications
24
24
  */
25
- Specifications: DeploymentSpecifications;
25
+ Specifications?: DeploymentSpecifications;
26
26
  /**
27
27
  * Tags for LaunchWizard deployment
28
28
  */
@@ -1,36 +1,51 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::Neptune::DBClusterParameterGroup
4
+ * The AWS::Neptune::DBClusterParameterGroup resource creates a new Amazon Neptune DB cluster parameter group
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html}
6
6
  */
7
7
  export type NeptuneDBClusterParameterGroupProperties = {
8
+ /**
9
+ * Provides the customer-specified description for this DB cluster parameter group.
10
+ */
8
11
  Description: string;
12
+ /**
13
+ * Must be neptune1 for engine versions prior to 1.2.0.0, or neptune1.2 for engine version 1.2.0.0 and higher.
14
+ */
9
15
  Family: string;
16
+ /**
17
+ * Provides the name of the DB cluster parameter group.
18
+ */
10
19
  Name?: string;
20
+ /**
21
+ * An array of parameters to be modified. A maximum of 20 parameters can be modified in a single request.
22
+ */
11
23
  Parameters: Record<string, any>;
24
+ /**
25
+ * The list of tags for the cluster parameter group.
26
+ */
12
27
  Tags?: Tag[];
13
28
  };
14
- /**
15
- * Attribute type definition for `AWS::Neptune::DBClusterParameterGroup`.
16
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html#aws-resource-neptune-dbclusterparametergroup-return-values}
17
- */
18
- export type NeptuneDBClusterParameterGroupAttributes = {
19
- Id: string;
20
- };
21
29
  /**
22
30
  * Type definition for `AWS::Neptune::DBClusterParameterGroup.Tag`.
31
+ * A key-value pair to associate with a resource.
23
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbclusterparametergroup-tag.html}
24
33
  */
25
34
  export type Tag = {
35
+ /**
36
+ * 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 -.
37
+ */
26
38
  Key: string;
39
+ /**
40
+ * 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 -.
41
+ */
27
42
  Value: string;
28
43
  };
29
44
  /**
30
- * Resource Type definition for AWS::Neptune::DBClusterParameterGroup
45
+ * The AWS::Neptune::DBClusterParameterGroup resource creates a new Amazon Neptune DB cluster parameter group
31
46
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html}
32
47
  */
33
- export declare class NeptuneDBClusterParameterGroup extends $Resource<"AWS::Neptune::DBClusterParameterGroup", NeptuneDBClusterParameterGroupProperties, NeptuneDBClusterParameterGroupAttributes> {
48
+ export declare class NeptuneDBClusterParameterGroup extends $Resource<"AWS::Neptune::DBClusterParameterGroup", NeptuneDBClusterParameterGroupProperties, Record<string, never>> {
34
49
  static readonly Type = "AWS::Neptune::DBClusterParameterGroup";
35
50
  constructor(logicalId: string, properties: NeptuneDBClusterParameterGroupProperties, options?: $ResourceOptions);
36
51
  }
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::Neptune::DBClusterParameterGroup
3
+ * The AWS::Neptune::DBClusterParameterGroup resource creates a new Amazon Neptune DB cluster parameter group
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbclusterparametergroup.html}
5
5
  */
6
6
  export class NeptuneDBClusterParameterGroup extends $Resource {
@@ -1,36 +1,55 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::Neptune::DBParameterGroup
4
+ * AWS::Neptune::DBParameterGroup creates a new DB parameter group. This type can be declared in a template and referenced in the DBParameterGroupName parameter of AWS::Neptune::DBInstance
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html}
6
6
  */
7
7
  export type NeptuneDBParameterGroupProperties = {
8
+ /**
9
+ * Provides the customer-specified description for this DB parameter group.
10
+ */
8
11
  Description: string;
12
+ /**
13
+ * Must be `neptune1` for engine versions prior to 1.2.0.0, or `neptune1.2` for engine version `1.2.0.0` and higher.
14
+ */
9
15
  Family: string;
16
+ /**
17
+ * Provides the name of the DB parameter group.
18
+ */
10
19
  Name?: string;
20
+ /**
21
+ * The parameters to set for this DB parameter group.
22
+
23
+ The parameters are expressed as a JSON object consisting of key-value pairs.
24
+
25
+ Changes to dynamic parameters are applied immediately. During an update, if you have static parameters (whether they were changed or not), it triggers AWS CloudFormation to reboot the associated DB instance without failover.
26
+ */
11
27
  Parameters: Record<string, any>;
28
+ /**
29
+ * An optional array of key-value pairs to apply to this DB parameter group.
30
+ */
12
31
  Tags?: Tag[];
13
32
  };
14
- /**
15
- * Attribute type definition for `AWS::Neptune::DBParameterGroup`.
16
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html#aws-resource-neptune-dbparametergroup-return-values}
17
- */
18
- export type NeptuneDBParameterGroupAttributes = {
19
- Id: string;
20
- };
21
33
  /**
22
34
  * Type definition for `AWS::Neptune::DBParameterGroup.Tag`.
35
+ * A key-value pair to associate with a resource.
23
36
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbparametergroup-tag.html}
24
37
  */
25
38
  export type Tag = {
39
+ /**
40
+ * 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 -.
41
+ */
26
42
  Key: string;
43
+ /**
44
+ * 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 -.
45
+ */
27
46
  Value: string;
28
47
  };
29
48
  /**
30
- * Resource Type definition for AWS::Neptune::DBParameterGroup
49
+ * AWS::Neptune::DBParameterGroup creates a new DB parameter group. This type can be declared in a template and referenced in the DBParameterGroupName parameter of AWS::Neptune::DBInstance
31
50
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html}
32
51
  */
33
- export declare class NeptuneDBParameterGroup extends $Resource<"AWS::Neptune::DBParameterGroup", NeptuneDBParameterGroupProperties, NeptuneDBParameterGroupAttributes> {
52
+ export declare class NeptuneDBParameterGroup extends $Resource<"AWS::Neptune::DBParameterGroup", NeptuneDBParameterGroupProperties, Record<string, never>> {
34
53
  static readonly Type = "AWS::Neptune::DBParameterGroup";
35
54
  constructor(logicalId: string, properties: NeptuneDBParameterGroupProperties, options?: $ResourceOptions);
36
55
  }
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::Neptune::DBParameterGroup
3
+ * AWS::Neptune::DBParameterGroup creates a new DB parameter group. This type can be declared in a template and referenced in the DBParameterGroupName parameter of AWS::Neptune::DBInstance
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-neptune-dbparametergroup.html}
5
5
  */
6
6
  export class NeptuneDBParameterGroup extends $Resource {
@@ -309,6 +309,7 @@ export type RDSDBInstanceProperties = {
309
309
  * The Oracle system identifier (SID), which is the name of the Oracle database instance that manages your database files. In this context, the term "Oracle database instance" refers exclusively to the system global area (SGA) and Oracle background processes. If you don't specify a SID, the value defaults to ``RDSCDB``. The Oracle SID is also the name of your CDB.
310
310
  */
311
311
  DBSystemId?: string;
312
+ DatabaseInsightsMode?: string;
312
313
  /**
313
314
  * Indicates whether the DB instance has a dedicated log volume (DLV) enabled.
314
315
  */
@@ -816,7 +817,6 @@ export type RDSDBInstanceAttributes = {
816
817
  ValidTill: string;
817
818
  };
818
819
  DBInstanceArn: string;
819
- DatabaseInsightsMode: string;
820
820
  DbiResourceId: string;
821
821
  /**
822
822
  * This data type represents the information you need to connect to an Amazon RDS DB instance. This data type is used as a response element in the following actions:
@@ -1,7 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource schema for AWS::Route53::CidrCollection.
4
+ * Resource Type definition for AWS::Route53::CidrCollection.
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html}
6
6
  */
7
7
  export type Route53CidrCollectionProperties = {
@@ -48,7 +48,7 @@ export type Location = {
48
48
  LocationName: string;
49
49
  };
50
50
  /**
51
- * Resource schema for AWS::Route53::CidrCollection.
51
+ * Resource Type definition for AWS::Route53::CidrCollection.
52
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html}
53
53
  */
54
54
  export declare class Route53CidrCollection extends $Resource<"AWS::Route53::CidrCollection", Route53CidrCollectionProperties, Route53CidrCollectionAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource schema for AWS::Route53::CidrCollection.
3
+ * Resource Type definition for AWS::Route53::CidrCollection.
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-cidrcollection.html}
5
5
  */
6
6
  export class Route53CidrCollection extends $Resource {
@@ -6,6 +6,10 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3tables-tablebucket.html}
7
7
  */
8
8
  export type S3TablesTableBucketProperties = {
9
+ /**
10
+ * Specifies encryption settings for the table bucket
11
+ */
12
+ EncryptionConfiguration?: EncryptionConfiguration;
9
13
  /**
10
14
  * A name for the table bucket.
11
15
  * @minLength `3`
@@ -27,6 +31,21 @@ export type S3TablesTableBucketAttributes = {
27
31
  */
28
32
  TableBucketARN: string;
29
33
  };
34
+ /**
35
+ * Type definition for `AWS::S3Tables::TableBucket.EncryptionConfiguration`.
36
+ * Specifies encryption settings for the table bucket
37
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3tables-tablebucket-encryptionconfiguration.html}
38
+ */
39
+ export type EncryptionConfiguration = {
40
+ /**
41
+ * ARN of the KMS key to use for encryption
42
+ */
43
+ KMSKeyArn?: string;
44
+ /**
45
+ * Server-side encryption algorithm
46
+ */
47
+ SSEAlgorithm?: "AES256" | "aws:kms";
48
+ };
30
49
  /**
31
50
  * Type definition for `AWS::S3Tables::TableBucket.UnreferencedFileRemoval`.
32
51
  * Settings governing the Unreferenced File Removal maintenance action. Unreferenced file removal identifies and deletes all objects that are not referenced by any table snapshots.
@@ -12,6 +12,7 @@ export type SESMailManagerIngressPointProperties = {
12
12
  * @pattern `^[A-Za-z0-9_\-]+$`
13
13
  */
14
14
  IngressPointName?: string;
15
+ NetworkConfiguration?: NetworkConfiguration;
15
16
  /**
16
17
  * @minLength `1`
17
18
  * @maxLength `100`
@@ -76,6 +77,32 @@ export type IngressPointStatusToUpdate = "ACTIVE" | "CLOSED";
76
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-ingresspointtype.html}
77
78
  */
78
79
  export type IngressPointType = "OPEN" | "AUTH";
80
+ /**
81
+ * Type definition for `AWS::SES::MailManagerIngressPoint.NetworkConfiguration`.
82
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-networkconfiguration.html}
83
+ */
84
+ export type NetworkConfiguration = {
85
+ PublicNetworkConfiguration: PublicNetworkConfiguration;
86
+ } | {
87
+ PrivateNetworkConfiguration: PrivateNetworkConfiguration;
88
+ };
89
+ /**
90
+ * Type definition for `AWS::SES::MailManagerIngressPoint.PrivateNetworkConfiguration`.
91
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-privatenetworkconfiguration.html}
92
+ */
93
+ export type PrivateNetworkConfiguration = {
94
+ /**
95
+ * @pattern `^vpce-[a-zA-Z0-9]{17}$`
96
+ */
97
+ VpcEndpointId: string;
98
+ };
99
+ /**
100
+ * Type definition for `AWS::SES::MailManagerIngressPoint.PublicNetworkConfiguration`.
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-publicnetworkconfiguration.html}
102
+ */
103
+ export type PublicNetworkConfiguration = {
104
+ IpType: any;
105
+ };
79
106
  /**
80
107
  * Type definition for `AWS::SES::MailManagerIngressPoint.Tag`.
81
108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanageringresspoint-tag.html}
@@ -68,7 +68,7 @@ export type Analysis = {
68
68
  /**
69
69
  * @minLength `1`
70
70
  * @maxLength `256`
71
- * @pattern `^[\sa-zA-Z0-9_]+$`
71
+ * @pattern `^(addon\.)?[\sa-zA-Z0-9_]+$`
72
72
  */
73
73
  ResultField: string;
74
74
  };
@@ -238,6 +238,8 @@ export type RuleBooleanOperator = "IS_TRUE" | "IS_FALSE";
238
238
  */
239
239
  export type RuleBooleanToEvaluate = {
240
240
  Attribute: RuleBooleanEmailAttribute;
241
+ } | {
242
+ Analysis: Analysis;
241
243
  };
242
244
  /**
243
245
  * Type definition for `AWS::SES::MailManagerRuleSet.RuleCondition`.
@@ -368,6 +370,8 @@ export type RuleStringToEvaluate = {
368
370
  * @pattern `^X-[a-zA-Z0-9-]{1,256}$`
369
371
  */
370
372
  MimeHeaderAttribute: string;
373
+ } | {
374
+ Analysis: Analysis;
371
375
  };
372
376
  /**
373
377
  * Type definition for `AWS::SES::MailManagerRuleSet.RuleVerdict`.
@@ -52,7 +52,7 @@ export type IngressAnalysis = {
52
52
  /**
53
53
  * @minLength `1`
54
54
  * @maxLength `256`
55
- * @pattern `^[\sa-zA-Z0-9_]+$`
55
+ * @pattern `^(addon\.)?[\sa-zA-Z0-9_]+$`
56
56
  */
57
57
  ResultField: string;
58
58
  };
@@ -102,6 +102,27 @@ export type IngressIpv4Expression = {
102
102
  Operator: IngressIpOperator;
103
103
  Values: string[];
104
104
  };
105
+ /**
106
+ * Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpv6Attribute`.
107
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6attribute.html}
108
+ */
109
+ export type IngressIpv6Attribute = "SENDER_IPV6";
110
+ /**
111
+ * Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpv6Expression`.
112
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6expression.html}
113
+ */
114
+ export type IngressIpv6Expression = {
115
+ Evaluate: IngressIpv6ToEvaluate;
116
+ Operator: IngressIpOperator;
117
+ Values: string[];
118
+ };
119
+ /**
120
+ * Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressIpv6ToEvaluate`.
121
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressipv6toevaluate.html}
122
+ */
123
+ export type IngressIpv6ToEvaluate = {
124
+ Attribute: IngressIpv6Attribute;
125
+ };
105
126
  /**
106
127
  * Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressStringEmailAttribute`.
107
128
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagertrafficpolicy-ingressstringemailattribute.html}
@@ -127,6 +148,8 @@ export type IngressStringOperator = "EQUALS" | "NOT_EQUALS" | "STARTS_WITH" | "E
127
148
  */
128
149
  export type IngressStringToEvaluate = {
129
150
  Attribute: IngressStringEmailAttribute;
151
+ } | {
152
+ Analysis: IngressAnalysis;
130
153
  };
131
154
  /**
132
155
  * Type definition for `AWS::SES::MailManagerTrafficPolicy.IngressTlsAttribute`.
@@ -167,6 +190,8 @@ export type PolicyCondition = {
167
190
  StringExpression: IngressStringExpression;
168
191
  } | {
169
192
  IpExpression: IngressIpv4Expression;
193
+ } | {
194
+ Ipv6Expression: IngressIpv6Expression;
170
195
  } | {
171
196
  TlsExpression: IngressTlsProtocolExpression;
172
197
  } | {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.312",
3
+ "version": "0.1.314",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },