@awboost/cfn-resource-types 0.1.220 → 0.1.221

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.
@@ -278,6 +278,10 @@ export type Function = {
278
278
  * A map of parameter name and detail
279
279
  */
280
280
  Parameters?: ParameterMap;
281
+ /**
282
+ * ENUM to check if action requires user confirmation
283
+ */
284
+ RequireConfirmation?: RequireConfirmation;
281
285
  };
282
286
  /**
283
287
  * Type definition for `AWS::Bedrock::Agent.FunctionSchema`.
@@ -441,6 +445,12 @@ export type PromptState = "ENABLED" | "DISABLED";
441
445
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-prompttype.html}
442
446
  */
443
447
  export type PromptType = "PRE_PROCESSING" | "ORCHESTRATION" | "POST_PROCESSING" | "KNOWLEDGE_BASE_RESPONSE_GENERATION";
448
+ /**
449
+ * Type definition for `AWS::Bedrock::Agent.RequireConfirmation`.
450
+ * ENUM to check if action requires user confirmation
451
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-requireconfirmation.html}
452
+ */
453
+ export type RequireConfirmation = "ENABLED" | "DISABLED";
444
454
  /**
445
455
  * Type definition for `AWS::Bedrock::Agent.S3Identifier`.
446
456
  * The identifier for the S3 resource.
@@ -72,6 +72,101 @@ export type BedrockPromptAttributes = {
72
72
  */
73
73
  Version: string;
74
74
  };
75
+ /**
76
+ * Type definition for `AWS::Bedrock::Prompt.AnyToolChoice`.
77
+ * Any Tool choice
78
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-anytoolchoice.html}
79
+ */
80
+ export type AnyToolChoice = Record<string, any>;
81
+ /**
82
+ * Type definition for `AWS::Bedrock::Prompt.AutoToolChoice`.
83
+ * Auto Tool choice
84
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-autotoolchoice.html}
85
+ */
86
+ export type AutoToolChoice = Record<string, any>;
87
+ /**
88
+ * Type definition for `AWS::Bedrock::Prompt.ChatPromptTemplateConfiguration`.
89
+ * Configuration for chat prompt template
90
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-chatprompttemplateconfiguration.html}
91
+ */
92
+ export type ChatPromptTemplateConfiguration = {
93
+ /**
94
+ * List of input variables
95
+ * @minLength `0`
96
+ * @maxLength `5`
97
+ */
98
+ InputVariables?: PromptInputVariable[];
99
+ /**
100
+ * List of messages for chat prompt template
101
+ * @minLength `0`
102
+ */
103
+ Messages: Message[];
104
+ /**
105
+ * Configuration for chat prompt template
106
+ * @minLength `0`
107
+ */
108
+ System?: SystemContentBlock[];
109
+ /**
110
+ * Tool configuration
111
+ */
112
+ ToolConfiguration?: ToolConfiguration;
113
+ };
114
+ /**
115
+ * Type definition for `AWS::Bedrock::Prompt.ContentBlock`.
116
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-contentblock.html}
117
+ */
118
+ export type ContentBlock = {
119
+ /**
120
+ * Configuration for chat prompt template
121
+ * @minLength `1`
122
+ */
123
+ Text: string;
124
+ };
125
+ /**
126
+ * Type definition for `AWS::Bedrock::Prompt.ConversationRole`.
127
+ * Conversation roles for the chat prompt
128
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-conversationrole.html}
129
+ */
130
+ export type ConversationRole = "user" | "assistant";
131
+ /**
132
+ * Type definition for `AWS::Bedrock::Prompt.Message`.
133
+ * Chat prompt Message
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-message.html}
135
+ */
136
+ export type Message = {
137
+ /**
138
+ * List of Content Blocks
139
+ * @minLength `1`
140
+ */
141
+ Content: ContentBlock[];
142
+ /**
143
+ * Conversation roles for the chat prompt
144
+ */
145
+ Role: ConversationRole;
146
+ };
147
+ /**
148
+ * Type definition for `AWS::Bedrock::Prompt.PromptAgentResource`.
149
+ * Target Agent to invoke with Prompt
150
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptagentresource.html}
151
+ */
152
+ export type PromptAgentResource = {
153
+ /**
154
+ * Arn representation of the Agent Alias.
155
+ * @maxLength `2048`
156
+ * @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$`
157
+ */
158
+ AgentIdentifier: string;
159
+ };
160
+ /**
161
+ * Type definition for `AWS::Bedrock::Prompt.PromptGenAiResource`.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptgenairesource.html}
163
+ */
164
+ export type PromptGenAiResource = {
165
+ /**
166
+ * Target Agent to invoke with Prompt
167
+ */
168
+ Agent: PromptAgentResource;
169
+ };
75
170
  /**
76
171
  * Type definition for `AWS::Bedrock::Prompt.PromptInferenceConfiguration`.
77
172
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptinferenceconfiguration.html}
@@ -127,6 +222,7 @@ export type PromptModelInferenceConfiguration = {
127
222
  };
128
223
  /**
129
224
  * Type definition for `AWS::Bedrock::Prompt.PromptTemplateConfiguration`.
225
+ * Prompt template configuration
130
226
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-prompttemplateconfiguration.html}
131
227
  */
132
228
  export type PromptTemplateConfiguration = {
@@ -134,19 +230,25 @@ export type PromptTemplateConfiguration = {
134
230
  * Configuration for text prompt template
135
231
  */
136
232
  Text: TextPromptTemplateConfiguration;
233
+ } | {
234
+ /**
235
+ * Configuration for chat prompt template
236
+ */
237
+ Chat: ChatPromptTemplateConfiguration;
137
238
  };
138
239
  /**
139
240
  * Type definition for `AWS::Bedrock::Prompt.PromptTemplateType`.
140
241
  * Prompt template type
141
242
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-prompttemplatetype.html}
142
243
  */
143
- export type PromptTemplateType = "TEXT";
244
+ export type PromptTemplateType = "TEXT" | "CHAT";
144
245
  /**
145
246
  * Type definition for `AWS::Bedrock::Prompt.PromptVariant`.
146
247
  * Prompt variant
147
248
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptvariant.html}
148
249
  */
149
250
  export type PromptVariant = {
251
+ GenAiResource?: PromptGenAiResource;
150
252
  InferenceConfiguration?: PromptInferenceConfiguration;
151
253
  /**
152
254
  * ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
@@ -160,12 +262,40 @@ export type PromptVariant = {
160
262
  * @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
161
263
  */
162
264
  Name: string;
265
+ /**
266
+ * Prompt template configuration
267
+ */
163
268
  TemplateConfiguration: PromptTemplateConfiguration;
164
269
  /**
165
270
  * Prompt template type
166
271
  */
167
272
  TemplateType: PromptTemplateType;
168
273
  };
274
+ /**
275
+ * Type definition for `AWS::Bedrock::Prompt.SpecificToolChoice`.
276
+ * Specific Tool choice
277
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-specifictoolchoice.html}
278
+ */
279
+ export type SpecificToolChoice = {
280
+ /**
281
+ * Tool name
282
+ * @minLength `1`
283
+ * @maxLength `64`
284
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
285
+ */
286
+ Name: string;
287
+ };
288
+ /**
289
+ * Type definition for `AWS::Bedrock::Prompt.SystemContentBlock`.
290
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-systemcontentblock.html}
291
+ */
292
+ export type SystemContentBlock = {
293
+ /**
294
+ * Configuration for chat prompt template
295
+ * @minLength `1`
296
+ */
297
+ Text: string;
298
+ };
169
299
  /**
170
300
  * Type definition for `AWS::Bedrock::Prompt.TagsMap`.
171
301
  * A map of tag keys and values
@@ -221,6 +351,83 @@ export type TextS3Location = {
221
351
  */
222
352
  Version?: string;
223
353
  };
354
+ /**
355
+ * Type definition for `AWS::Bedrock::Prompt.Tool`.
356
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-tool.html}
357
+ */
358
+ export type Tool = {
359
+ /**
360
+ * Tool specification
361
+ */
362
+ ToolSpec: ToolSpecification;
363
+ };
364
+ /**
365
+ * Type definition for `AWS::Bedrock::Prompt.ToolChoice`.
366
+ * Tool choice
367
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolchoice.html}
368
+ */
369
+ export type ToolChoice = {
370
+ /**
371
+ * Auto Tool choice
372
+ */
373
+ Auto: AutoToolChoice;
374
+ } | {
375
+ /**
376
+ * Any Tool choice
377
+ */
378
+ Any: AnyToolChoice;
379
+ } | {
380
+ /**
381
+ * Specific Tool choice
382
+ */
383
+ Tool: SpecificToolChoice;
384
+ };
385
+ /**
386
+ * Type definition for `AWS::Bedrock::Prompt.ToolConfiguration`.
387
+ * Tool configuration
388
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolconfiguration.html}
389
+ */
390
+ export type ToolConfiguration = {
391
+ /**
392
+ * Tool choice
393
+ */
394
+ ToolChoice?: ToolChoice;
395
+ /**
396
+ * List of Tools
397
+ * @minLength `1`
398
+ */
399
+ Tools: Tool[];
400
+ };
401
+ /**
402
+ * Type definition for `AWS::Bedrock::Prompt.ToolInputSchema`.
403
+ * Tool input schema json
404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolinputschema.html}
405
+ */
406
+ export type ToolInputSchema = {
407
+ Json: Record<string, any>;
408
+ };
409
+ /**
410
+ * Type definition for `AWS::Bedrock::Prompt.ToolSpecification`.
411
+ * Tool specification
412
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolspecification.html}
413
+ */
414
+ export type ToolSpecification = {
415
+ /**
416
+ * @minLength `1`
417
+ */
418
+ Description?: string;
419
+ /**
420
+ * Tool input schema json
421
+ */
422
+ InputSchema: ToolInputSchema;
423
+ /**
424
+ * Tool name
425
+ * @minLength `1`
426
+ * @maxLength `64`
427
+ * @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
428
+ */
429
+ Name: string;
430
+ };
224
431
  /**
225
432
  * Definition of AWS::Bedrock::Prompt Resource Type
226
433
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-prompt.html}
@@ -115,7 +115,7 @@ export type DataZoneDataSourceAttributes = {
115
115
  };
116
116
  /**
117
117
  * Type definition for `AWS::DataZone::DataSource.DataSourceConfigurationInput`.
118
- * Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
118
+ * Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration or sageMakerRunConfiguration.
119
119
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-datasourceconfigurationinput.html}
120
120
  */
121
121
  export type DataSourceConfigurationInput = {
@@ -125,6 +125,11 @@ export type DataSourceConfigurationInput = {
125
125
  * The configuration details of the Amazon Redshift data source.
126
126
  */
127
127
  RedshiftRunConfiguration?: RedshiftRunConfigurationInput;
128
+ } | {
129
+ /**
130
+ * The configuration details of the Amazon SageMaker data source.
131
+ */
132
+ SageMakerRunConfiguration?: SageMakerRunConfigurationInput;
128
133
  };
129
134
  /**
130
135
  * Type definition for `AWS::DataZone::DataSource.DataSourceStatus`.
@@ -326,6 +331,17 @@ export type RelationalFilterConfiguration = {
326
331
  */
327
332
  SchemaName?: string;
328
333
  };
334
+ /**
335
+ * Type definition for `AWS::DataZone::DataSource.SageMakerRunConfigurationInput`.
336
+ * The configuration details of the Amazon SageMaker data source.
337
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-sagemakerrunconfigurationinput.html}
338
+ */
339
+ export type SageMakerRunConfigurationInput = {
340
+ /**
341
+ * The tracking assets of the Amazon SageMaker run.
342
+ */
343
+ TrackingAssets: TrackingAssets;
344
+ };
329
345
  /**
330
346
  * Type definition for `AWS::DataZone::DataSource.ScheduleConfiguration`.
331
347
  * The schedule of the data source runs.
@@ -344,6 +360,12 @@ export type ScheduleConfiguration = {
344
360
  */
345
361
  Timezone?: string;
346
362
  };
363
+ /**
364
+ * Type definition for `AWS::DataZone::DataSource.TrackingAssets`.
365
+ * The tracking assets of the Amazon SageMaker run.
366
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-trackingassets.html}
367
+ */
368
+ export type TrackingAssets = Record<string, string[]>;
347
369
  /**
348
370
  * Resource type definition for `AWS::DataZone::DataSource`.
349
371
  * A data source is used to import technical metadata of assets (data) from the source databases or data warehouses into Amazon DataZone.
@@ -722,7 +722,7 @@ export type LaunchTemplateData = {
722
722
  * The network interfaces for the instance.
723
723
  */
724
724
  NetworkInterfaces?: NetworkInterface[];
725
- NetworkPerformanceOptions?: unknown;
725
+ NetworkPerformanceOptions?: any;
726
726
  /**
727
727
  * The placement for the instance.
728
728
  */
@@ -3217,7 +3217,7 @@ export type GeospatialLayerJoinDefinition = {
3217
3217
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
3218
3218
  */
3219
3219
  export type GeospatialLayerMapConfiguration = {
3220
- Interactions?: unknown;
3220
+ Interactions?: any;
3221
3221
  Legend?: LegendOptions;
3222
3222
  MapLayers?: GeospatialLayerItem[];
3223
3223
  MapState?: GeospatialMapState;
@@ -3287,7 +3287,7 @@ export type GeospatialMapAggregatedFieldWells = {
3287
3287
  */
3288
3288
  export type GeospatialMapConfiguration = {
3289
3289
  FieldWells?: GeospatialMapFieldWells;
3290
- Interactions?: unknown;
3290
+ Interactions?: any;
3291
3291
  Legend?: LegendOptions;
3292
3292
  MapStyleOptions?: GeospatialMapStyleOptions;
3293
3293
  PointStyleOptions?: GeospatialPointStyleOptions;
@@ -3825,7 +3825,7 @@ export type ImageInteractionOptions = {
3825
3825
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
3826
3826
  */
3827
3827
  export type ImageMenuOption = {
3828
- AvailabilityStatus?: unknown;
3828
+ AvailabilityStatus?: any;
3829
3829
  };
3830
3830
  /**
3831
3831
  * Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
@@ -1636,7 +1636,7 @@ export type DashboardPublishOptions = {
1636
1636
  */
1637
1637
  SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
1638
1638
  VisualAxisSortOption?: VisualAxisSortOption;
1639
- VisualMenuOption?: VisualMenuOption;
1639
+ VisualMenuOption?: any;
1640
1640
  /**
1641
1641
  * <p>The visual publish options of a visual in a dashboard</p>
1642
1642
  */
@@ -3620,7 +3620,7 @@ export type GeospatialLayerJoinDefinition = {
3620
3620
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
3621
3621
  */
3622
3622
  export type GeospatialLayerMapConfiguration = {
3623
- Interactions?: unknown;
3623
+ Interactions?: any;
3624
3624
  Legend?: LegendOptions;
3625
3625
  MapLayers?: GeospatialLayerItem[];
3626
3626
  MapState?: GeospatialMapState;
@@ -3690,7 +3690,7 @@ export type GeospatialMapAggregatedFieldWells = {
3690
3690
  */
3691
3691
  export type GeospatialMapConfiguration = {
3692
3692
  FieldWells?: GeospatialMapFieldWells;
3693
- Interactions?: unknown;
3693
+ Interactions?: any;
3694
3694
  Legend?: LegendOptions;
3695
3695
  MapStyleOptions?: GeospatialMapStyleOptions;
3696
3696
  PointStyleOptions?: GeospatialPointStyleOptions;
@@ -8332,13 +8332,6 @@ export type VisualCustomActionOperation = {
8332
8332
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
8333
8333
  */
8334
8334
  export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
8335
- /**
8336
- * Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
8337
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
8338
- */
8339
- export type VisualMenuOption = {
8340
- AvailabilityStatus?: DashboardBehavior;
8341
- };
8342
8335
  /**
8343
8336
  * Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
8344
8337
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
@@ -465,11 +465,6 @@ export type FieldFolder = {
465
465
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfoldermap.html}
466
466
  */
467
467
  export type FieldFolderMap = Record<string, FieldFolder>;
468
- /**
469
- * Type definition for `AWS::QuickSight::DataSet.FileFormat`.
470
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fileformat.html}
471
- */
472
- export type FileFormat = "CSV" | "TSV" | "CLF" | "ELF" | "XLSX" | "JSON";
473
468
  /**
474
469
  * Type definition for `AWS::QuickSight::DataSet.FilterOperation`.
475
470
  * <p>A transform operation that filters rows based on a condition.</p>
@@ -1063,10 +1058,7 @@ export type S3Source = {
1063
1058
  * @maxLength `2048`
1064
1059
  */
1065
1060
  InputColumns: InputColumn[];
1066
- /**
1067
- * <p>Information about the format for a source file or files.</p>
1068
- */
1069
- UploadSettings?: UploadSettings;
1061
+ UploadSettings?: any;
1070
1062
  };
1071
1063
  /**
1072
1064
  * Type definition for `AWS::QuickSight::DataSet.Status`.
@@ -1154,11 +1146,6 @@ export type TagColumnOperation = {
1154
1146
  */
1155
1147
  Tags: ColumnTag[];
1156
1148
  };
1157
- /**
1158
- * Type definition for `AWS::QuickSight::DataSet.TextQualifier`.
1159
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-textqualifier.html}
1160
- */
1161
- export type TextQualifier = "DOUBLE_QUOTE" | "SINGLE_QUOTE";
1162
1149
  /**
1163
1150
  * Type definition for `AWS::QuickSight::DataSet.TimeGranularity`.
1164
1151
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-timegranularity.html}
@@ -1234,30 +1221,6 @@ export type UntagColumnOperation = {
1234
1221
  */
1235
1222
  TagNames: ColumnTagName[];
1236
1223
  };
1237
- /**
1238
- * Type definition for `AWS::QuickSight::DataSet.UploadSettings`.
1239
- * <p>Information about the format for a source file or files.</p>
1240
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html}
1241
- */
1242
- export type UploadSettings = {
1243
- /**
1244
- * <p>Whether the file has a header row, or the files each have a header row.</p>
1245
- */
1246
- ContainsHeader?: boolean;
1247
- /**
1248
- * <p>The delimiter between values in the file.</p>
1249
- * @minLength `1`
1250
- * @maxLength `1`
1251
- */
1252
- Delimiter?: string;
1253
- Format?: FileFormat;
1254
- /**
1255
- * <p>A row number to start reading data from.</p>
1256
- * @min `1`
1257
- */
1258
- StartFromRow?: number;
1259
- TextQualifier?: TextQualifier;
1260
- };
1261
1224
  /**
1262
1225
  * Definition of the AWS::QuickSight::DataSet Resource Type.
1263
1226
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dataset.html}
@@ -281,7 +281,7 @@ export type QuickSightTemplateAttributes = {
281
281
  ImageContentAltText: string;
282
282
  Interactions: {
283
283
  ImageMenuOption: {
284
- AvailabilityStatus: unknown;
284
+ AvailabilityStatus: any;
285
285
  };
286
286
  };
287
287
  Scaling: {
@@ -311,7 +311,7 @@ export type QuickSightTemplateAttributes = {
311
311
  */
312
312
  PlainText: string;
313
313
  };
314
- Visibility: Visibility;
314
+ Visibility: any;
315
315
  };
316
316
  }[];
317
317
  /**
@@ -483,13 +483,13 @@ export type AxisDisplayMinMaxRange = {
483
483
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axisdisplayoptions.html}
484
484
  */
485
485
  export type AxisDisplayOptions = {
486
- AxisLineVisibility?: Visibility;
486
+ AxisLineVisibility?: any;
487
487
  /**
488
488
  * String based length that is composed of value and unit in px
489
489
  */
490
490
  AxisOffset?: string;
491
491
  DataOptions?: AxisDataOptions;
492
- GridLineVisibility?: Visibility;
492
+ GridLineVisibility?: any;
493
493
  ScrollbarOptions?: ScrollBarOptions;
494
494
  TickLabelOptions?: AxisTickLabelOptions;
495
495
  };
@@ -786,8 +786,8 @@ export type BoxPlotFillStyle = "SOLID" | "TRANSPARENT";
786
786
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotoptions.html}
787
787
  */
788
788
  export type BoxPlotOptions = {
789
- AllDataPointsVisibility?: Visibility;
790
- OutlierVisibility?: Visibility;
789
+ AllDataPointsVisibility?: any;
790
+ OutlierVisibility?: any;
791
791
  StyleOptions?: BoxPlotStyleOptions;
792
792
  };
793
793
  /**
@@ -997,8 +997,8 @@ export type ChartAxisLabelOptions = {
997
997
  * @maxLength `100`
998
998
  */
999
999
  AxisLabelOptions?: AxisLabelOptions[];
1000
- SortIconVisibility?: Visibility;
1001
- Visibility?: Visibility;
1000
+ SortIconVisibility?: any;
1001
+ Visibility?: any;
1002
1002
  };
1003
1003
  /**
1004
1004
  * Type definition for `AWS::QuickSight::Template.ClusterMarker`.
@@ -1148,7 +1148,7 @@ export type ColumnTooltipItem = {
1148
1148
  Column: ColumnIdentifier;
1149
1149
  Label?: string;
1150
1150
  TooltipTarget?: TooltipTarget;
1151
- Visibility?: Visibility;
1151
+ Visibility?: any;
1152
1152
  };
1153
1153
  /**
1154
1154
  * Type definition for `AWS::QuickSight::Template.ComboChartAggregatedFieldWells`.
@@ -1686,7 +1686,7 @@ export type DataLabelContent = "VALUE" | "PERCENT" | "VALUE_AND_PERCENT";
1686
1686
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeloptions.html}
1687
1687
  */
1688
1688
  export type DataLabelOptions = {
1689
- CategoryLabelVisibility?: Visibility;
1689
+ CategoryLabelVisibility?: any;
1690
1690
  /**
1691
1691
  * @minLength `0`
1692
1692
  * @maxLength `100`
@@ -1698,11 +1698,11 @@ export type DataLabelOptions = {
1698
1698
  LabelColor?: string;
1699
1699
  LabelContent?: DataLabelContent;
1700
1700
  LabelFontConfiguration?: FontConfiguration;
1701
- MeasureLabelVisibility?: Visibility;
1701
+ MeasureLabelVisibility?: any;
1702
1702
  Overlap?: DataLabelOverlap;
1703
1703
  Position?: DataLabelPosition;
1704
- TotalsVisibility?: Visibility;
1705
- Visibility?: Visibility;
1704
+ TotalsVisibility?: any;
1705
+ Visibility?: any;
1706
1706
  };
1707
1707
  /**
1708
1708
  * Type definition for `AWS::QuickSight::Template.DataLabelOverlap`.
@@ -1752,7 +1752,7 @@ export type DataPathLabelType = {
1752
1752
  * @maxLength `2048`
1753
1753
  */
1754
1754
  FieldValue?: string;
1755
- Visibility?: Visibility;
1755
+ Visibility?: any;
1756
1756
  };
1757
1757
  /**
1758
1758
  * Type definition for `AWS::QuickSight::Template.DataPathSort`.
@@ -1850,7 +1850,7 @@ export type DateAggregationFunction = "COUNT" | "DISTINCT_COUNT" | "MIN" | "MAX"
1850
1850
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dateaxisoptions.html}
1851
1851
  */
1852
1852
  export type DateAxisOptions = {
1853
- MissingDateVisibility?: Visibility;
1853
+ MissingDateVisibility?: any;
1854
1854
  };
1855
1855
  /**
1856
1856
  * Type definition for `AWS::QuickSight::Template.DateDimensionField`.
@@ -2189,7 +2189,7 @@ export type DimensionField = {
2189
2189
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-donutcenteroptions.html}
2190
2190
  */
2191
2191
  export type DonutCenterOptions = {
2192
- LabelVisibility?: Visibility;
2192
+ LabelVisibility?: any;
2193
2193
  };
2194
2194
  /**
2195
2195
  * Type definition for `AWS::QuickSight::Template.DonutOptions`.
@@ -2293,7 +2293,7 @@ export type ExplicitHierarchy = {
2293
2293
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fieldbasedtooltip.html}
2294
2294
  */
2295
2295
  export type FieldBasedTooltip = {
2296
- AggregationVisibility?: Visibility;
2296
+ AggregationVisibility?: any;
2297
2297
  /**
2298
2298
  * @minLength `0`
2299
2299
  * @maxLength `100`
@@ -2311,7 +2311,7 @@ export type FieldLabelType = {
2311
2311
  * @maxLength `512`
2312
2312
  */
2313
2313
  FieldId?: string;
2314
- Visibility?: Visibility;
2314
+ Visibility?: any;
2315
2315
  };
2316
2316
  /**
2317
2317
  * Type definition for `AWS::QuickSight::Template.FieldSeriesItem`.
@@ -2358,7 +2358,7 @@ export type FieldTooltipItem = {
2358
2358
  FieldId: string;
2359
2359
  Label?: string;
2360
2360
  TooltipTarget?: TooltipTarget;
2361
- Visibility?: Visibility;
2361
+ Visibility?: any;
2362
2362
  };
2363
2363
  /**
2364
2364
  * Type definition for `AWS::QuickSight::Template.FilledMapAggregatedFieldWells`.
@@ -2944,7 +2944,7 @@ export type FreeFormLayoutElement = {
2944
2944
  */
2945
2945
  RenderingRules?: SheetElementRenderingRule[];
2946
2946
  SelectedBorderStyle?: FreeFormLayoutElementBorderStyle;
2947
- Visibility?: Visibility;
2947
+ Visibility?: any;
2948
2948
  /**
2949
2949
  * String based length that is composed of value and unit in px
2950
2950
  */
@@ -2967,7 +2967,7 @@ export type FreeFormLayoutElementBackgroundStyle = {
2967
2967
  * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
2968
2968
  */
2969
2969
  Color?: string;
2970
- Visibility?: Visibility;
2970
+ Visibility?: any;
2971
2971
  };
2972
2972
  /**
2973
2973
  * Type definition for `AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle`.
@@ -2978,7 +2978,7 @@ export type FreeFormLayoutElementBorderStyle = {
2978
2978
  * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
2979
2979
  */
2980
2980
  Color?: string;
2981
- Visibility?: Visibility;
2981
+ Visibility?: any;
2982
2982
  };
2983
2983
  /**
2984
2984
  * Type definition for `AWS::QuickSight::Template.FreeFormLayoutScreenCanvasSizeOptions`.
@@ -3035,16 +3035,16 @@ export type FunnelChartConfiguration = {
3035
3035
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-funnelchartdatalabeloptions.html}
3036
3036
  */
3037
3037
  export type FunnelChartDataLabelOptions = {
3038
- CategoryLabelVisibility?: Visibility;
3038
+ CategoryLabelVisibility?: any;
3039
3039
  /**
3040
3040
  * @pattern `^#[A-F0-9]{6}$`
3041
3041
  */
3042
3042
  LabelColor?: string;
3043
3043
  LabelFontConfiguration?: FontConfiguration;
3044
3044
  MeasureDataLabelStyle?: FunnelChartMeasureDataLabelStyle;
3045
- MeasureLabelVisibility?: Visibility;
3045
+ MeasureLabelVisibility?: any;
3046
3046
  Position?: DataLabelPosition;
3047
- Visibility?: Visibility;
3047
+ Visibility?: any;
3048
3048
  };
3049
3049
  /**
3050
3050
  * Type definition for `AWS::QuickSight::Template.FunnelChartFieldWells`.
@@ -3702,7 +3702,7 @@ export type ImageInteractionOptions = {
3702
3702
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
3703
3703
  */
3704
3704
  export type ImageMenuOption = {
3705
- AvailabilityStatus?: unknown;
3705
+ AvailabilityStatus?: any;
3706
3706
  };
3707
3707
  /**
3708
3708
  * Type definition for `AWS::QuickSight::Template.InnerFilter`.
@@ -3918,9 +3918,9 @@ export type KPISparklineOptions = {
3918
3918
  * @pattern `^#[A-F0-9]{6}$`
3919
3919
  */
3920
3920
  Color?: string;
3921
- TooltipVisibility?: Visibility;
3921
+ TooltipVisibility?: any;
3922
3922
  Type: KPISparklineType;
3923
- Visibility?: Visibility;
3923
+ Visibility?: any;
3924
3924
  };
3925
3925
  /**
3926
3926
  * Type definition for `AWS::QuickSight::Template.KPISparklineType`.
@@ -3984,7 +3984,7 @@ export type KPIVisualStandardLayoutType = "CLASSIC" | "VERTICAL";
3984
3984
  export type LabelOptions = {
3985
3985
  CustomLabel?: string;
3986
3986
  FontConfiguration?: FontConfiguration;
3987
- Visibility?: Visibility;
3987
+ Visibility?: any;
3988
3988
  };
3989
3989
  /**
3990
3990
  * Type definition for `AWS::QuickSight::Template.Layout`.
@@ -4019,7 +4019,7 @@ export type LegendOptions = {
4019
4019
  Position?: LegendPosition;
4020
4020
  Title?: LabelOptions;
4021
4021
  ValueFontConfiguration?: FontConfiguration;
4022
- Visibility?: Visibility;
4022
+ Visibility?: any;
4023
4023
  /**
4024
4024
  * String based length that is composed of value and unit in px
4025
4025
  */
@@ -4126,7 +4126,7 @@ export type LineChartLineStyle = "SOLID" | "DOTTED" | "DASHED";
4126
4126
  export type LineChartLineStyleSettings = {
4127
4127
  LineInterpolation?: LineInterpolation;
4128
4128
  LineStyle?: LineChartLineStyle;
4129
- LineVisibility?: Visibility;
4129
+ LineVisibility?: any;
4130
4130
  /**
4131
4131
  * String based length that is composed of value and unit in px
4132
4132
  */
@@ -4151,7 +4151,7 @@ export type LineChartMarkerStyleSettings = {
4151
4151
  * String based length that is composed of value and unit in px
4152
4152
  */
4153
4153
  MarkerSize?: string;
4154
- MarkerVisibility?: Visibility;
4154
+ MarkerVisibility?: any;
4155
4155
  };
4156
4156
  /**
4157
4157
  * Type definition for `AWS::QuickSight::Template.LineChartSeriesSettings`.
@@ -4247,21 +4247,21 @@ export type ListControlDisplayOptions = {
4247
4247
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolsearchoptions.html}
4248
4248
  */
4249
4249
  export type ListControlSearchOptions = {
4250
- Visibility?: Visibility;
4250
+ Visibility?: any;
4251
4251
  };
4252
4252
  /**
4253
4253
  * Type definition for `AWS::QuickSight::Template.ListControlSelectAllOptions`.
4254
4254
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolselectalloptions.html}
4255
4255
  */
4256
4256
  export type ListControlSelectAllOptions = {
4257
- Visibility?: Visibility;
4257
+ Visibility?: any;
4258
4258
  };
4259
4259
  /**
4260
4260
  * Type definition for `AWS::QuickSight::Template.LoadingAnimation`.
4261
4261
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-loadinganimation.html}
4262
4262
  */
4263
4263
  export type LoadingAnimation = {
4264
- Visibility?: Visibility;
4264
+ Visibility?: any;
4265
4265
  };
4266
4266
  /**
4267
4267
  * Type definition for `AWS::QuickSight::Template.LocalNavigationConfiguration`.
@@ -4318,7 +4318,7 @@ export type MapZoomMode = "AUTO" | "MANUAL";
4318
4318
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-maximumlabeltype.html}
4319
4319
  */
4320
4320
  export type MaximumLabelType = {
4321
- Visibility?: Visibility;
4321
+ Visibility?: any;
4322
4322
  };
4323
4323
  /**
4324
4324
  * Type definition for `AWS::QuickSight::Template.MaximumMinimumComputation`.
@@ -4372,7 +4372,7 @@ export type MetricComparisonComputation = {
4372
4372
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-minimumlabeltype.html}
4373
4373
  */
4374
4374
  export type MinimumLabelType = {
4375
- Visibility?: Visibility;
4375
+ Visibility?: any;
4376
4376
  };
4377
4377
  /**
4378
4378
  * Type definition for `AWS::QuickSight::Template.MissingDataConfiguration`.
@@ -4634,7 +4634,7 @@ export type PanelConfiguration = {
4634
4634
  * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
4635
4635
  */
4636
4636
  BackgroundColor?: string;
4637
- BackgroundVisibility?: Visibility;
4637
+ BackgroundVisibility?: any;
4638
4638
  /**
4639
4639
  * @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
4640
4640
  */
@@ -4644,12 +4644,12 @@ export type PanelConfiguration = {
4644
4644
  * String based length that is composed of value and unit in px
4645
4645
  */
4646
4646
  BorderThickness?: string;
4647
- BorderVisibility?: Visibility;
4647
+ BorderVisibility?: any;
4648
4648
  /**
4649
4649
  * String based length that is composed of value and unit in px
4650
4650
  */
4651
4651
  GutterSpacing?: string;
4652
- GutterVisibility?: Visibility;
4652
+ GutterVisibility?: any;
4653
4653
  Title?: PanelTitleOptions;
4654
4654
  };
4655
4655
  /**
@@ -4659,7 +4659,7 @@ export type PanelConfiguration = {
4659
4659
  export type PanelTitleOptions = {
4660
4660
  FontConfiguration?: FontConfiguration;
4661
4661
  HorizontalTextAlignment?: HorizontalTextAlignment;
4662
- Visibility?: Visibility;
4662
+ Visibility?: any;
4663
4663
  };
4664
4664
  /**
4665
4665
  * Type definition for `AWS::QuickSight::Template.PaperOrientation`.
@@ -5197,7 +5197,7 @@ export type PivotTableFieldOption = {
5197
5197
  * @maxLength `512`
5198
5198
  */
5199
5199
  FieldId: string;
5200
- Visibility?: Visibility;
5200
+ Visibility?: any;
5201
5201
  };
5202
5202
  /**
5203
5203
  * Type definition for `AWS::QuickSight::Template.PivotTableFieldOptions`.
@@ -5245,9 +5245,9 @@ export type PivotTableMetricPlacement = "ROW" | "COLUMN";
5245
5245
  */
5246
5246
  export type PivotTableOptions = {
5247
5247
  CellStyle?: TableCellStyle;
5248
- CollapsedRowDimensionsVisibility?: Visibility;
5248
+ CollapsedRowDimensionsVisibility?: any;
5249
5249
  ColumnHeaderStyle?: TableCellStyle;
5250
- ColumnNamesVisibility?: Visibility;
5250
+ ColumnNamesVisibility?: any;
5251
5251
  /**
5252
5252
  * String based length that is composed of value and unit in px
5253
5253
  */
@@ -5258,16 +5258,16 @@ export type PivotTableOptions = {
5258
5258
  RowHeaderStyle?: TableCellStyle;
5259
5259
  RowsLabelOptions?: PivotTableRowsLabelOptions;
5260
5260
  RowsLayout?: PivotTableRowsLayout;
5261
- SingleMetricVisibility?: Visibility;
5262
- ToggleButtonsVisibility?: Visibility;
5261
+ SingleMetricVisibility?: any;
5262
+ ToggleButtonsVisibility?: any;
5263
5263
  };
5264
5264
  /**
5265
5265
  * Type definition for `AWS::QuickSight::Template.PivotTablePaginatedReportOptions`.
5266
5266
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pivottablepaginatedreportoptions.html}
5267
5267
  */
5268
5268
  export type PivotTablePaginatedReportOptions = {
5269
- OverflowColumnHeaderVisibility?: Visibility;
5270
- VerticalOverflowVisibility?: Visibility;
5269
+ OverflowColumnHeaderVisibility?: any;
5270
+ VerticalOverflowVisibility?: any;
5271
5271
  };
5272
5272
  /**
5273
5273
  * Type definition for `AWS::QuickSight::Template.PivotTableRowsLabelOptions`.
@@ -5279,7 +5279,7 @@ export type PivotTableRowsLabelOptions = {
5279
5279
  * @maxLength `1024`
5280
5280
  */
5281
5281
  CustomLabel?: string;
5282
- Visibility?: Visibility;
5282
+ Visibility?: any;
5283
5283
  };
5284
5284
  /**
5285
5285
  * Type definition for `AWS::QuickSight::Template.PivotTableRowsLayout`.
@@ -5362,7 +5362,7 @@ export type PivotTotalOptions = {
5362
5362
  */
5363
5363
  TotalAggregationOptions?: TotalAggregationOption[];
5364
5364
  TotalCellStyle?: TableCellStyle;
5365
- TotalsVisibility?: Visibility;
5365
+ TotalsVisibility?: any;
5366
5366
  ValueCellStyle?: TableCellStyle;
5367
5367
  };
5368
5368
  /**
@@ -5498,7 +5498,7 @@ export type PrimaryValueDisplayType = "HIDDEN" | "COMPARISON" | "ACTUAL";
5498
5498
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-progressbaroptions.html}
5499
5499
  */
5500
5500
  export type ProgressBarOptions = {
5501
- Visibility?: Visibility;
5501
+ Visibility?: any;
5502
5502
  };
5503
5503
  /**
5504
5504
  * Type definition for `AWS::QuickSight::Template.QueryExecutionMode`.
@@ -5538,7 +5538,7 @@ export type RadarChartAggregatedFieldWells = {
5538
5538
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartareastylesettings.html}
5539
5539
  */
5540
5540
  export type RadarChartAreaStyleSettings = {
5541
- Visibility?: Visibility;
5541
+ Visibility?: any;
5542
5542
  };
5543
5543
  /**
5544
5544
  * Type definition for `AWS::QuickSight::Template.RadarChartAxesRangeScale`.
@@ -5550,7 +5550,7 @@ export type RadarChartAxesRangeScale = "AUTO" | "INDEPENDENT" | "SHARED";
5550
5550
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartconfiguration.html}
5551
5551
  */
5552
5552
  export type RadarChartConfiguration = {
5553
- AlternateBandColorsVisibility?: Visibility;
5553
+ AlternateBandColorsVisibility?: any;
5554
5554
  /**
5555
5555
  * @pattern `^#[A-F0-9]{6}$`
5556
5556
  */
@@ -5648,7 +5648,7 @@ export type RadarChartVisual = {
5648
5648
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-rangeendslabeltype.html}
5649
5649
  */
5650
5650
  export type RangeEndsLabelType = {
5651
- Visibility?: Visibility;
5651
+ Visibility?: any;
5652
5652
  };
5653
5653
  /**
5654
5654
  * Type definition for `AWS::QuickSight::Template.ReferenceLine`.
@@ -6084,7 +6084,7 @@ export type ScatterPlotVisual = {
6084
6084
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scrollbaroptions.html}
6085
6085
  */
6086
6086
  export type ScrollBarOptions = {
6087
- Visibility?: Visibility;
6087
+ Visibility?: any;
6088
6088
  VisibleRange?: VisibleRangeOptions;
6089
6089
  };
6090
6090
  /**
@@ -6092,7 +6092,7 @@ export type ScrollBarOptions = {
6092
6092
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-secondaryvalueoptions.html}
6093
6093
  */
6094
6094
  export type SecondaryValueOptions = {
6095
- Visibility?: Visibility;
6095
+ Visibility?: any;
6096
6096
  };
6097
6097
  /**
6098
6098
  * Type definition for `AWS::QuickSight::Template.SectionAfterPageBreak`.
@@ -6273,7 +6273,7 @@ export type SheetControlInfoIconLabelOptions = {
6273
6273
  * @maxLength `100`
6274
6274
  */
6275
6275
  InfoIconText?: string;
6276
- Visibility?: Visibility;
6276
+ Visibility?: any;
6277
6277
  };
6278
6278
  /**
6279
6279
  * Type definition for `AWS::QuickSight::Template.SheetControlLayout`.
@@ -6367,7 +6367,7 @@ export type SheetDefinition = {
6367
6367
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetelementconfigurationoverrides.html}
6368
6368
  */
6369
6369
  export type SheetElementConfigurationOverrides = {
6370
- Visibility?: Visibility;
6370
+ Visibility?: any;
6371
6371
  };
6372
6372
  /**
6373
6373
  * Type definition for `AWS::QuickSight::Template.SheetElementRenderingRule`.
@@ -6444,7 +6444,7 @@ export type SheetImageStaticFileSource = {
6444
6444
  */
6445
6445
  export type SheetImageTooltipConfiguration = {
6446
6446
  TooltipText?: SheetImageTooltipText;
6447
- Visibility?: Visibility;
6447
+ Visibility?: any;
6448
6448
  };
6449
6449
  /**
6450
6450
  * Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
@@ -6694,7 +6694,7 @@ export type SubtotalOptions = {
6694
6694
  */
6695
6695
  StyleTargets?: TableStyleTarget[];
6696
6696
  TotalCellStyle?: TableCellStyle;
6697
- TotalsVisibility?: Visibility;
6697
+ TotalsVisibility?: any;
6698
6698
  ValueCellStyle?: TableCellStyle;
6699
6699
  };
6700
6700
  /**
@@ -6777,7 +6777,7 @@ export type TableCellStyle = {
6777
6777
  HorizontalTextAlignment?: HorizontalTextAlignment;
6778
6778
  TextWrap?: TextWrap;
6779
6779
  VerticalTextAlignment?: VerticalTextAlignment;
6780
- Visibility?: Visibility;
6780
+ Visibility?: any;
6781
6781
  };
6782
6782
  /**
6783
6783
  * Type definition for `AWS::QuickSight::Template.TableConditionalFormatting`.
@@ -6874,7 +6874,7 @@ export type TableFieldOption = {
6874
6874
  */
6875
6875
  FieldId: string;
6876
6876
  URLStyling?: TableFieldURLConfiguration;
6877
- Visibility?: Visibility;
6877
+ Visibility?: any;
6878
6878
  /**
6879
6879
  * String based length that is composed of value and unit in px
6880
6880
  */
@@ -6940,8 +6940,8 @@ export type TableOrientation = "VERTICAL" | "HORIZONTAL";
6940
6940
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepaginatedreportoptions.html}
6941
6941
  */
6942
6942
  export type TablePaginatedReportOptions = {
6943
- OverflowColumnHeaderVisibility?: Visibility;
6944
- VerticalOverflowVisibility?: Visibility;
6943
+ OverflowColumnHeaderVisibility?: any;
6944
+ VerticalOverflowVisibility?: any;
6945
6945
  };
6946
6946
  /**
6947
6947
  * Type definition for `AWS::QuickSight::Template.TablePinnedFieldOptions`.
@@ -7245,7 +7245,7 @@ export type TextConditionalFormat = {
7245
7245
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textcontrolplaceholderoptions.html}
7246
7246
  */
7247
7247
  export type TextControlPlaceholderOptions = {
7248
- Visibility?: Visibility;
7248
+ Visibility?: any;
7249
7249
  };
7250
7250
  /**
7251
7251
  * Type definition for `AWS::QuickSight::Template.TextFieldControlDisplayOptions`.
@@ -7267,7 +7267,7 @@ export type TextWrap = "NONE" | "WRAP";
7267
7267
  */
7268
7268
  export type ThousandSeparatorOptions = {
7269
7269
  Symbol?: NumericSeparatorSymbol;
7270
- Visibility?: Visibility;
7270
+ Visibility?: any;
7271
7271
  };
7272
7272
  /**
7273
7273
  * Type definition for `AWS::QuickSight::Template.TimeBasedForecastProperties`.
@@ -7385,7 +7385,7 @@ export type TooltipItem = {
7385
7385
  export type TooltipOptions = {
7386
7386
  FieldBasedTooltip?: FieldBasedTooltip;
7387
7387
  SelectedTooltipType?: SelectedTooltipType;
7388
- TooltipVisibility?: Visibility;
7388
+ TooltipVisibility?: any;
7389
7389
  };
7390
7390
  /**
7391
7391
  * Type definition for `AWS::QuickSight::Template.TooltipTarget`.
@@ -7525,7 +7525,7 @@ export type TotalOptions = {
7525
7525
  */
7526
7526
  TotalAggregationOptions?: TotalAggregationOption[];
7527
7527
  TotalCellStyle?: TableCellStyle;
7528
- TotalsVisibility?: Visibility;
7528
+ TotalsVisibility?: any;
7529
7529
  };
7530
7530
  /**
7531
7531
  * Type definition for `AWS::QuickSight::Template.TreeMapAggregatedFieldWells`.
@@ -7617,7 +7617,7 @@ export type TreeMapVisual = {
7617
7617
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-trendarrowoptions.html}
7618
7618
  */
7619
7619
  export type TrendArrowOptions = {
7620
- Visibility?: Visibility;
7620
+ Visibility?: any;
7621
7621
  };
7622
7622
  /**
7623
7623
  * Type definition for `AWS::QuickSight::Template.UnaggregatedField`.
@@ -7674,11 +7674,6 @@ export type ValueWhenUnsetOption = "RECOMMENDED_VALUE" | "NULL";
7674
7674
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-verticaltextalignment.html}
7675
7675
  */
7676
7676
  export type VerticalTextAlignment = "TOP" | "MIDDLE" | "BOTTOM" | "AUTO";
7677
- /**
7678
- * Type definition for `AWS::QuickSight::Template.Visibility`.
7679
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visibility.html}
7680
- */
7681
- export type Visibility = "HIDDEN" | "VISIBLE";
7682
7677
  /**
7683
7678
  * Type definition for `AWS::QuickSight::Template.VisibleRangeOptions`.
7684
7679
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visiblerangeoptions.html}
@@ -7776,7 +7771,7 @@ export type VisualPalette = {
7776
7771
  */
7777
7772
  export type VisualSubtitleLabelOptions = {
7778
7773
  FormatText?: LongFormatText;
7779
- Visibility?: Visibility;
7774
+ Visibility?: any;
7780
7775
  };
7781
7776
  /**
7782
7777
  * Type definition for `AWS::QuickSight::Template.VisualTitleLabelOptions`.
@@ -7784,7 +7779,7 @@ export type VisualSubtitleLabelOptions = {
7784
7779
  */
7785
7780
  export type VisualTitleLabelOptions = {
7786
7781
  FormatText?: ShortFormatText;
7787
- Visibility?: Visibility;
7782
+ Visibility?: any;
7788
7783
  };
7789
7784
  /**
7790
7785
  * Type definition for `AWS::QuickSight::Template.WaterfallChartAggregatedFieldWells`.
@@ -104,6 +104,31 @@ export type DeliverToMailboxAction = {
104
104
  */
105
105
  RoleArn: string;
106
106
  };
107
+ /**
108
+ * Type definition for `AWS::SES::MailManagerRuleSet.DeliverToQBusinessAction`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-delivertoqbusinessaction.html}
110
+ */
111
+ export type DeliverToQBusinessAction = {
112
+ ActionFailurePolicy?: ActionFailurePolicy;
113
+ /**
114
+ * @minLength `36`
115
+ * @maxLength `36`
116
+ * @pattern `^[a-z0-9-]+$`
117
+ */
118
+ ApplicationId: string;
119
+ /**
120
+ * @minLength `36`
121
+ * @maxLength `36`
122
+ * @pattern `^[a-z0-9-]+$`
123
+ */
124
+ IndexId: string;
125
+ /**
126
+ * @minLength `20`
127
+ * @maxLength `2048`
128
+ * @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
129
+ */
130
+ RoleArn: string;
131
+ };
107
132
  /**
108
133
  * Type definition for `AWS::SES::MailManagerRuleSet.DropAction`.
109
134
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-dropaction.html}
@@ -186,6 +211,8 @@ export type RuleAction = {
186
211
  ReplaceRecipient: ReplaceRecipientAction;
187
212
  } | {
188
213
  DeliverToMailbox: DeliverToMailboxAction;
214
+ } | {
215
+ DeliverToQBusiness: DeliverToQBusinessAction;
189
216
  };
190
217
  /**
191
218
  * Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanEmailAttribute`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.220",
3
+ "version": "0.1.221",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },