@awboost/cfn-resource-types 0.1.313 → 0.1.315

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.
@@ -30,6 +30,10 @@ export type APSWorkspaceProperties = {
30
30
  * An array of key-value pairs to apply to this resource.
31
31
  */
32
32
  Tags?: Tag[];
33
+ /**
34
+ * Workspace configuration
35
+ */
36
+ WorkspaceConfiguration?: WorkspaceConfiguration;
33
37
  };
34
38
  /**
35
39
  * Attribute type definition for `AWS::APS::Workspace`.
@@ -55,6 +59,52 @@ export type APSWorkspaceAttributes = {
55
59
  */
56
60
  WorkspaceId: string;
57
61
  };
62
+ /**
63
+ * Type definition for `AWS::APS::Workspace.Label`.
64
+ * Series label
65
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-label.html}
66
+ */
67
+ export type Label = {
68
+ /**
69
+ * Name of the label
70
+ * @minLength `1`
71
+ * @pattern `^[a-zA-Z_][a-zA-Z0-9_]*$`
72
+ */
73
+ Name: string;
74
+ /**
75
+ * Value of the label
76
+ * @minLength `1`
77
+ */
78
+ Value: string;
79
+ };
80
+ /**
81
+ * Type definition for `AWS::APS::Workspace.LimitsPerLabelSet`.
82
+ * Label set and its associated limits
83
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-limitsperlabelset.html}
84
+ */
85
+ export type LimitsPerLabelSet = {
86
+ /**
87
+ * An array of series labels
88
+ * @minLength `0`
89
+ */
90
+ LabelSet: Label[];
91
+ /**
92
+ * Limits that can be applied to a label set
93
+ */
94
+ Limits: LimitsPerLabelSetEntry;
95
+ };
96
+ /**
97
+ * Type definition for `AWS::APS::Workspace.LimitsPerLabelSetEntry`.
98
+ * Limits that can be applied to a label set
99
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-limitsperlabelsetentry.html}
100
+ */
101
+ export type LimitsPerLabelSetEntry = {
102
+ /**
103
+ * The maximum number of active series that can be ingested for this label set
104
+ * @min `0`
105
+ */
106
+ MaxSeries?: number;
107
+ };
58
108
  /**
59
109
  * Type definition for `AWS::APS::Workspace.LoggingConfiguration`.
60
110
  * Logging configuration
@@ -87,6 +137,23 @@ export type Tag = {
87
137
  */
88
138
  Value: string;
89
139
  };
140
+ /**
141
+ * Type definition for `AWS::APS::Workspace.WorkspaceConfiguration`.
142
+ * Workspace configuration
143
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-workspace-workspaceconfiguration.html}
144
+ */
145
+ export type WorkspaceConfiguration = {
146
+ /**
147
+ * An array of label set and associated limits
148
+ * @minLength `0`
149
+ */
150
+ LimitsPerLabelSets?: LimitsPerLabelSet[];
151
+ /**
152
+ * How many days that metrics are retained in the workspace
153
+ * @min `1`
154
+ */
155
+ RetentionPeriodInDays?: number;
156
+ };
90
157
  /**
91
158
  * Resource Type definition for AWS::APS::Workspace
92
159
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-aps-workspace.html}
@@ -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
  */
@@ -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
  /**
@@ -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:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.313",
3
+ "version": "0.1.315",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },