@awboost/cfntypes 0.100.75 → 0.100.76
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.
- package/lib/resources.generated.d.ts +347 -130
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
@@ -17326,6 +17326,10 @@ export type BedrockAgentFunction = {
|
|
17326
17326
|
* A map of parameter name and detail
|
17327
17327
|
*/
|
17328
17328
|
Parameters?: BedrockAgentParameterMap;
|
17329
|
+
/**
|
17330
|
+
* ENUM to check if action requires user confirmation
|
17331
|
+
*/
|
17332
|
+
RequireConfirmation?: BedrockAgentRequireConfirmation;
|
17329
17333
|
};
|
17330
17334
|
/**
|
17331
17335
|
* Type definition for `AWS::Bedrock::Agent.FunctionSchema`.
|
@@ -17489,6 +17493,12 @@ export type BedrockAgentPromptState = "ENABLED" | "DISABLED";
|
|
17489
17493
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-prompttype.html}
|
17490
17494
|
*/
|
17491
17495
|
export type BedrockAgentPromptType = "PRE_PROCESSING" | "ORCHESTRATION" | "POST_PROCESSING" | "KNOWLEDGE_BASE_RESPONSE_GENERATION";
|
17496
|
+
/**
|
17497
|
+
* Type definition for `AWS::Bedrock::Agent.RequireConfirmation`.
|
17498
|
+
* ENUM to check if action requires user confirmation
|
17499
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-agent-requireconfirmation.html}
|
17500
|
+
*/
|
17501
|
+
export type BedrockAgentRequireConfirmation = "ENABLED" | "DISABLED";
|
17492
17502
|
/**
|
17493
17503
|
* Type definition for `AWS::Bedrock::Agent.S3Identifier`.
|
17494
17504
|
* The identifier for the S3 resource.
|
@@ -21009,6 +21019,101 @@ export type BedrockPromptAttributes = {
|
|
21009
21019
|
*/
|
21010
21020
|
Version: string;
|
21011
21021
|
};
|
21022
|
+
/**
|
21023
|
+
* Type definition for `AWS::Bedrock::Prompt.AnyToolChoice`.
|
21024
|
+
* Any Tool choice
|
21025
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-anytoolchoice.html}
|
21026
|
+
*/
|
21027
|
+
export type BedrockPromptAnyToolChoice = Record<string, any>;
|
21028
|
+
/**
|
21029
|
+
* Type definition for `AWS::Bedrock::Prompt.AutoToolChoice`.
|
21030
|
+
* Auto Tool choice
|
21031
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-autotoolchoice.html}
|
21032
|
+
*/
|
21033
|
+
export type BedrockPromptAutoToolChoice = Record<string, any>;
|
21034
|
+
/**
|
21035
|
+
* Type definition for `AWS::Bedrock::Prompt.ChatPromptTemplateConfiguration`.
|
21036
|
+
* Configuration for chat prompt template
|
21037
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-chatprompttemplateconfiguration.html}
|
21038
|
+
*/
|
21039
|
+
export type BedrockPromptChatPromptTemplateConfiguration = {
|
21040
|
+
/**
|
21041
|
+
* List of input variables
|
21042
|
+
* @minLength `0`
|
21043
|
+
* @maxLength `5`
|
21044
|
+
*/
|
21045
|
+
InputVariables?: BedrockPromptPromptInputVariable[];
|
21046
|
+
/**
|
21047
|
+
* List of messages for chat prompt template
|
21048
|
+
* @minLength `0`
|
21049
|
+
*/
|
21050
|
+
Messages: BedrockPromptMessage[];
|
21051
|
+
/**
|
21052
|
+
* Configuration for chat prompt template
|
21053
|
+
* @minLength `0`
|
21054
|
+
*/
|
21055
|
+
System?: BedrockPromptSystemContentBlock[];
|
21056
|
+
/**
|
21057
|
+
* Tool configuration
|
21058
|
+
*/
|
21059
|
+
ToolConfiguration?: BedrockPromptToolConfiguration;
|
21060
|
+
};
|
21061
|
+
/**
|
21062
|
+
* Type definition for `AWS::Bedrock::Prompt.ContentBlock`.
|
21063
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-contentblock.html}
|
21064
|
+
*/
|
21065
|
+
export type BedrockPromptContentBlock = {
|
21066
|
+
/**
|
21067
|
+
* Configuration for chat prompt template
|
21068
|
+
* @minLength `1`
|
21069
|
+
*/
|
21070
|
+
Text: string;
|
21071
|
+
};
|
21072
|
+
/**
|
21073
|
+
* Type definition for `AWS::Bedrock::Prompt.ConversationRole`.
|
21074
|
+
* Conversation roles for the chat prompt
|
21075
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-conversationrole.html}
|
21076
|
+
*/
|
21077
|
+
export type BedrockPromptConversationRole = "user" | "assistant";
|
21078
|
+
/**
|
21079
|
+
* Type definition for `AWS::Bedrock::Prompt.Message`.
|
21080
|
+
* Chat prompt Message
|
21081
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-message.html}
|
21082
|
+
*/
|
21083
|
+
export type BedrockPromptMessage = {
|
21084
|
+
/**
|
21085
|
+
* List of Content Blocks
|
21086
|
+
* @minLength `1`
|
21087
|
+
*/
|
21088
|
+
Content: BedrockPromptContentBlock[];
|
21089
|
+
/**
|
21090
|
+
* Conversation roles for the chat prompt
|
21091
|
+
*/
|
21092
|
+
Role: BedrockPromptConversationRole;
|
21093
|
+
};
|
21094
|
+
/**
|
21095
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptAgentResource`.
|
21096
|
+
* Target Agent to invoke with Prompt
|
21097
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptagentresource.html}
|
21098
|
+
*/
|
21099
|
+
export type BedrockPromptPromptAgentResource = {
|
21100
|
+
/**
|
21101
|
+
* Arn representation of the Agent Alias.
|
21102
|
+
* @maxLength `2048`
|
21103
|
+
* @pattern `^arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:[0-9]{12}:agent-alias/[0-9a-zA-Z]{10}/[0-9a-zA-Z]{10}$`
|
21104
|
+
*/
|
21105
|
+
AgentIdentifier: string;
|
21106
|
+
};
|
21107
|
+
/**
|
21108
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptGenAiResource`.
|
21109
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptgenairesource.html}
|
21110
|
+
*/
|
21111
|
+
export type BedrockPromptPromptGenAiResource = {
|
21112
|
+
/**
|
21113
|
+
* Target Agent to invoke with Prompt
|
21114
|
+
*/
|
21115
|
+
Agent: BedrockPromptPromptAgentResource;
|
21116
|
+
};
|
21012
21117
|
/**
|
21013
21118
|
* Type definition for `AWS::Bedrock::Prompt.PromptInferenceConfiguration`.
|
21014
21119
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptinferenceconfiguration.html}
|
@@ -21064,6 +21169,7 @@ export type BedrockPromptPromptModelInferenceConfiguration = {
|
|
21064
21169
|
};
|
21065
21170
|
/**
|
21066
21171
|
* Type definition for `AWS::Bedrock::Prompt.PromptTemplateConfiguration`.
|
21172
|
+
* Prompt template configuration
|
21067
21173
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-prompttemplateconfiguration.html}
|
21068
21174
|
*/
|
21069
21175
|
export type BedrockPromptPromptTemplateConfiguration = {
|
@@ -21071,19 +21177,25 @@ export type BedrockPromptPromptTemplateConfiguration = {
|
|
21071
21177
|
* Configuration for text prompt template
|
21072
21178
|
*/
|
21073
21179
|
Text: BedrockPromptTextPromptTemplateConfiguration;
|
21180
|
+
} | {
|
21181
|
+
/**
|
21182
|
+
* Configuration for chat prompt template
|
21183
|
+
*/
|
21184
|
+
Chat: BedrockPromptChatPromptTemplateConfiguration;
|
21074
21185
|
};
|
21075
21186
|
/**
|
21076
21187
|
* Type definition for `AWS::Bedrock::Prompt.PromptTemplateType`.
|
21077
21188
|
* Prompt template type
|
21078
21189
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-prompttemplatetype.html}
|
21079
21190
|
*/
|
21080
|
-
export type BedrockPromptPromptTemplateType = "TEXT";
|
21191
|
+
export type BedrockPromptPromptTemplateType = "TEXT" | "CHAT";
|
21081
21192
|
/**
|
21082
21193
|
* Type definition for `AWS::Bedrock::Prompt.PromptVariant`.
|
21083
21194
|
* Prompt variant
|
21084
21195
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptvariant.html}
|
21085
21196
|
*/
|
21086
21197
|
export type BedrockPromptPromptVariant = {
|
21198
|
+
GenAiResource?: BedrockPromptPromptGenAiResource;
|
21087
21199
|
InferenceConfiguration?: BedrockPromptPromptInferenceConfiguration;
|
21088
21200
|
/**
|
21089
21201
|
* 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.
|
@@ -21097,12 +21209,40 @@ export type BedrockPromptPromptVariant = {
|
|
21097
21209
|
* @pattern `^([0-9a-zA-Z][_-]?){1,100}$`
|
21098
21210
|
*/
|
21099
21211
|
Name: string;
|
21212
|
+
/**
|
21213
|
+
* Prompt template configuration
|
21214
|
+
*/
|
21100
21215
|
TemplateConfiguration: BedrockPromptPromptTemplateConfiguration;
|
21101
21216
|
/**
|
21102
21217
|
* Prompt template type
|
21103
21218
|
*/
|
21104
21219
|
TemplateType: BedrockPromptPromptTemplateType;
|
21105
21220
|
};
|
21221
|
+
/**
|
21222
|
+
* Type definition for `AWS::Bedrock::Prompt.SpecificToolChoice`.
|
21223
|
+
* Specific Tool choice
|
21224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-specifictoolchoice.html}
|
21225
|
+
*/
|
21226
|
+
export type BedrockPromptSpecificToolChoice = {
|
21227
|
+
/**
|
21228
|
+
* Tool name
|
21229
|
+
* @minLength `1`
|
21230
|
+
* @maxLength `64`
|
21231
|
+
* @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
|
21232
|
+
*/
|
21233
|
+
Name: string;
|
21234
|
+
};
|
21235
|
+
/**
|
21236
|
+
* Type definition for `AWS::Bedrock::Prompt.SystemContentBlock`.
|
21237
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-systemcontentblock.html}
|
21238
|
+
*/
|
21239
|
+
export type BedrockPromptSystemContentBlock = {
|
21240
|
+
/**
|
21241
|
+
* Configuration for chat prompt template
|
21242
|
+
* @minLength `1`
|
21243
|
+
*/
|
21244
|
+
Text: string;
|
21245
|
+
};
|
21106
21246
|
/**
|
21107
21247
|
* Type definition for `AWS::Bedrock::Prompt.TagsMap`.
|
21108
21248
|
* A map of tag keys and values
|
@@ -21158,6 +21298,83 @@ export type BedrockPromptTextS3Location = {
|
|
21158
21298
|
*/
|
21159
21299
|
Version?: string;
|
21160
21300
|
};
|
21301
|
+
/**
|
21302
|
+
* Type definition for `AWS::Bedrock::Prompt.Tool`.
|
21303
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-tool.html}
|
21304
|
+
*/
|
21305
|
+
export type BedrockPromptTool = {
|
21306
|
+
/**
|
21307
|
+
* Tool specification
|
21308
|
+
*/
|
21309
|
+
ToolSpec: BedrockPromptToolSpecification;
|
21310
|
+
};
|
21311
|
+
/**
|
21312
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolChoice`.
|
21313
|
+
* Tool choice
|
21314
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolchoice.html}
|
21315
|
+
*/
|
21316
|
+
export type BedrockPromptToolChoice = {
|
21317
|
+
/**
|
21318
|
+
* Auto Tool choice
|
21319
|
+
*/
|
21320
|
+
Auto: BedrockPromptAutoToolChoice;
|
21321
|
+
} | {
|
21322
|
+
/**
|
21323
|
+
* Any Tool choice
|
21324
|
+
*/
|
21325
|
+
Any: BedrockPromptAnyToolChoice;
|
21326
|
+
} | {
|
21327
|
+
/**
|
21328
|
+
* Specific Tool choice
|
21329
|
+
*/
|
21330
|
+
Tool: BedrockPromptSpecificToolChoice;
|
21331
|
+
};
|
21332
|
+
/**
|
21333
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolConfiguration`.
|
21334
|
+
* Tool configuration
|
21335
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolconfiguration.html}
|
21336
|
+
*/
|
21337
|
+
export type BedrockPromptToolConfiguration = {
|
21338
|
+
/**
|
21339
|
+
* Tool choice
|
21340
|
+
*/
|
21341
|
+
ToolChoice?: BedrockPromptToolChoice;
|
21342
|
+
/**
|
21343
|
+
* List of Tools
|
21344
|
+
* @minLength `1`
|
21345
|
+
*/
|
21346
|
+
Tools: BedrockPromptTool[];
|
21347
|
+
};
|
21348
|
+
/**
|
21349
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolInputSchema`.
|
21350
|
+
* Tool input schema json
|
21351
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolinputschema.html}
|
21352
|
+
*/
|
21353
|
+
export type BedrockPromptToolInputSchema = {
|
21354
|
+
Json: Record<string, any>;
|
21355
|
+
};
|
21356
|
+
/**
|
21357
|
+
* Type definition for `AWS::Bedrock::Prompt.ToolSpecification`.
|
21358
|
+
* Tool specification
|
21359
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-toolspecification.html}
|
21360
|
+
*/
|
21361
|
+
export type BedrockPromptToolSpecification = {
|
21362
|
+
/**
|
21363
|
+
* @minLength `1`
|
21364
|
+
*/
|
21365
|
+
Description?: string;
|
21366
|
+
/**
|
21367
|
+
* Tool input schema json
|
21368
|
+
*/
|
21369
|
+
InputSchema: BedrockPromptToolInputSchema;
|
21370
|
+
/**
|
21371
|
+
* Tool name
|
21372
|
+
* @minLength `1`
|
21373
|
+
* @maxLength `64`
|
21374
|
+
* @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
|
21375
|
+
*/
|
21376
|
+
Name: string;
|
21377
|
+
};
|
21161
21378
|
/**
|
21162
21379
|
* Definition of AWS::Bedrock::PromptVersion Resource Type
|
21163
21380
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-promptversion.html}
|
@@ -41862,7 +42079,7 @@ export type DataZoneDataSourceAttributes = {
|
|
41862
42079
|
};
|
41863
42080
|
/**
|
41864
42081
|
* Type definition for `AWS::DataZone::DataSource.DataSourceConfigurationInput`.
|
41865
|
-
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration.
|
42082
|
+
* Specifies the configuration of the data source. It can be set to either glueRunConfiguration or redshiftRunConfiguration or sageMakerRunConfiguration.
|
41866
42083
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-datasourceconfigurationinput.html}
|
41867
42084
|
*/
|
41868
42085
|
export type DataZoneDataSourceDataSourceConfigurationInput = {
|
@@ -41872,6 +42089,11 @@ export type DataZoneDataSourceDataSourceConfigurationInput = {
|
|
41872
42089
|
* The configuration details of the Amazon Redshift data source.
|
41873
42090
|
*/
|
41874
42091
|
RedshiftRunConfiguration?: DataZoneDataSourceRedshiftRunConfigurationInput;
|
42092
|
+
} | {
|
42093
|
+
/**
|
42094
|
+
* The configuration details of the Amazon SageMaker data source.
|
42095
|
+
*/
|
42096
|
+
SageMakerRunConfiguration?: DataZoneDataSourceSageMakerRunConfigurationInput;
|
41875
42097
|
};
|
41876
42098
|
/**
|
41877
42099
|
* Type definition for `AWS::DataZone::DataSource.DataSourceStatus`.
|
@@ -42073,6 +42295,17 @@ export type DataZoneDataSourceRelationalFilterConfiguration = {
|
|
42073
42295
|
*/
|
42074
42296
|
SchemaName?: string;
|
42075
42297
|
};
|
42298
|
+
/**
|
42299
|
+
* Type definition for `AWS::DataZone::DataSource.SageMakerRunConfigurationInput`.
|
42300
|
+
* The configuration details of the Amazon SageMaker data source.
|
42301
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-sagemakerrunconfigurationinput.html}
|
42302
|
+
*/
|
42303
|
+
export type DataZoneDataSourceSageMakerRunConfigurationInput = {
|
42304
|
+
/**
|
42305
|
+
* The tracking assets of the Amazon SageMaker run.
|
42306
|
+
*/
|
42307
|
+
TrackingAssets: DataZoneDataSourceTrackingAssets;
|
42308
|
+
};
|
42076
42309
|
/**
|
42077
42310
|
* Type definition for `AWS::DataZone::DataSource.ScheduleConfiguration`.
|
42078
42311
|
* The schedule of the data source runs.
|
@@ -42091,6 +42324,12 @@ export type DataZoneDataSourceScheduleConfiguration = {
|
|
42091
42324
|
*/
|
42092
42325
|
Timezone?: string;
|
42093
42326
|
};
|
42327
|
+
/**
|
42328
|
+
* Type definition for `AWS::DataZone::DataSource.TrackingAssets`.
|
42329
|
+
* The tracking assets of the Amazon SageMaker run.
|
42330
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-datasource-trackingassets.html}
|
42331
|
+
*/
|
42332
|
+
export type DataZoneDataSourceTrackingAssets = Record<string, string[]>;
|
42094
42333
|
/**
|
42095
42334
|
* Resource type definition for `AWS::DataZone::Domain`.
|
42096
42335
|
* A domain is an organizing entity for connecting together assets, users, and their projects
|
@@ -49482,7 +49721,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
49482
49721
|
* The network interfaces for the instance.
|
49483
49722
|
*/
|
49484
49723
|
NetworkInterfaces?: EC2LaunchTemplateNetworkInterface[];
|
49485
|
-
NetworkPerformanceOptions?:
|
49724
|
+
NetworkPerformanceOptions?: any;
|
49486
49725
|
/**
|
49487
49726
|
* The placement for the instance.
|
49488
49727
|
*/
|
@@ -124208,7 +124447,7 @@ export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
|
|
124208
124447
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
124209
124448
|
*/
|
124210
124449
|
export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
|
124211
|
-
Interactions?:
|
124450
|
+
Interactions?: any;
|
124212
124451
|
Legend?: QuickSightAnalysisLegendOptions;
|
124213
124452
|
MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
|
124214
124453
|
MapState?: QuickSightAnalysisGeospatialMapState;
|
@@ -124278,7 +124517,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
|
|
124278
124517
|
*/
|
124279
124518
|
export type QuickSightAnalysisGeospatialMapConfiguration = {
|
124280
124519
|
FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
|
124281
|
-
Interactions?:
|
124520
|
+
Interactions?: any;
|
124282
124521
|
Legend?: QuickSightAnalysisLegendOptions;
|
124283
124522
|
MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
|
124284
124523
|
PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
|
@@ -124816,7 +125055,7 @@ export type QuickSightAnalysisImageInteractionOptions = {
|
|
124816
125055
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
124817
125056
|
*/
|
124818
125057
|
export type QuickSightAnalysisImageMenuOption = {
|
124819
|
-
AvailabilityStatus?:
|
125058
|
+
AvailabilityStatus?: any;
|
124820
125059
|
};
|
124821
125060
|
/**
|
124822
125061
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
@@ -130908,7 +131147,7 @@ export type QuickSightDashboardDashboardPublishOptions = {
|
|
130908
131147
|
*/
|
130909
131148
|
SheetLayoutElementMaximizationOption?: QuickSightDashboardSheetLayoutElementMaximizationOption;
|
130910
131149
|
VisualAxisSortOption?: QuickSightDashboardVisualAxisSortOption;
|
130911
|
-
VisualMenuOption?:
|
131150
|
+
VisualMenuOption?: any;
|
130912
131151
|
/**
|
130913
131152
|
* <p>The visual publish options of a visual in a dashboard</p>
|
130914
131153
|
*/
|
@@ -132892,7 +133131,7 @@ export type QuickSightDashboardGeospatialLayerJoinDefinition = {
|
|
132892
133131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
132893
133132
|
*/
|
132894
133133
|
export type QuickSightDashboardGeospatialLayerMapConfiguration = {
|
132895
|
-
Interactions?:
|
133134
|
+
Interactions?: any;
|
132896
133135
|
Legend?: QuickSightDashboardLegendOptions;
|
132897
133136
|
MapLayers?: QuickSightDashboardGeospatialLayerItem[];
|
132898
133137
|
MapState?: QuickSightDashboardGeospatialMapState;
|
@@ -132962,7 +133201,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
|
|
132962
133201
|
*/
|
132963
133202
|
export type QuickSightDashboardGeospatialMapConfiguration = {
|
132964
133203
|
FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
|
132965
|
-
Interactions?:
|
133204
|
+
Interactions?: any;
|
132966
133205
|
Legend?: QuickSightDashboardLegendOptions;
|
132967
133206
|
MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
|
132968
133207
|
PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
|
@@ -137604,13 +137843,6 @@ export type QuickSightDashboardVisualCustomActionOperation = {
|
|
137604
137843
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
137605
137844
|
*/
|
137606
137845
|
export type QuickSightDashboardVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
137607
|
-
/**
|
137608
|
-
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
137609
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
137610
|
-
*/
|
137611
|
-
export type QuickSightDashboardVisualMenuOption = {
|
137612
|
-
AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
|
137613
|
-
};
|
137614
137846
|
/**
|
137615
137847
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
137616
137848
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
@@ -138371,11 +138603,6 @@ export type QuickSightDataSetFieldFolder = {
|
|
138371
138603
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfoldermap.html}
|
138372
138604
|
*/
|
138373
138605
|
export type QuickSightDataSetFieldFolderMap = Record<string, QuickSightDataSetFieldFolder>;
|
138374
|
-
/**
|
138375
|
-
* Type definition for `AWS::QuickSight::DataSet.FileFormat`.
|
138376
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fileformat.html}
|
138377
|
-
*/
|
138378
|
-
export type QuickSightDataSetFileFormat = "CSV" | "TSV" | "CLF" | "ELF" | "XLSX" | "JSON";
|
138379
138606
|
/**
|
138380
138607
|
* Type definition for `AWS::QuickSight::DataSet.FilterOperation`.
|
138381
138608
|
* <p>A transform operation that filters rows based on a condition.</p>
|
@@ -138969,10 +139196,7 @@ export type QuickSightDataSetS3Source = {
|
|
138969
139196
|
* @maxLength `2048`
|
138970
139197
|
*/
|
138971
139198
|
InputColumns: QuickSightDataSetInputColumn[];
|
138972
|
-
|
138973
|
-
* <p>Information about the format for a source file or files.</p>
|
138974
|
-
*/
|
138975
|
-
UploadSettings?: QuickSightDataSetUploadSettings;
|
139199
|
+
UploadSettings?: any;
|
138976
139200
|
};
|
138977
139201
|
/**
|
138978
139202
|
* Type definition for `AWS::QuickSight::DataSet.Status`.
|
@@ -139060,11 +139284,6 @@ export type QuickSightDataSetTagColumnOperation = {
|
|
139060
139284
|
*/
|
139061
139285
|
Tags: QuickSightDataSetColumnTag[];
|
139062
139286
|
};
|
139063
|
-
/**
|
139064
|
-
* Type definition for `AWS::QuickSight::DataSet.TextQualifier`.
|
139065
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-textqualifier.html}
|
139066
|
-
*/
|
139067
|
-
export type QuickSightDataSetTextQualifier = "DOUBLE_QUOTE" | "SINGLE_QUOTE";
|
139068
139287
|
/**
|
139069
139288
|
* Type definition for `AWS::QuickSight::DataSet.TimeGranularity`.
|
139070
139289
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-timegranularity.html}
|
@@ -139140,30 +139359,6 @@ export type QuickSightDataSetUntagColumnOperation = {
|
|
139140
139359
|
*/
|
139141
139360
|
TagNames: QuickSightDataSetColumnTagName[];
|
139142
139361
|
};
|
139143
|
-
/**
|
139144
|
-
* Type definition for `AWS::QuickSight::DataSet.UploadSettings`.
|
139145
|
-
* <p>Information about the format for a source file or files.</p>
|
139146
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html}
|
139147
|
-
*/
|
139148
|
-
export type QuickSightDataSetUploadSettings = {
|
139149
|
-
/**
|
139150
|
-
* <p>Whether the file has a header row, or the files each have a header row.</p>
|
139151
|
-
*/
|
139152
|
-
ContainsHeader?: boolean;
|
139153
|
-
/**
|
139154
|
-
* <p>The delimiter between values in the file.</p>
|
139155
|
-
* @minLength `1`
|
139156
|
-
* @maxLength `1`
|
139157
|
-
*/
|
139158
|
-
Delimiter?: string;
|
139159
|
-
Format?: QuickSightDataSetFileFormat;
|
139160
|
-
/**
|
139161
|
-
* <p>A row number to start reading data from.</p>
|
139162
|
-
* @min `1`
|
139163
|
-
*/
|
139164
|
-
StartFromRow?: number;
|
139165
|
-
TextQualifier?: QuickSightDataSetTextQualifier;
|
139166
|
-
};
|
139167
139362
|
/**
|
139168
139363
|
* Definition of the AWS::QuickSight::DataSource Resource Type.
|
139169
139364
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html}
|
@@ -140561,7 +140756,7 @@ export type QuickSightTemplateAttributes = {
|
|
140561
140756
|
ImageContentAltText: string;
|
140562
140757
|
Interactions: {
|
140563
140758
|
ImageMenuOption: {
|
140564
|
-
AvailabilityStatus:
|
140759
|
+
AvailabilityStatus: any;
|
140565
140760
|
};
|
140566
140761
|
};
|
140567
140762
|
Scaling: {
|
@@ -140591,7 +140786,7 @@ export type QuickSightTemplateAttributes = {
|
|
140591
140786
|
*/
|
140592
140787
|
PlainText: string;
|
140593
140788
|
};
|
140594
|
-
Visibility:
|
140789
|
+
Visibility: any;
|
140595
140790
|
};
|
140596
140791
|
}[];
|
140597
140792
|
/**
|
@@ -140763,13 +140958,13 @@ export type QuickSightTemplateAxisDisplayMinMaxRange = {
|
|
140763
140958
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axisdisplayoptions.html}
|
140764
140959
|
*/
|
140765
140960
|
export type QuickSightTemplateAxisDisplayOptions = {
|
140766
|
-
AxisLineVisibility?:
|
140961
|
+
AxisLineVisibility?: any;
|
140767
140962
|
/**
|
140768
140963
|
* String based length that is composed of value and unit in px
|
140769
140964
|
*/
|
140770
140965
|
AxisOffset?: string;
|
140771
140966
|
DataOptions?: QuickSightTemplateAxisDataOptions;
|
140772
|
-
GridLineVisibility?:
|
140967
|
+
GridLineVisibility?: any;
|
140773
140968
|
ScrollbarOptions?: QuickSightTemplateScrollBarOptions;
|
140774
140969
|
TickLabelOptions?: QuickSightTemplateAxisTickLabelOptions;
|
140775
140970
|
};
|
@@ -141066,8 +141261,8 @@ export type QuickSightTemplateBoxPlotFillStyle = "SOLID" | "TRANSPARENT";
|
|
141066
141261
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotoptions.html}
|
141067
141262
|
*/
|
141068
141263
|
export type QuickSightTemplateBoxPlotOptions = {
|
141069
|
-
AllDataPointsVisibility?:
|
141070
|
-
OutlierVisibility?:
|
141264
|
+
AllDataPointsVisibility?: any;
|
141265
|
+
OutlierVisibility?: any;
|
141071
141266
|
StyleOptions?: QuickSightTemplateBoxPlotStyleOptions;
|
141072
141267
|
};
|
141073
141268
|
/**
|
@@ -141277,8 +141472,8 @@ export type QuickSightTemplateChartAxisLabelOptions = {
|
|
141277
141472
|
* @maxLength `100`
|
141278
141473
|
*/
|
141279
141474
|
AxisLabelOptions?: QuickSightTemplateAxisLabelOptions[];
|
141280
|
-
SortIconVisibility?:
|
141281
|
-
Visibility?:
|
141475
|
+
SortIconVisibility?: any;
|
141476
|
+
Visibility?: any;
|
141282
141477
|
};
|
141283
141478
|
/**
|
141284
141479
|
* Type definition for `AWS::QuickSight::Template.ClusterMarker`.
|
@@ -141428,7 +141623,7 @@ export type QuickSightTemplateColumnTooltipItem = {
|
|
141428
141623
|
Column: QuickSightTemplateColumnIdentifier;
|
141429
141624
|
Label?: string;
|
141430
141625
|
TooltipTarget?: QuickSightTemplateTooltipTarget;
|
141431
|
-
Visibility?:
|
141626
|
+
Visibility?: any;
|
141432
141627
|
};
|
141433
141628
|
/**
|
141434
141629
|
* Type definition for `AWS::QuickSight::Template.ComboChartAggregatedFieldWells`.
|
@@ -141966,7 +142161,7 @@ export type QuickSightTemplateDataLabelContent = "VALUE" | "PERCENT" | "VALUE_AN
|
|
141966
142161
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeloptions.html}
|
141967
142162
|
*/
|
141968
142163
|
export type QuickSightTemplateDataLabelOptions = {
|
141969
|
-
CategoryLabelVisibility?:
|
142164
|
+
CategoryLabelVisibility?: any;
|
141970
142165
|
/**
|
141971
142166
|
* @minLength `0`
|
141972
142167
|
* @maxLength `100`
|
@@ -141978,11 +142173,11 @@ export type QuickSightTemplateDataLabelOptions = {
|
|
141978
142173
|
LabelColor?: string;
|
141979
142174
|
LabelContent?: QuickSightTemplateDataLabelContent;
|
141980
142175
|
LabelFontConfiguration?: QuickSightTemplateFontConfiguration;
|
141981
|
-
MeasureLabelVisibility?:
|
142176
|
+
MeasureLabelVisibility?: any;
|
141982
142177
|
Overlap?: QuickSightTemplateDataLabelOverlap;
|
141983
142178
|
Position?: QuickSightTemplateDataLabelPosition;
|
141984
|
-
TotalsVisibility?:
|
141985
|
-
Visibility?:
|
142179
|
+
TotalsVisibility?: any;
|
142180
|
+
Visibility?: any;
|
141986
142181
|
};
|
141987
142182
|
/**
|
141988
142183
|
* Type definition for `AWS::QuickSight::Template.DataLabelOverlap`.
|
@@ -142032,7 +142227,7 @@ export type QuickSightTemplateDataPathLabelType = {
|
|
142032
142227
|
* @maxLength `2048`
|
142033
142228
|
*/
|
142034
142229
|
FieldValue?: string;
|
142035
|
-
Visibility?:
|
142230
|
+
Visibility?: any;
|
142036
142231
|
};
|
142037
142232
|
/**
|
142038
142233
|
* Type definition for `AWS::QuickSight::Template.DataPathSort`.
|
@@ -142130,7 +142325,7 @@ export type QuickSightTemplateDateAggregationFunction = "COUNT" | "DISTINCT_COUN
|
|
142130
142325
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dateaxisoptions.html}
|
142131
142326
|
*/
|
142132
142327
|
export type QuickSightTemplateDateAxisOptions = {
|
142133
|
-
MissingDateVisibility?:
|
142328
|
+
MissingDateVisibility?: any;
|
142134
142329
|
};
|
142135
142330
|
/**
|
142136
142331
|
* Type definition for `AWS::QuickSight::Template.DateDimensionField`.
|
@@ -142469,7 +142664,7 @@ export type QuickSightTemplateDimensionField = {
|
|
142469
142664
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-donutcenteroptions.html}
|
142470
142665
|
*/
|
142471
142666
|
export type QuickSightTemplateDonutCenterOptions = {
|
142472
|
-
LabelVisibility?:
|
142667
|
+
LabelVisibility?: any;
|
142473
142668
|
};
|
142474
142669
|
/**
|
142475
142670
|
* Type definition for `AWS::QuickSight::Template.DonutOptions`.
|
@@ -142573,7 +142768,7 @@ export type QuickSightTemplateExplicitHierarchy = {
|
|
142573
142768
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fieldbasedtooltip.html}
|
142574
142769
|
*/
|
142575
142770
|
export type QuickSightTemplateFieldBasedTooltip = {
|
142576
|
-
AggregationVisibility?:
|
142771
|
+
AggregationVisibility?: any;
|
142577
142772
|
/**
|
142578
142773
|
* @minLength `0`
|
142579
142774
|
* @maxLength `100`
|
@@ -142591,7 +142786,7 @@ export type QuickSightTemplateFieldLabelType = {
|
|
142591
142786
|
* @maxLength `512`
|
142592
142787
|
*/
|
142593
142788
|
FieldId?: string;
|
142594
|
-
Visibility?:
|
142789
|
+
Visibility?: any;
|
142595
142790
|
};
|
142596
142791
|
/**
|
142597
142792
|
* Type definition for `AWS::QuickSight::Template.FieldSeriesItem`.
|
@@ -142638,7 +142833,7 @@ export type QuickSightTemplateFieldTooltipItem = {
|
|
142638
142833
|
FieldId: string;
|
142639
142834
|
Label?: string;
|
142640
142835
|
TooltipTarget?: QuickSightTemplateTooltipTarget;
|
142641
|
-
Visibility?:
|
142836
|
+
Visibility?: any;
|
142642
142837
|
};
|
142643
142838
|
/**
|
142644
142839
|
* Type definition for `AWS::QuickSight::Template.FilledMapAggregatedFieldWells`.
|
@@ -143224,7 +143419,7 @@ export type QuickSightTemplateFreeFormLayoutElement = {
|
|
143224
143419
|
*/
|
143225
143420
|
RenderingRules?: QuickSightTemplateSheetElementRenderingRule[];
|
143226
143421
|
SelectedBorderStyle?: QuickSightTemplateFreeFormLayoutElementBorderStyle;
|
143227
|
-
Visibility?:
|
143422
|
+
Visibility?: any;
|
143228
143423
|
/**
|
143229
143424
|
* String based length that is composed of value and unit in px
|
143230
143425
|
*/
|
@@ -143247,7 +143442,7 @@ export type QuickSightTemplateFreeFormLayoutElementBackgroundStyle = {
|
|
143247
143442
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
143248
143443
|
*/
|
143249
143444
|
Color?: string;
|
143250
|
-
Visibility?:
|
143445
|
+
Visibility?: any;
|
143251
143446
|
};
|
143252
143447
|
/**
|
143253
143448
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle`.
|
@@ -143258,7 +143453,7 @@ export type QuickSightTemplateFreeFormLayoutElementBorderStyle = {
|
|
143258
143453
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
143259
143454
|
*/
|
143260
143455
|
Color?: string;
|
143261
|
-
Visibility?:
|
143456
|
+
Visibility?: any;
|
143262
143457
|
};
|
143263
143458
|
/**
|
143264
143459
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutScreenCanvasSizeOptions`.
|
@@ -143315,16 +143510,16 @@ export type QuickSightTemplateFunnelChartConfiguration = {
|
|
143315
143510
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-funnelchartdatalabeloptions.html}
|
143316
143511
|
*/
|
143317
143512
|
export type QuickSightTemplateFunnelChartDataLabelOptions = {
|
143318
|
-
CategoryLabelVisibility?:
|
143513
|
+
CategoryLabelVisibility?: any;
|
143319
143514
|
/**
|
143320
143515
|
* @pattern `^#[A-F0-9]{6}$`
|
143321
143516
|
*/
|
143322
143517
|
LabelColor?: string;
|
143323
143518
|
LabelFontConfiguration?: QuickSightTemplateFontConfiguration;
|
143324
143519
|
MeasureDataLabelStyle?: QuickSightTemplateFunnelChartMeasureDataLabelStyle;
|
143325
|
-
MeasureLabelVisibility?:
|
143520
|
+
MeasureLabelVisibility?: any;
|
143326
143521
|
Position?: QuickSightTemplateDataLabelPosition;
|
143327
|
-
Visibility?:
|
143522
|
+
Visibility?: any;
|
143328
143523
|
};
|
143329
143524
|
/**
|
143330
143525
|
* Type definition for `AWS::QuickSight::Template.FunnelChartFieldWells`.
|
@@ -143982,7 +144177,7 @@ export type QuickSightTemplateImageInteractionOptions = {
|
|
143982
144177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
143983
144178
|
*/
|
143984
144179
|
export type QuickSightTemplateImageMenuOption = {
|
143985
|
-
AvailabilityStatus?:
|
144180
|
+
AvailabilityStatus?: any;
|
143986
144181
|
};
|
143987
144182
|
/**
|
143988
144183
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
@@ -144198,9 +144393,9 @@ export type QuickSightTemplateKPISparklineOptions = {
|
|
144198
144393
|
* @pattern `^#[A-F0-9]{6}$`
|
144199
144394
|
*/
|
144200
144395
|
Color?: string;
|
144201
|
-
TooltipVisibility?:
|
144396
|
+
TooltipVisibility?: any;
|
144202
144397
|
Type: QuickSightTemplateKPISparklineType;
|
144203
|
-
Visibility?:
|
144398
|
+
Visibility?: any;
|
144204
144399
|
};
|
144205
144400
|
/**
|
144206
144401
|
* Type definition for `AWS::QuickSight::Template.KPISparklineType`.
|
@@ -144264,7 +144459,7 @@ export type QuickSightTemplateKPIVisualStandardLayoutType = "CLASSIC" | "VERTICA
|
|
144264
144459
|
export type QuickSightTemplateLabelOptions = {
|
144265
144460
|
CustomLabel?: string;
|
144266
144461
|
FontConfiguration?: QuickSightTemplateFontConfiguration;
|
144267
|
-
Visibility?:
|
144462
|
+
Visibility?: any;
|
144268
144463
|
};
|
144269
144464
|
/**
|
144270
144465
|
* Type definition for `AWS::QuickSight::Template.Layout`.
|
@@ -144299,7 +144494,7 @@ export type QuickSightTemplateLegendOptions = {
|
|
144299
144494
|
Position?: QuickSightTemplateLegendPosition;
|
144300
144495
|
Title?: QuickSightTemplateLabelOptions;
|
144301
144496
|
ValueFontConfiguration?: QuickSightTemplateFontConfiguration;
|
144302
|
-
Visibility?:
|
144497
|
+
Visibility?: any;
|
144303
144498
|
/**
|
144304
144499
|
* String based length that is composed of value and unit in px
|
144305
144500
|
*/
|
@@ -144406,7 +144601,7 @@ export type QuickSightTemplateLineChartLineStyle = "SOLID" | "DOTTED" | "DASHED"
|
|
144406
144601
|
export type QuickSightTemplateLineChartLineStyleSettings = {
|
144407
144602
|
LineInterpolation?: QuickSightTemplateLineInterpolation;
|
144408
144603
|
LineStyle?: QuickSightTemplateLineChartLineStyle;
|
144409
|
-
LineVisibility?:
|
144604
|
+
LineVisibility?: any;
|
144410
144605
|
/**
|
144411
144606
|
* String based length that is composed of value and unit in px
|
144412
144607
|
*/
|
@@ -144431,7 +144626,7 @@ export type QuickSightTemplateLineChartMarkerStyleSettings = {
|
|
144431
144626
|
* String based length that is composed of value and unit in px
|
144432
144627
|
*/
|
144433
144628
|
MarkerSize?: string;
|
144434
|
-
MarkerVisibility?:
|
144629
|
+
MarkerVisibility?: any;
|
144435
144630
|
};
|
144436
144631
|
/**
|
144437
144632
|
* Type definition for `AWS::QuickSight::Template.LineChartSeriesSettings`.
|
@@ -144527,21 +144722,21 @@ export type QuickSightTemplateListControlDisplayOptions = {
|
|
144527
144722
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolsearchoptions.html}
|
144528
144723
|
*/
|
144529
144724
|
export type QuickSightTemplateListControlSearchOptions = {
|
144530
|
-
Visibility?:
|
144725
|
+
Visibility?: any;
|
144531
144726
|
};
|
144532
144727
|
/**
|
144533
144728
|
* Type definition for `AWS::QuickSight::Template.ListControlSelectAllOptions`.
|
144534
144729
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolselectalloptions.html}
|
144535
144730
|
*/
|
144536
144731
|
export type QuickSightTemplateListControlSelectAllOptions = {
|
144537
|
-
Visibility?:
|
144732
|
+
Visibility?: any;
|
144538
144733
|
};
|
144539
144734
|
/**
|
144540
144735
|
* Type definition for `AWS::QuickSight::Template.LoadingAnimation`.
|
144541
144736
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-loadinganimation.html}
|
144542
144737
|
*/
|
144543
144738
|
export type QuickSightTemplateLoadingAnimation = {
|
144544
|
-
Visibility?:
|
144739
|
+
Visibility?: any;
|
144545
144740
|
};
|
144546
144741
|
/**
|
144547
144742
|
* Type definition for `AWS::QuickSight::Template.LocalNavigationConfiguration`.
|
@@ -144598,7 +144793,7 @@ export type QuickSightTemplateMapZoomMode = "AUTO" | "MANUAL";
|
|
144598
144793
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-maximumlabeltype.html}
|
144599
144794
|
*/
|
144600
144795
|
export type QuickSightTemplateMaximumLabelType = {
|
144601
|
-
Visibility?:
|
144796
|
+
Visibility?: any;
|
144602
144797
|
};
|
144603
144798
|
/**
|
144604
144799
|
* Type definition for `AWS::QuickSight::Template.MaximumMinimumComputation`.
|
@@ -144652,7 +144847,7 @@ export type QuickSightTemplateMetricComparisonComputation = {
|
|
144652
144847
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-minimumlabeltype.html}
|
144653
144848
|
*/
|
144654
144849
|
export type QuickSightTemplateMinimumLabelType = {
|
144655
|
-
Visibility?:
|
144850
|
+
Visibility?: any;
|
144656
144851
|
};
|
144657
144852
|
/**
|
144658
144853
|
* Type definition for `AWS::QuickSight::Template.MissingDataConfiguration`.
|
@@ -144914,7 +145109,7 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
144914
145109
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
144915
145110
|
*/
|
144916
145111
|
BackgroundColor?: string;
|
144917
|
-
BackgroundVisibility?:
|
145112
|
+
BackgroundVisibility?: any;
|
144918
145113
|
/**
|
144919
145114
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
144920
145115
|
*/
|
@@ -144924,12 +145119,12 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
144924
145119
|
* String based length that is composed of value and unit in px
|
144925
145120
|
*/
|
144926
145121
|
BorderThickness?: string;
|
144927
|
-
BorderVisibility?:
|
145122
|
+
BorderVisibility?: any;
|
144928
145123
|
/**
|
144929
145124
|
* String based length that is composed of value and unit in px
|
144930
145125
|
*/
|
144931
145126
|
GutterSpacing?: string;
|
144932
|
-
GutterVisibility?:
|
145127
|
+
GutterVisibility?: any;
|
144933
145128
|
Title?: QuickSightTemplatePanelTitleOptions;
|
144934
145129
|
};
|
144935
145130
|
/**
|
@@ -144939,7 +145134,7 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
144939
145134
|
export type QuickSightTemplatePanelTitleOptions = {
|
144940
145135
|
FontConfiguration?: QuickSightTemplateFontConfiguration;
|
144941
145136
|
HorizontalTextAlignment?: QuickSightTemplateHorizontalTextAlignment;
|
144942
|
-
Visibility?:
|
145137
|
+
Visibility?: any;
|
144943
145138
|
};
|
144944
145139
|
/**
|
144945
145140
|
* Type definition for `AWS::QuickSight::Template.PaperOrientation`.
|
@@ -145477,7 +145672,7 @@ export type QuickSightTemplatePivotTableFieldOption = {
|
|
145477
145672
|
* @maxLength `512`
|
145478
145673
|
*/
|
145479
145674
|
FieldId: string;
|
145480
|
-
Visibility?:
|
145675
|
+
Visibility?: any;
|
145481
145676
|
};
|
145482
145677
|
/**
|
145483
145678
|
* Type definition for `AWS::QuickSight::Template.PivotTableFieldOptions`.
|
@@ -145525,9 +145720,9 @@ export type QuickSightTemplatePivotTableMetricPlacement = "ROW" | "COLUMN";
|
|
145525
145720
|
*/
|
145526
145721
|
export type QuickSightTemplatePivotTableOptions = {
|
145527
145722
|
CellStyle?: QuickSightTemplateTableCellStyle;
|
145528
|
-
CollapsedRowDimensionsVisibility?:
|
145723
|
+
CollapsedRowDimensionsVisibility?: any;
|
145529
145724
|
ColumnHeaderStyle?: QuickSightTemplateTableCellStyle;
|
145530
|
-
ColumnNamesVisibility?:
|
145725
|
+
ColumnNamesVisibility?: any;
|
145531
145726
|
/**
|
145532
145727
|
* String based length that is composed of value and unit in px
|
145533
145728
|
*/
|
@@ -145538,16 +145733,16 @@ export type QuickSightTemplatePivotTableOptions = {
|
|
145538
145733
|
RowHeaderStyle?: QuickSightTemplateTableCellStyle;
|
145539
145734
|
RowsLabelOptions?: QuickSightTemplatePivotTableRowsLabelOptions;
|
145540
145735
|
RowsLayout?: QuickSightTemplatePivotTableRowsLayout;
|
145541
|
-
SingleMetricVisibility?:
|
145542
|
-
ToggleButtonsVisibility?:
|
145736
|
+
SingleMetricVisibility?: any;
|
145737
|
+
ToggleButtonsVisibility?: any;
|
145543
145738
|
};
|
145544
145739
|
/**
|
145545
145740
|
* Type definition for `AWS::QuickSight::Template.PivotTablePaginatedReportOptions`.
|
145546
145741
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pivottablepaginatedreportoptions.html}
|
145547
145742
|
*/
|
145548
145743
|
export type QuickSightTemplatePivotTablePaginatedReportOptions = {
|
145549
|
-
OverflowColumnHeaderVisibility?:
|
145550
|
-
VerticalOverflowVisibility?:
|
145744
|
+
OverflowColumnHeaderVisibility?: any;
|
145745
|
+
VerticalOverflowVisibility?: any;
|
145551
145746
|
};
|
145552
145747
|
/**
|
145553
145748
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLabelOptions`.
|
@@ -145559,7 +145754,7 @@ export type QuickSightTemplatePivotTableRowsLabelOptions = {
|
|
145559
145754
|
* @maxLength `1024`
|
145560
145755
|
*/
|
145561
145756
|
CustomLabel?: string;
|
145562
|
-
Visibility?:
|
145757
|
+
Visibility?: any;
|
145563
145758
|
};
|
145564
145759
|
/**
|
145565
145760
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLayout`.
|
@@ -145642,7 +145837,7 @@ export type QuickSightTemplatePivotTotalOptions = {
|
|
145642
145837
|
*/
|
145643
145838
|
TotalAggregationOptions?: QuickSightTemplateTotalAggregationOption[];
|
145644
145839
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
145645
|
-
TotalsVisibility?:
|
145840
|
+
TotalsVisibility?: any;
|
145646
145841
|
ValueCellStyle?: QuickSightTemplateTableCellStyle;
|
145647
145842
|
};
|
145648
145843
|
/**
|
@@ -145778,7 +145973,7 @@ export type QuickSightTemplatePrimaryValueDisplayType = "HIDDEN" | "COMPARISON"
|
|
145778
145973
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-progressbaroptions.html}
|
145779
145974
|
*/
|
145780
145975
|
export type QuickSightTemplateProgressBarOptions = {
|
145781
|
-
Visibility?:
|
145976
|
+
Visibility?: any;
|
145782
145977
|
};
|
145783
145978
|
/**
|
145784
145979
|
* Type definition for `AWS::QuickSight::Template.QueryExecutionMode`.
|
@@ -145818,7 +146013,7 @@ export type QuickSightTemplateRadarChartAggregatedFieldWells = {
|
|
145818
146013
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartareastylesettings.html}
|
145819
146014
|
*/
|
145820
146015
|
export type QuickSightTemplateRadarChartAreaStyleSettings = {
|
145821
|
-
Visibility?:
|
146016
|
+
Visibility?: any;
|
145822
146017
|
};
|
145823
146018
|
/**
|
145824
146019
|
* Type definition for `AWS::QuickSight::Template.RadarChartAxesRangeScale`.
|
@@ -145830,7 +146025,7 @@ export type QuickSightTemplateRadarChartAxesRangeScale = "AUTO" | "INDEPENDENT"
|
|
145830
146025
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartconfiguration.html}
|
145831
146026
|
*/
|
145832
146027
|
export type QuickSightTemplateRadarChartConfiguration = {
|
145833
|
-
AlternateBandColorsVisibility?:
|
146028
|
+
AlternateBandColorsVisibility?: any;
|
145834
146029
|
/**
|
145835
146030
|
* @pattern `^#[A-F0-9]{6}$`
|
145836
146031
|
*/
|
@@ -145928,7 +146123,7 @@ export type QuickSightTemplateRadarChartVisual = {
|
|
145928
146123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-rangeendslabeltype.html}
|
145929
146124
|
*/
|
145930
146125
|
export type QuickSightTemplateRangeEndsLabelType = {
|
145931
|
-
Visibility?:
|
146126
|
+
Visibility?: any;
|
145932
146127
|
};
|
145933
146128
|
/**
|
145934
146129
|
* Type definition for `AWS::QuickSight::Template.ReferenceLine`.
|
@@ -146364,7 +146559,7 @@ export type QuickSightTemplateScatterPlotVisual = {
|
|
146364
146559
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scrollbaroptions.html}
|
146365
146560
|
*/
|
146366
146561
|
export type QuickSightTemplateScrollBarOptions = {
|
146367
|
-
Visibility?:
|
146562
|
+
Visibility?: any;
|
146368
146563
|
VisibleRange?: QuickSightTemplateVisibleRangeOptions;
|
146369
146564
|
};
|
146370
146565
|
/**
|
@@ -146372,7 +146567,7 @@ export type QuickSightTemplateScrollBarOptions = {
|
|
146372
146567
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-secondaryvalueoptions.html}
|
146373
146568
|
*/
|
146374
146569
|
export type QuickSightTemplateSecondaryValueOptions = {
|
146375
|
-
Visibility?:
|
146570
|
+
Visibility?: any;
|
146376
146571
|
};
|
146377
146572
|
/**
|
146378
146573
|
* Type definition for `AWS::QuickSight::Template.SectionAfterPageBreak`.
|
@@ -146553,7 +146748,7 @@ export type QuickSightTemplateSheetControlInfoIconLabelOptions = {
|
|
146553
146748
|
* @maxLength `100`
|
146554
146749
|
*/
|
146555
146750
|
InfoIconText?: string;
|
146556
|
-
Visibility?:
|
146751
|
+
Visibility?: any;
|
146557
146752
|
};
|
146558
146753
|
/**
|
146559
146754
|
* Type definition for `AWS::QuickSight::Template.SheetControlLayout`.
|
@@ -146647,7 +146842,7 @@ export type QuickSightTemplateSheetDefinition = {
|
|
146647
146842
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetelementconfigurationoverrides.html}
|
146648
146843
|
*/
|
146649
146844
|
export type QuickSightTemplateSheetElementConfigurationOverrides = {
|
146650
|
-
Visibility?:
|
146845
|
+
Visibility?: any;
|
146651
146846
|
};
|
146652
146847
|
/**
|
146653
146848
|
* Type definition for `AWS::QuickSight::Template.SheetElementRenderingRule`.
|
@@ -146724,7 +146919,7 @@ export type QuickSightTemplateSheetImageStaticFileSource = {
|
|
146724
146919
|
*/
|
146725
146920
|
export type QuickSightTemplateSheetImageTooltipConfiguration = {
|
146726
146921
|
TooltipText?: QuickSightTemplateSheetImageTooltipText;
|
146727
|
-
Visibility?:
|
146922
|
+
Visibility?: any;
|
146728
146923
|
};
|
146729
146924
|
/**
|
146730
146925
|
* Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
|
@@ -146974,7 +147169,7 @@ export type QuickSightTemplateSubtotalOptions = {
|
|
146974
147169
|
*/
|
146975
147170
|
StyleTargets?: QuickSightTemplateTableStyleTarget[];
|
146976
147171
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
146977
|
-
TotalsVisibility?:
|
147172
|
+
TotalsVisibility?: any;
|
146978
147173
|
ValueCellStyle?: QuickSightTemplateTableCellStyle;
|
146979
147174
|
};
|
146980
147175
|
/**
|
@@ -147057,7 +147252,7 @@ export type QuickSightTemplateTableCellStyle = {
|
|
147057
147252
|
HorizontalTextAlignment?: QuickSightTemplateHorizontalTextAlignment;
|
147058
147253
|
TextWrap?: QuickSightTemplateTextWrap;
|
147059
147254
|
VerticalTextAlignment?: QuickSightTemplateVerticalTextAlignment;
|
147060
|
-
Visibility?:
|
147255
|
+
Visibility?: any;
|
147061
147256
|
};
|
147062
147257
|
/**
|
147063
147258
|
* Type definition for `AWS::QuickSight::Template.TableConditionalFormatting`.
|
@@ -147154,7 +147349,7 @@ export type QuickSightTemplateTableFieldOption = {
|
|
147154
147349
|
*/
|
147155
147350
|
FieldId: string;
|
147156
147351
|
URLStyling?: QuickSightTemplateTableFieldURLConfiguration;
|
147157
|
-
Visibility?:
|
147352
|
+
Visibility?: any;
|
147158
147353
|
/**
|
147159
147354
|
* String based length that is composed of value and unit in px
|
147160
147355
|
*/
|
@@ -147220,8 +147415,8 @@ export type QuickSightTemplateTableOrientation = "VERTICAL" | "HORIZONTAL";
|
|
147220
147415
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepaginatedreportoptions.html}
|
147221
147416
|
*/
|
147222
147417
|
export type QuickSightTemplateTablePaginatedReportOptions = {
|
147223
|
-
OverflowColumnHeaderVisibility?:
|
147224
|
-
VerticalOverflowVisibility?:
|
147418
|
+
OverflowColumnHeaderVisibility?: any;
|
147419
|
+
VerticalOverflowVisibility?: any;
|
147225
147420
|
};
|
147226
147421
|
/**
|
147227
147422
|
* Type definition for `AWS::QuickSight::Template.TablePinnedFieldOptions`.
|
@@ -147525,7 +147720,7 @@ export type QuickSightTemplateTextConditionalFormat = {
|
|
147525
147720
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textcontrolplaceholderoptions.html}
|
147526
147721
|
*/
|
147527
147722
|
export type QuickSightTemplateTextControlPlaceholderOptions = {
|
147528
|
-
Visibility?:
|
147723
|
+
Visibility?: any;
|
147529
147724
|
};
|
147530
147725
|
/**
|
147531
147726
|
* Type definition for `AWS::QuickSight::Template.TextFieldControlDisplayOptions`.
|
@@ -147547,7 +147742,7 @@ export type QuickSightTemplateTextWrap = "NONE" | "WRAP";
|
|
147547
147742
|
*/
|
147548
147743
|
export type QuickSightTemplateThousandSeparatorOptions = {
|
147549
147744
|
Symbol?: QuickSightTemplateNumericSeparatorSymbol;
|
147550
|
-
Visibility?:
|
147745
|
+
Visibility?: any;
|
147551
147746
|
};
|
147552
147747
|
/**
|
147553
147748
|
* Type definition for `AWS::QuickSight::Template.TimeBasedForecastProperties`.
|
@@ -147665,7 +147860,7 @@ export type QuickSightTemplateTooltipItem = {
|
|
147665
147860
|
export type QuickSightTemplateTooltipOptions = {
|
147666
147861
|
FieldBasedTooltip?: QuickSightTemplateFieldBasedTooltip;
|
147667
147862
|
SelectedTooltipType?: QuickSightTemplateSelectedTooltipType;
|
147668
|
-
TooltipVisibility?:
|
147863
|
+
TooltipVisibility?: any;
|
147669
147864
|
};
|
147670
147865
|
/**
|
147671
147866
|
* Type definition for `AWS::QuickSight::Template.TooltipTarget`.
|
@@ -147805,7 +148000,7 @@ export type QuickSightTemplateTotalOptions = {
|
|
147805
148000
|
*/
|
147806
148001
|
TotalAggregationOptions?: QuickSightTemplateTotalAggregationOption[];
|
147807
148002
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
147808
|
-
TotalsVisibility?:
|
148003
|
+
TotalsVisibility?: any;
|
147809
148004
|
};
|
147810
148005
|
/**
|
147811
148006
|
* Type definition for `AWS::QuickSight::Template.TreeMapAggregatedFieldWells`.
|
@@ -147897,7 +148092,7 @@ export type QuickSightTemplateTreeMapVisual = {
|
|
147897
148092
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-trendarrowoptions.html}
|
147898
148093
|
*/
|
147899
148094
|
export type QuickSightTemplateTrendArrowOptions = {
|
147900
|
-
Visibility?:
|
148095
|
+
Visibility?: any;
|
147901
148096
|
};
|
147902
148097
|
/**
|
147903
148098
|
* Type definition for `AWS::QuickSight::Template.UnaggregatedField`.
|
@@ -147954,11 +148149,6 @@ export type QuickSightTemplateValueWhenUnsetOption = "RECOMMENDED_VALUE" | "NULL
|
|
147954
148149
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-verticaltextalignment.html}
|
147955
148150
|
*/
|
147956
148151
|
export type QuickSightTemplateVerticalTextAlignment = "TOP" | "MIDDLE" | "BOTTOM" | "AUTO";
|
147957
|
-
/**
|
147958
|
-
* Type definition for `AWS::QuickSight::Template.Visibility`.
|
147959
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visibility.html}
|
147960
|
-
*/
|
147961
|
-
export type QuickSightTemplateVisibility = "HIDDEN" | "VISIBLE";
|
147962
148152
|
/**
|
147963
148153
|
* Type definition for `AWS::QuickSight::Template.VisibleRangeOptions`.
|
147964
148154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visiblerangeoptions.html}
|
@@ -148056,7 +148246,7 @@ export type QuickSightTemplateVisualPalette = {
|
|
148056
148246
|
*/
|
148057
148247
|
export type QuickSightTemplateVisualSubtitleLabelOptions = {
|
148058
148248
|
FormatText?: QuickSightTemplateLongFormatText;
|
148059
|
-
Visibility?:
|
148249
|
+
Visibility?: any;
|
148060
148250
|
};
|
148061
148251
|
/**
|
148062
148252
|
* Type definition for `AWS::QuickSight::Template.VisualTitleLabelOptions`.
|
@@ -148064,7 +148254,7 @@ export type QuickSightTemplateVisualSubtitleLabelOptions = {
|
|
148064
148254
|
*/
|
148065
148255
|
export type QuickSightTemplateVisualTitleLabelOptions = {
|
148066
148256
|
FormatText?: QuickSightTemplateShortFormatText;
|
148067
|
-
Visibility?:
|
148257
|
+
Visibility?: any;
|
148068
148258
|
};
|
148069
148259
|
/**
|
148070
148260
|
* Type definition for `AWS::QuickSight::Template.WaterfallChartAggregatedFieldWells`.
|
@@ -173759,6 +173949,31 @@ export type SESMailManagerRuleSetDeliverToMailboxAction = {
|
|
173759
173949
|
*/
|
173760
173950
|
RoleArn: string;
|
173761
173951
|
};
|
173952
|
+
/**
|
173953
|
+
* Type definition for `AWS::SES::MailManagerRuleSet.DeliverToQBusinessAction`.
|
173954
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-delivertoqbusinessaction.html}
|
173955
|
+
*/
|
173956
|
+
export type SESMailManagerRuleSetDeliverToQBusinessAction = {
|
173957
|
+
ActionFailurePolicy?: SESMailManagerRuleSetActionFailurePolicy;
|
173958
|
+
/**
|
173959
|
+
* @minLength `36`
|
173960
|
+
* @maxLength `36`
|
173961
|
+
* @pattern `^[a-z0-9-]+$`
|
173962
|
+
*/
|
173963
|
+
ApplicationId: string;
|
173964
|
+
/**
|
173965
|
+
* @minLength `36`
|
173966
|
+
* @maxLength `36`
|
173967
|
+
* @pattern `^[a-z0-9-]+$`
|
173968
|
+
*/
|
173969
|
+
IndexId: string;
|
173970
|
+
/**
|
173971
|
+
* @minLength `20`
|
173972
|
+
* @maxLength `2048`
|
173973
|
+
* @pattern `^[a-zA-Z0-9:_/+=,@.#-]+$`
|
173974
|
+
*/
|
173975
|
+
RoleArn: string;
|
173976
|
+
};
|
173762
173977
|
/**
|
173763
173978
|
* Type definition for `AWS::SES::MailManagerRuleSet.DropAction`.
|
173764
173979
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-dropaction.html}
|
@@ -173841,6 +174056,8 @@ export type SESMailManagerRuleSetRuleAction = {
|
|
173841
174056
|
ReplaceRecipient: SESMailManagerRuleSetReplaceRecipientAction;
|
173842
174057
|
} | {
|
173843
174058
|
DeliverToMailbox: SESMailManagerRuleSetDeliverToMailboxAction;
|
174059
|
+
} | {
|
174060
|
+
DeliverToQBusiness: SESMailManagerRuleSetDeliverToQBusinessAction;
|
173844
174061
|
};
|
173845
174062
|
/**
|
173846
174063
|
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanEmailAttribute`.
|