@awboost/cfn-resource-types 0.1.308 → 0.1.310

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.
@@ -9,7 +9,6 @@ export type BackupRestoreTestingPlanProperties = {
9
9
  RestoreTestingPlanName: string;
10
10
  ScheduleExpression: string;
11
11
  ScheduleExpressionTimezone?: string;
12
- ScheduleStatus?: RestoreTestingScheduleStatus;
13
12
  StartWindowHours?: number;
14
13
  Tags?: Tag[];
15
14
  };
@@ -41,11 +40,6 @@ export type RestoreTestingRecoveryPointSelectionAlgorithm = "LATEST_WITHIN_WINDO
41
40
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingplan-restoretestingrecoverypointtype.html}
42
41
  */
43
42
  export type RestoreTestingRecoveryPointType = "SNAPSHOT" | "CONTINUOUS";
44
- /**
45
- * Type definition for `AWS::Backup::RestoreTestingPlan.RestoreTestingScheduleStatus`.
46
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingplan-restoretestingschedulestatus.html}
47
- */
48
- export type RestoreTestingScheduleStatus = "ACTIVE" | "SUSPENDED";
49
43
  /**
50
44
  * Type definition for `AWS::Backup::RestoreTestingPlan.Tag`.
51
45
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-backup-restoretestingplan-tag.html}
@@ -36,7 +36,7 @@ export type LogsLogGroupProperties = {
36
36
 
37
37
  For details about the features supported by each class, see [Log classes](https://docs.aws.amazon.com/AmazonCloudWatch/latest/logs/CloudWatch_Logs_Log_Classes.html)
38
38
  */
39
- LogGroupClass?: "STANDARD" | "INFREQUENT_ACCESS";
39
+ LogGroupClass?: "STANDARD" | "INFREQUENT_ACCESS" | "DELIVERY";
40
40
  /**
41
41
  * The name of the log group. If you don't specify a name, CFNlong generates a unique ID for the log group.
42
42
  * @minLength `1`
@@ -19,6 +19,10 @@ export type MacieSessionProperties = {
19
19
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-macie-session.html#aws-resource-macie-session-return-values}
20
20
  */
21
21
  export type MacieSessionAttributes = {
22
+ /**
23
+ * The status of automated sensitive data discovery for the Macie session.
24
+ */
25
+ AutomatedDiscoveryStatus: "ENABLED" | "DISABLED";
22
26
  /**
23
27
  * AWS account ID of customer
24
28
  */
@@ -81,6 +81,18 @@ export type QBusinessDataSourceAttributes = {
81
81
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-attributevalueoperator.html}
82
82
  */
83
83
  export type AttributeValueOperator = "DELETE";
84
+ /**
85
+ * Type definition for `AWS::QBusiness::DataSource.AudioExtractionConfiguration`.
86
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-audioextractionconfiguration.html}
87
+ */
88
+ export type AudioExtractionConfiguration = {
89
+ AudioExtractionStatus: AudioExtractionStatus;
90
+ };
91
+ /**
92
+ * Type definition for `AWS::QBusiness::DataSource.AudioExtractionStatus`.
93
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-audioextractionstatus.html}
94
+ */
95
+ export type AudioExtractionStatus = "ENABLED" | "DISABLED";
84
96
  /**
85
97
  * Type definition for `AWS::QBusiness::DataSource.DataSourceStatus`.
86
98
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-datasourcestatus.html}
@@ -216,7 +228,9 @@ export type InlineDocumentEnrichmentConfiguration = {
216
228
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-mediaextractionconfiguration.html}
217
229
  */
218
230
  export type MediaExtractionConfiguration = {
231
+ AudioExtractionConfiguration?: AudioExtractionConfiguration;
219
232
  ImageExtractionConfiguration?: ImageExtractionConfiguration;
233
+ VideoExtractionConfiguration?: VideoExtractionConfiguration;
220
234
  };
221
235
  /**
222
236
  * Type definition for `AWS::QBusiness::DataSource.Tag`.
@@ -234,6 +248,18 @@ export type Tag = {
234
248
  */
235
249
  Value: string;
236
250
  };
251
+ /**
252
+ * Type definition for `AWS::QBusiness::DataSource.VideoExtractionConfiguration`.
253
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-videoextractionconfiguration.html}
254
+ */
255
+ export type VideoExtractionConfiguration = {
256
+ VideoExtractionStatus: VideoExtractionStatus;
257
+ };
258
+ /**
259
+ * Type definition for `AWS::QBusiness::DataSource.VideoExtractionStatus`.
260
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-datasource-videoextractionstatus.html}
261
+ */
262
+ export type VideoExtractionStatus = "ENABLED" | "DISABLED";
237
263
  /**
238
264
  * Definition of AWS::QBusiness::DataSource Resource Type
239
265
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-qbusiness-datasource.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.308",
3
+ "version": "0.1.310",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },