@awboost/cfntypes 0.100.74 → 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.
@@ -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
|
*/
|
@@ -50259,8 +50498,8 @@ export type EC2NatGatewayTag = {
|
|
50259
50498
|
Value: string;
|
50260
50499
|
};
|
50261
50500
|
/**
|
50262
|
-
* Resource type definition for `AWS::EC2::NetworkAcl`.
|
50263
50501
|
* Specifies a network ACL for your VPC.
|
50502
|
+
To add a network ACL entry, see [AWS::EC2::NetworkAclEntry](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkaclentry.html).
|
50264
50503
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkacl.html}
|
50265
50504
|
*/
|
50266
50505
|
export type EC2NetworkAclProps = {
|
@@ -54545,6 +54784,7 @@ export type EC2VPCEndpointProps = {
|
|
54545
54784
|
* The IDs of the subnets in which to create endpoint network interfaces. You must specify this property for an interface endpoint or a Gateway Load Balancer endpoint. You can't specify this property for a gateway endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
|
54546
54785
|
*/
|
54547
54786
|
SubnetIds?: string[];
|
54787
|
+
Tags?: EC2VPCEndpointTag[];
|
54548
54788
|
/**
|
54549
54789
|
* The type of endpoint.
|
54550
54790
|
Default: Gateway
|
@@ -54573,6 +54813,14 @@ export type EC2VPCEndpointDnsOptionsSpecification = {
|
|
54573
54813
|
DnsRecordIpType?: "ipv4" | "ipv6" | "dualstack" | "service-defined" | "not-specified";
|
54574
54814
|
PrivateDnsOnlyForInboundResolverEndpoint?: "OnlyInboundResolver" | "AllResolvers" | "NotSpecified";
|
54575
54815
|
};
|
54816
|
+
/**
|
54817
|
+
* Type definition for `AWS::EC2::VPCEndpoint.Tag`.
|
54818
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-vpcendpoint-tag.html}
|
54819
|
+
*/
|
54820
|
+
export type EC2VPCEndpointTag = {
|
54821
|
+
Key: string;
|
54822
|
+
Value: string;
|
54823
|
+
};
|
54576
54824
|
/**
|
54577
54825
|
* Resource Type definition for AWS::EC2::VPCEndpointConnectionNotification
|
54578
54826
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpcendpointconnectionnotification.html}
|
@@ -113987,6 +114235,7 @@ export type OpenSearchServiceDomainClusterConfig = {
|
|
113987
114235
|
InstanceCount?: number;
|
113988
114236
|
InstanceType?: string;
|
113989
114237
|
MultiAZWithStandbyEnabled?: boolean;
|
114238
|
+
NodeOptions?: OpenSearchServiceDomainNodeOption[];
|
113990
114239
|
WarmCount?: number;
|
113991
114240
|
WarmEnabled?: boolean;
|
113992
114241
|
WarmType?: string;
|
@@ -114102,6 +114351,23 @@ export type OpenSearchServiceDomainMasterUserOptions = {
|
|
114102
114351
|
MasterUserName?: string;
|
114103
114352
|
MasterUserPassword?: string;
|
114104
114353
|
};
|
114354
|
+
/**
|
114355
|
+
* Type definition for `AWS::OpenSearchService::Domain.NodeConfig`.
|
114356
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeconfig.html}
|
114357
|
+
*/
|
114358
|
+
export type OpenSearchServiceDomainNodeConfig = {
|
114359
|
+
Count?: number;
|
114360
|
+
Enabled?: boolean;
|
114361
|
+
Type?: string;
|
114362
|
+
};
|
114363
|
+
/**
|
114364
|
+
* Type definition for `AWS::OpenSearchService::Domain.NodeOption`.
|
114365
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodeoption.html}
|
114366
|
+
*/
|
114367
|
+
export type OpenSearchServiceDomainNodeOption = {
|
114368
|
+
NodeConfig?: OpenSearchServiceDomainNodeConfig;
|
114369
|
+
NodeType?: "coordinator";
|
114370
|
+
};
|
114105
114371
|
/**
|
114106
114372
|
* Type definition for `AWS::OpenSearchService::Domain.NodeToNodeEncryptionOptions`.
|
114107
114373
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opensearchservice-domain-nodetonodeencryptionoptions.html}
|
@@ -124181,7 +124447,7 @@ export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
|
|
124181
124447
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
124182
124448
|
*/
|
124183
124449
|
export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
|
124184
|
-
Interactions?:
|
124450
|
+
Interactions?: any;
|
124185
124451
|
Legend?: QuickSightAnalysisLegendOptions;
|
124186
124452
|
MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
|
124187
124453
|
MapState?: QuickSightAnalysisGeospatialMapState;
|
@@ -124251,7 +124517,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
|
|
124251
124517
|
*/
|
124252
124518
|
export type QuickSightAnalysisGeospatialMapConfiguration = {
|
124253
124519
|
FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
|
124254
|
-
Interactions?:
|
124520
|
+
Interactions?: any;
|
124255
124521
|
Legend?: QuickSightAnalysisLegendOptions;
|
124256
124522
|
MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
|
124257
124523
|
PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
|
@@ -124789,7 +125055,7 @@ export type QuickSightAnalysisImageInteractionOptions = {
|
|
124789
125055
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
124790
125056
|
*/
|
124791
125057
|
export type QuickSightAnalysisImageMenuOption = {
|
124792
|
-
AvailabilityStatus?:
|
125058
|
+
AvailabilityStatus?: any;
|
124793
125059
|
};
|
124794
125060
|
/**
|
124795
125061
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
@@ -129166,6 +129432,85 @@ export type QuickSightAnalysisWordCloudWordScaling = "EMPHASIZE" | "NORMAL";
|
|
129166
129432
|
export type QuickSightAnalysisYAxisOptions = {
|
129167
129433
|
YAxis: QuickSightAnalysisSingleYAxisOption;
|
129168
129434
|
};
|
129435
|
+
/**
|
129436
|
+
* Definition of the AWS::QuickSight::CustomPermissions Resource Type.
|
129437
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html}
|
129438
|
+
*/
|
129439
|
+
export type QuickSightCustomPermissionsProps = {
|
129440
|
+
/**
|
129441
|
+
* @minLength `12`
|
129442
|
+
* @maxLength `12`
|
129443
|
+
* @pattern `^[0-9]{12}$`
|
129444
|
+
*/
|
129445
|
+
AwsAccountId: string;
|
129446
|
+
Capabilities?: QuickSightCustomPermissionsCapabilities;
|
129447
|
+
/**
|
129448
|
+
* @minLength `1`
|
129449
|
+
* @maxLength `64`
|
129450
|
+
* @pattern `^[a-zA-Z0-9+=,.@_-]+$`
|
129451
|
+
*/
|
129452
|
+
CustomPermissionsName: string;
|
129453
|
+
/**
|
129454
|
+
* @minLength `1`
|
129455
|
+
* @maxLength `200`
|
129456
|
+
*/
|
129457
|
+
Tags?: QuickSightCustomPermissionsTag[];
|
129458
|
+
};
|
129459
|
+
/**
|
129460
|
+
* Attribute type definition for `AWS::QuickSight::CustomPermissions`.
|
129461
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-custompermissions.html#aws-resource-quicksight-custompermissions-return-values}
|
129462
|
+
*/
|
129463
|
+
export type QuickSightCustomPermissionsAttributes = {
|
129464
|
+
Arn: string;
|
129465
|
+
};
|
129466
|
+
/**
|
129467
|
+
* Type definition for `AWS::QuickSight::CustomPermissions.Capabilities`.
|
129468
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilities.html}
|
129469
|
+
*/
|
129470
|
+
export type QuickSightCustomPermissionsCapabilities = {
|
129471
|
+
AddOrRunAnomalyDetectionForAnalyses?: QuickSightCustomPermissionsCapabilityState;
|
129472
|
+
CreateAndUpdateDashboardEmailReports?: QuickSightCustomPermissionsCapabilityState;
|
129473
|
+
CreateAndUpdateDataSources?: QuickSightCustomPermissionsCapabilityState;
|
129474
|
+
CreateAndUpdateDatasets?: QuickSightCustomPermissionsCapabilityState;
|
129475
|
+
CreateAndUpdateThemes?: QuickSightCustomPermissionsCapabilityState;
|
129476
|
+
CreateAndUpdateThresholdAlerts?: QuickSightCustomPermissionsCapabilityState;
|
129477
|
+
CreateSPICEDataset?: QuickSightCustomPermissionsCapabilityState;
|
129478
|
+
CreateSharedFolders?: QuickSightCustomPermissionsCapabilityState;
|
129479
|
+
ExportToCsv?: QuickSightCustomPermissionsCapabilityState;
|
129480
|
+
ExportToExcel?: QuickSightCustomPermissionsCapabilityState;
|
129481
|
+
RenameSharedFolders?: QuickSightCustomPermissionsCapabilityState;
|
129482
|
+
ShareAnalyses?: QuickSightCustomPermissionsCapabilityState;
|
129483
|
+
ShareDashboards?: QuickSightCustomPermissionsCapabilityState;
|
129484
|
+
ShareDataSources?: QuickSightCustomPermissionsCapabilityState;
|
129485
|
+
ShareDatasets?: QuickSightCustomPermissionsCapabilityState;
|
129486
|
+
SubscribeDashboardEmailReports?: QuickSightCustomPermissionsCapabilityState;
|
129487
|
+
ViewAccountSPICECapacity?: QuickSightCustomPermissionsCapabilityState;
|
129488
|
+
};
|
129489
|
+
/**
|
129490
|
+
* Type definition for `AWS::QuickSight::CustomPermissions.CapabilityState`.
|
129491
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-capabilitystate.html}
|
129492
|
+
*/
|
129493
|
+
export type QuickSightCustomPermissionsCapabilityState = "DENY";
|
129494
|
+
/**
|
129495
|
+
* Type definition for `AWS::QuickSight::CustomPermissions.Tag`.
|
129496
|
+
* <p>The key or keys of the key-value pairs for the resource tag or tags assigned to the
|
129497
|
+
resource.</p>
|
129498
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-custompermissions-tag.html}
|
129499
|
+
*/
|
129500
|
+
export type QuickSightCustomPermissionsTag = {
|
129501
|
+
/**
|
129502
|
+
* <p>Tag key.</p>
|
129503
|
+
* @minLength `1`
|
129504
|
+
* @maxLength `128`
|
129505
|
+
*/
|
129506
|
+
Key: string;
|
129507
|
+
/**
|
129508
|
+
* <p>Tag value.</p>
|
129509
|
+
* @minLength `1`
|
129510
|
+
* @maxLength `256`
|
129511
|
+
*/
|
129512
|
+
Value: string;
|
129513
|
+
};
|
129169
129514
|
/**
|
129170
129515
|
* Definition of the AWS::QuickSight::Dashboard Resource Type.
|
129171
129516
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-dashboard.html}
|
@@ -130802,7 +131147,7 @@ export type QuickSightDashboardDashboardPublishOptions = {
|
|
130802
131147
|
*/
|
130803
131148
|
SheetLayoutElementMaximizationOption?: QuickSightDashboardSheetLayoutElementMaximizationOption;
|
130804
131149
|
VisualAxisSortOption?: QuickSightDashboardVisualAxisSortOption;
|
130805
|
-
VisualMenuOption?:
|
131150
|
+
VisualMenuOption?: any;
|
130806
131151
|
/**
|
130807
131152
|
* <p>The visual publish options of a visual in a dashboard</p>
|
130808
131153
|
*/
|
@@ -132786,7 +133131,7 @@ export type QuickSightDashboardGeospatialLayerJoinDefinition = {
|
|
132786
133131
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
132787
133132
|
*/
|
132788
133133
|
export type QuickSightDashboardGeospatialLayerMapConfiguration = {
|
132789
|
-
Interactions?:
|
133134
|
+
Interactions?: any;
|
132790
133135
|
Legend?: QuickSightDashboardLegendOptions;
|
132791
133136
|
MapLayers?: QuickSightDashboardGeospatialLayerItem[];
|
132792
133137
|
MapState?: QuickSightDashboardGeospatialMapState;
|
@@ -132856,7 +133201,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
|
|
132856
133201
|
*/
|
132857
133202
|
export type QuickSightDashboardGeospatialMapConfiguration = {
|
132858
133203
|
FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
|
132859
|
-
Interactions?:
|
133204
|
+
Interactions?: any;
|
132860
133205
|
Legend?: QuickSightDashboardLegendOptions;
|
132861
133206
|
MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
|
132862
133207
|
PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
|
@@ -137498,13 +137843,6 @@ export type QuickSightDashboardVisualCustomActionOperation = {
|
|
137498
137843
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
137499
137844
|
*/
|
137500
137845
|
export type QuickSightDashboardVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
137501
|
-
/**
|
137502
|
-
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
137503
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
137504
|
-
*/
|
137505
|
-
export type QuickSightDashboardVisualMenuOption = {
|
137506
|
-
AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
|
137507
|
-
};
|
137508
137846
|
/**
|
137509
137847
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
137510
137848
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
@@ -138265,11 +138603,6 @@ export type QuickSightDataSetFieldFolder = {
|
|
138265
138603
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fieldfoldermap.html}
|
138266
138604
|
*/
|
138267
138605
|
export type QuickSightDataSetFieldFolderMap = Record<string, QuickSightDataSetFieldFolder>;
|
138268
|
-
/**
|
138269
|
-
* Type definition for `AWS::QuickSight::DataSet.FileFormat`.
|
138270
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-fileformat.html}
|
138271
|
-
*/
|
138272
|
-
export type QuickSightDataSetFileFormat = "CSV" | "TSV" | "CLF" | "ELF" | "XLSX" | "JSON";
|
138273
138606
|
/**
|
138274
138607
|
* Type definition for `AWS::QuickSight::DataSet.FilterOperation`.
|
138275
138608
|
* <p>A transform operation that filters rows based on a condition.</p>
|
@@ -138863,10 +139196,7 @@ export type QuickSightDataSetS3Source = {
|
|
138863
139196
|
* @maxLength `2048`
|
138864
139197
|
*/
|
138865
139198
|
InputColumns: QuickSightDataSetInputColumn[];
|
138866
|
-
|
138867
|
-
* <p>Information about the format for a source file or files.</p>
|
138868
|
-
*/
|
138869
|
-
UploadSettings?: QuickSightDataSetUploadSettings;
|
139199
|
+
UploadSettings?: any;
|
138870
139200
|
};
|
138871
139201
|
/**
|
138872
139202
|
* Type definition for `AWS::QuickSight::DataSet.Status`.
|
@@ -138954,11 +139284,6 @@ export type QuickSightDataSetTagColumnOperation = {
|
|
138954
139284
|
*/
|
138955
139285
|
Tags: QuickSightDataSetColumnTag[];
|
138956
139286
|
};
|
138957
|
-
/**
|
138958
|
-
* Type definition for `AWS::QuickSight::DataSet.TextQualifier`.
|
138959
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-textqualifier.html}
|
138960
|
-
*/
|
138961
|
-
export type QuickSightDataSetTextQualifier = "DOUBLE_QUOTE" | "SINGLE_QUOTE";
|
138962
139287
|
/**
|
138963
139288
|
* Type definition for `AWS::QuickSight::DataSet.TimeGranularity`.
|
138964
139289
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-timegranularity.html}
|
@@ -139034,30 +139359,6 @@ export type QuickSightDataSetUntagColumnOperation = {
|
|
139034
139359
|
*/
|
139035
139360
|
TagNames: QuickSightDataSetColumnTagName[];
|
139036
139361
|
};
|
139037
|
-
/**
|
139038
|
-
* Type definition for `AWS::QuickSight::DataSet.UploadSettings`.
|
139039
|
-
* <p>Information about the format for a source file or files.</p>
|
139040
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-uploadsettings.html}
|
139041
|
-
*/
|
139042
|
-
export type QuickSightDataSetUploadSettings = {
|
139043
|
-
/**
|
139044
|
-
* <p>Whether the file has a header row, or the files each have a header row.</p>
|
139045
|
-
*/
|
139046
|
-
ContainsHeader?: boolean;
|
139047
|
-
/**
|
139048
|
-
* <p>The delimiter between values in the file.</p>
|
139049
|
-
* @minLength `1`
|
139050
|
-
* @maxLength `1`
|
139051
|
-
*/
|
139052
|
-
Delimiter?: string;
|
139053
|
-
Format?: QuickSightDataSetFileFormat;
|
139054
|
-
/**
|
139055
|
-
* <p>A row number to start reading data from.</p>
|
139056
|
-
* @min `1`
|
139057
|
-
*/
|
139058
|
-
StartFromRow?: number;
|
139059
|
-
TextQualifier?: QuickSightDataSetTextQualifier;
|
139060
|
-
};
|
139061
139362
|
/**
|
139062
139363
|
* Definition of the AWS::QuickSight::DataSource Resource Type.
|
139063
139364
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-quicksight-datasource.html}
|
@@ -140455,7 +140756,7 @@ export type QuickSightTemplateAttributes = {
|
|
140455
140756
|
ImageContentAltText: string;
|
140456
140757
|
Interactions: {
|
140457
140758
|
ImageMenuOption: {
|
140458
|
-
AvailabilityStatus:
|
140759
|
+
AvailabilityStatus: any;
|
140459
140760
|
};
|
140460
140761
|
};
|
140461
140762
|
Scaling: {
|
@@ -140485,7 +140786,7 @@ export type QuickSightTemplateAttributes = {
|
|
140485
140786
|
*/
|
140486
140787
|
PlainText: string;
|
140487
140788
|
};
|
140488
|
-
Visibility:
|
140789
|
+
Visibility: any;
|
140489
140790
|
};
|
140490
140791
|
}[];
|
140491
140792
|
/**
|
@@ -140657,13 +140958,13 @@ export type QuickSightTemplateAxisDisplayMinMaxRange = {
|
|
140657
140958
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axisdisplayoptions.html}
|
140658
140959
|
*/
|
140659
140960
|
export type QuickSightTemplateAxisDisplayOptions = {
|
140660
|
-
AxisLineVisibility?:
|
140961
|
+
AxisLineVisibility?: any;
|
140661
140962
|
/**
|
140662
140963
|
* String based length that is composed of value and unit in px
|
140663
140964
|
*/
|
140664
140965
|
AxisOffset?: string;
|
140665
140966
|
DataOptions?: QuickSightTemplateAxisDataOptions;
|
140666
|
-
GridLineVisibility?:
|
140967
|
+
GridLineVisibility?: any;
|
140667
140968
|
ScrollbarOptions?: QuickSightTemplateScrollBarOptions;
|
140668
140969
|
TickLabelOptions?: QuickSightTemplateAxisTickLabelOptions;
|
140669
140970
|
};
|
@@ -140960,8 +141261,8 @@ export type QuickSightTemplateBoxPlotFillStyle = "SOLID" | "TRANSPARENT";
|
|
140960
141261
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-boxplotoptions.html}
|
140961
141262
|
*/
|
140962
141263
|
export type QuickSightTemplateBoxPlotOptions = {
|
140963
|
-
AllDataPointsVisibility?:
|
140964
|
-
OutlierVisibility?:
|
141264
|
+
AllDataPointsVisibility?: any;
|
141265
|
+
OutlierVisibility?: any;
|
140965
141266
|
StyleOptions?: QuickSightTemplateBoxPlotStyleOptions;
|
140966
141267
|
};
|
140967
141268
|
/**
|
@@ -141171,8 +141472,8 @@ export type QuickSightTemplateChartAxisLabelOptions = {
|
|
141171
141472
|
* @maxLength `100`
|
141172
141473
|
*/
|
141173
141474
|
AxisLabelOptions?: QuickSightTemplateAxisLabelOptions[];
|
141174
|
-
SortIconVisibility?:
|
141175
|
-
Visibility?:
|
141475
|
+
SortIconVisibility?: any;
|
141476
|
+
Visibility?: any;
|
141176
141477
|
};
|
141177
141478
|
/**
|
141178
141479
|
* Type definition for `AWS::QuickSight::Template.ClusterMarker`.
|
@@ -141322,7 +141623,7 @@ export type QuickSightTemplateColumnTooltipItem = {
|
|
141322
141623
|
Column: QuickSightTemplateColumnIdentifier;
|
141323
141624
|
Label?: string;
|
141324
141625
|
TooltipTarget?: QuickSightTemplateTooltipTarget;
|
141325
|
-
Visibility?:
|
141626
|
+
Visibility?: any;
|
141326
141627
|
};
|
141327
141628
|
/**
|
141328
141629
|
* Type definition for `AWS::QuickSight::Template.ComboChartAggregatedFieldWells`.
|
@@ -141860,7 +142161,7 @@ export type QuickSightTemplateDataLabelContent = "VALUE" | "PERCENT" | "VALUE_AN
|
|
141860
142161
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-datalabeloptions.html}
|
141861
142162
|
*/
|
141862
142163
|
export type QuickSightTemplateDataLabelOptions = {
|
141863
|
-
CategoryLabelVisibility?:
|
142164
|
+
CategoryLabelVisibility?: any;
|
141864
142165
|
/**
|
141865
142166
|
* @minLength `0`
|
141866
142167
|
* @maxLength `100`
|
@@ -141872,11 +142173,11 @@ export type QuickSightTemplateDataLabelOptions = {
|
|
141872
142173
|
LabelColor?: string;
|
141873
142174
|
LabelContent?: QuickSightTemplateDataLabelContent;
|
141874
142175
|
LabelFontConfiguration?: QuickSightTemplateFontConfiguration;
|
141875
|
-
MeasureLabelVisibility?:
|
142176
|
+
MeasureLabelVisibility?: any;
|
141876
142177
|
Overlap?: QuickSightTemplateDataLabelOverlap;
|
141877
142178
|
Position?: QuickSightTemplateDataLabelPosition;
|
141878
|
-
TotalsVisibility?:
|
141879
|
-
Visibility?:
|
142179
|
+
TotalsVisibility?: any;
|
142180
|
+
Visibility?: any;
|
141880
142181
|
};
|
141881
142182
|
/**
|
141882
142183
|
* Type definition for `AWS::QuickSight::Template.DataLabelOverlap`.
|
@@ -141926,7 +142227,7 @@ export type QuickSightTemplateDataPathLabelType = {
|
|
141926
142227
|
* @maxLength `2048`
|
141927
142228
|
*/
|
141928
142229
|
FieldValue?: string;
|
141929
|
-
Visibility?:
|
142230
|
+
Visibility?: any;
|
141930
142231
|
};
|
141931
142232
|
/**
|
141932
142233
|
* Type definition for `AWS::QuickSight::Template.DataPathSort`.
|
@@ -142024,7 +142325,7 @@ export type QuickSightTemplateDateAggregationFunction = "COUNT" | "DISTINCT_COUN
|
|
142024
142325
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dateaxisoptions.html}
|
142025
142326
|
*/
|
142026
142327
|
export type QuickSightTemplateDateAxisOptions = {
|
142027
|
-
MissingDateVisibility?:
|
142328
|
+
MissingDateVisibility?: any;
|
142028
142329
|
};
|
142029
142330
|
/**
|
142030
142331
|
* Type definition for `AWS::QuickSight::Template.DateDimensionField`.
|
@@ -142363,7 +142664,7 @@ export type QuickSightTemplateDimensionField = {
|
|
142363
142664
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-donutcenteroptions.html}
|
142364
142665
|
*/
|
142365
142666
|
export type QuickSightTemplateDonutCenterOptions = {
|
142366
|
-
LabelVisibility?:
|
142667
|
+
LabelVisibility?: any;
|
142367
142668
|
};
|
142368
142669
|
/**
|
142369
142670
|
* Type definition for `AWS::QuickSight::Template.DonutOptions`.
|
@@ -142467,7 +142768,7 @@ export type QuickSightTemplateExplicitHierarchy = {
|
|
142467
142768
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-fieldbasedtooltip.html}
|
142468
142769
|
*/
|
142469
142770
|
export type QuickSightTemplateFieldBasedTooltip = {
|
142470
|
-
AggregationVisibility?:
|
142771
|
+
AggregationVisibility?: any;
|
142471
142772
|
/**
|
142472
142773
|
* @minLength `0`
|
142473
142774
|
* @maxLength `100`
|
@@ -142485,7 +142786,7 @@ export type QuickSightTemplateFieldLabelType = {
|
|
142485
142786
|
* @maxLength `512`
|
142486
142787
|
*/
|
142487
142788
|
FieldId?: string;
|
142488
|
-
Visibility?:
|
142789
|
+
Visibility?: any;
|
142489
142790
|
};
|
142490
142791
|
/**
|
142491
142792
|
* Type definition for `AWS::QuickSight::Template.FieldSeriesItem`.
|
@@ -142532,7 +142833,7 @@ export type QuickSightTemplateFieldTooltipItem = {
|
|
142532
142833
|
FieldId: string;
|
142533
142834
|
Label?: string;
|
142534
142835
|
TooltipTarget?: QuickSightTemplateTooltipTarget;
|
142535
|
-
Visibility?:
|
142836
|
+
Visibility?: any;
|
142536
142837
|
};
|
142537
142838
|
/**
|
142538
142839
|
* Type definition for `AWS::QuickSight::Template.FilledMapAggregatedFieldWells`.
|
@@ -143118,7 +143419,7 @@ export type QuickSightTemplateFreeFormLayoutElement = {
|
|
143118
143419
|
*/
|
143119
143420
|
RenderingRules?: QuickSightTemplateSheetElementRenderingRule[];
|
143120
143421
|
SelectedBorderStyle?: QuickSightTemplateFreeFormLayoutElementBorderStyle;
|
143121
|
-
Visibility?:
|
143422
|
+
Visibility?: any;
|
143122
143423
|
/**
|
143123
143424
|
* String based length that is composed of value and unit in px
|
143124
143425
|
*/
|
@@ -143141,7 +143442,7 @@ export type QuickSightTemplateFreeFormLayoutElementBackgroundStyle = {
|
|
143141
143442
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
143142
143443
|
*/
|
143143
143444
|
Color?: string;
|
143144
|
-
Visibility?:
|
143445
|
+
Visibility?: any;
|
143145
143446
|
};
|
143146
143447
|
/**
|
143147
143448
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutElementBorderStyle`.
|
@@ -143152,7 +143453,7 @@ export type QuickSightTemplateFreeFormLayoutElementBorderStyle = {
|
|
143152
143453
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
143153
143454
|
*/
|
143154
143455
|
Color?: string;
|
143155
|
-
Visibility?:
|
143456
|
+
Visibility?: any;
|
143156
143457
|
};
|
143157
143458
|
/**
|
143158
143459
|
* Type definition for `AWS::QuickSight::Template.FreeFormLayoutScreenCanvasSizeOptions`.
|
@@ -143209,16 +143510,16 @@ export type QuickSightTemplateFunnelChartConfiguration = {
|
|
143209
143510
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-funnelchartdatalabeloptions.html}
|
143210
143511
|
*/
|
143211
143512
|
export type QuickSightTemplateFunnelChartDataLabelOptions = {
|
143212
|
-
CategoryLabelVisibility?:
|
143513
|
+
CategoryLabelVisibility?: any;
|
143213
143514
|
/**
|
143214
143515
|
* @pattern `^#[A-F0-9]{6}$`
|
143215
143516
|
*/
|
143216
143517
|
LabelColor?: string;
|
143217
143518
|
LabelFontConfiguration?: QuickSightTemplateFontConfiguration;
|
143218
143519
|
MeasureDataLabelStyle?: QuickSightTemplateFunnelChartMeasureDataLabelStyle;
|
143219
|
-
MeasureLabelVisibility?:
|
143520
|
+
MeasureLabelVisibility?: any;
|
143220
143521
|
Position?: QuickSightTemplateDataLabelPosition;
|
143221
|
-
Visibility?:
|
143522
|
+
Visibility?: any;
|
143222
143523
|
};
|
143223
143524
|
/**
|
143224
143525
|
* Type definition for `AWS::QuickSight::Template.FunnelChartFieldWells`.
|
@@ -143876,7 +144177,7 @@ export type QuickSightTemplateImageInteractionOptions = {
|
|
143876
144177
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
143877
144178
|
*/
|
143878
144179
|
export type QuickSightTemplateImageMenuOption = {
|
143879
|
-
AvailabilityStatus?:
|
144180
|
+
AvailabilityStatus?: any;
|
143880
144181
|
};
|
143881
144182
|
/**
|
143882
144183
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
@@ -144092,9 +144393,9 @@ export type QuickSightTemplateKPISparklineOptions = {
|
|
144092
144393
|
* @pattern `^#[A-F0-9]{6}$`
|
144093
144394
|
*/
|
144094
144395
|
Color?: string;
|
144095
|
-
TooltipVisibility?:
|
144396
|
+
TooltipVisibility?: any;
|
144096
144397
|
Type: QuickSightTemplateKPISparklineType;
|
144097
|
-
Visibility?:
|
144398
|
+
Visibility?: any;
|
144098
144399
|
};
|
144099
144400
|
/**
|
144100
144401
|
* Type definition for `AWS::QuickSight::Template.KPISparklineType`.
|
@@ -144158,7 +144459,7 @@ export type QuickSightTemplateKPIVisualStandardLayoutType = "CLASSIC" | "VERTICA
|
|
144158
144459
|
export type QuickSightTemplateLabelOptions = {
|
144159
144460
|
CustomLabel?: string;
|
144160
144461
|
FontConfiguration?: QuickSightTemplateFontConfiguration;
|
144161
|
-
Visibility?:
|
144462
|
+
Visibility?: any;
|
144162
144463
|
};
|
144163
144464
|
/**
|
144164
144465
|
* Type definition for `AWS::QuickSight::Template.Layout`.
|
@@ -144193,7 +144494,7 @@ export type QuickSightTemplateLegendOptions = {
|
|
144193
144494
|
Position?: QuickSightTemplateLegendPosition;
|
144194
144495
|
Title?: QuickSightTemplateLabelOptions;
|
144195
144496
|
ValueFontConfiguration?: QuickSightTemplateFontConfiguration;
|
144196
|
-
Visibility?:
|
144497
|
+
Visibility?: any;
|
144197
144498
|
/**
|
144198
144499
|
* String based length that is composed of value and unit in px
|
144199
144500
|
*/
|
@@ -144300,7 +144601,7 @@ export type QuickSightTemplateLineChartLineStyle = "SOLID" | "DOTTED" | "DASHED"
|
|
144300
144601
|
export type QuickSightTemplateLineChartLineStyleSettings = {
|
144301
144602
|
LineInterpolation?: QuickSightTemplateLineInterpolation;
|
144302
144603
|
LineStyle?: QuickSightTemplateLineChartLineStyle;
|
144303
|
-
LineVisibility?:
|
144604
|
+
LineVisibility?: any;
|
144304
144605
|
/**
|
144305
144606
|
* String based length that is composed of value and unit in px
|
144306
144607
|
*/
|
@@ -144325,7 +144626,7 @@ export type QuickSightTemplateLineChartMarkerStyleSettings = {
|
|
144325
144626
|
* String based length that is composed of value and unit in px
|
144326
144627
|
*/
|
144327
144628
|
MarkerSize?: string;
|
144328
|
-
MarkerVisibility?:
|
144629
|
+
MarkerVisibility?: any;
|
144329
144630
|
};
|
144330
144631
|
/**
|
144331
144632
|
* Type definition for `AWS::QuickSight::Template.LineChartSeriesSettings`.
|
@@ -144421,21 +144722,21 @@ export type QuickSightTemplateListControlDisplayOptions = {
|
|
144421
144722
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolsearchoptions.html}
|
144422
144723
|
*/
|
144423
144724
|
export type QuickSightTemplateListControlSearchOptions = {
|
144424
|
-
Visibility?:
|
144725
|
+
Visibility?: any;
|
144425
144726
|
};
|
144426
144727
|
/**
|
144427
144728
|
* Type definition for `AWS::QuickSight::Template.ListControlSelectAllOptions`.
|
144428
144729
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-listcontrolselectalloptions.html}
|
144429
144730
|
*/
|
144430
144731
|
export type QuickSightTemplateListControlSelectAllOptions = {
|
144431
|
-
Visibility?:
|
144732
|
+
Visibility?: any;
|
144432
144733
|
};
|
144433
144734
|
/**
|
144434
144735
|
* Type definition for `AWS::QuickSight::Template.LoadingAnimation`.
|
144435
144736
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-loadinganimation.html}
|
144436
144737
|
*/
|
144437
144738
|
export type QuickSightTemplateLoadingAnimation = {
|
144438
|
-
Visibility?:
|
144739
|
+
Visibility?: any;
|
144439
144740
|
};
|
144440
144741
|
/**
|
144441
144742
|
* Type definition for `AWS::QuickSight::Template.LocalNavigationConfiguration`.
|
@@ -144492,7 +144793,7 @@ export type QuickSightTemplateMapZoomMode = "AUTO" | "MANUAL";
|
|
144492
144793
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-maximumlabeltype.html}
|
144493
144794
|
*/
|
144494
144795
|
export type QuickSightTemplateMaximumLabelType = {
|
144495
|
-
Visibility?:
|
144796
|
+
Visibility?: any;
|
144496
144797
|
};
|
144497
144798
|
/**
|
144498
144799
|
* Type definition for `AWS::QuickSight::Template.MaximumMinimumComputation`.
|
@@ -144546,7 +144847,7 @@ export type QuickSightTemplateMetricComparisonComputation = {
|
|
144546
144847
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-minimumlabeltype.html}
|
144547
144848
|
*/
|
144548
144849
|
export type QuickSightTemplateMinimumLabelType = {
|
144549
|
-
Visibility?:
|
144850
|
+
Visibility?: any;
|
144550
144851
|
};
|
144551
144852
|
/**
|
144552
144853
|
* Type definition for `AWS::QuickSight::Template.MissingDataConfiguration`.
|
@@ -144808,7 +145109,7 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
144808
145109
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
144809
145110
|
*/
|
144810
145111
|
BackgroundColor?: string;
|
144811
|
-
BackgroundVisibility?:
|
145112
|
+
BackgroundVisibility?: any;
|
144812
145113
|
/**
|
144813
145114
|
* @pattern `^#[A-F0-9]{6}(?:[A-F0-9]{2})?$`
|
144814
145115
|
*/
|
@@ -144818,12 +145119,12 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
144818
145119
|
* String based length that is composed of value and unit in px
|
144819
145120
|
*/
|
144820
145121
|
BorderThickness?: string;
|
144821
|
-
BorderVisibility?:
|
145122
|
+
BorderVisibility?: any;
|
144822
145123
|
/**
|
144823
145124
|
* String based length that is composed of value and unit in px
|
144824
145125
|
*/
|
144825
145126
|
GutterSpacing?: string;
|
144826
|
-
GutterVisibility?:
|
145127
|
+
GutterVisibility?: any;
|
144827
145128
|
Title?: QuickSightTemplatePanelTitleOptions;
|
144828
145129
|
};
|
144829
145130
|
/**
|
@@ -144833,7 +145134,7 @@ export type QuickSightTemplatePanelConfiguration = {
|
|
144833
145134
|
export type QuickSightTemplatePanelTitleOptions = {
|
144834
145135
|
FontConfiguration?: QuickSightTemplateFontConfiguration;
|
144835
145136
|
HorizontalTextAlignment?: QuickSightTemplateHorizontalTextAlignment;
|
144836
|
-
Visibility?:
|
145137
|
+
Visibility?: any;
|
144837
145138
|
};
|
144838
145139
|
/**
|
144839
145140
|
* Type definition for `AWS::QuickSight::Template.PaperOrientation`.
|
@@ -145371,7 +145672,7 @@ export type QuickSightTemplatePivotTableFieldOption = {
|
|
145371
145672
|
* @maxLength `512`
|
145372
145673
|
*/
|
145373
145674
|
FieldId: string;
|
145374
|
-
Visibility?:
|
145675
|
+
Visibility?: any;
|
145375
145676
|
};
|
145376
145677
|
/**
|
145377
145678
|
* Type definition for `AWS::QuickSight::Template.PivotTableFieldOptions`.
|
@@ -145419,9 +145720,9 @@ export type QuickSightTemplatePivotTableMetricPlacement = "ROW" | "COLUMN";
|
|
145419
145720
|
*/
|
145420
145721
|
export type QuickSightTemplatePivotTableOptions = {
|
145421
145722
|
CellStyle?: QuickSightTemplateTableCellStyle;
|
145422
|
-
CollapsedRowDimensionsVisibility?:
|
145723
|
+
CollapsedRowDimensionsVisibility?: any;
|
145423
145724
|
ColumnHeaderStyle?: QuickSightTemplateTableCellStyle;
|
145424
|
-
ColumnNamesVisibility?:
|
145725
|
+
ColumnNamesVisibility?: any;
|
145425
145726
|
/**
|
145426
145727
|
* String based length that is composed of value and unit in px
|
145427
145728
|
*/
|
@@ -145432,16 +145733,16 @@ export type QuickSightTemplatePivotTableOptions = {
|
|
145432
145733
|
RowHeaderStyle?: QuickSightTemplateTableCellStyle;
|
145433
145734
|
RowsLabelOptions?: QuickSightTemplatePivotTableRowsLabelOptions;
|
145434
145735
|
RowsLayout?: QuickSightTemplatePivotTableRowsLayout;
|
145435
|
-
SingleMetricVisibility?:
|
145436
|
-
ToggleButtonsVisibility?:
|
145736
|
+
SingleMetricVisibility?: any;
|
145737
|
+
ToggleButtonsVisibility?: any;
|
145437
145738
|
};
|
145438
145739
|
/**
|
145439
145740
|
* Type definition for `AWS::QuickSight::Template.PivotTablePaginatedReportOptions`.
|
145440
145741
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-pivottablepaginatedreportoptions.html}
|
145441
145742
|
*/
|
145442
145743
|
export type QuickSightTemplatePivotTablePaginatedReportOptions = {
|
145443
|
-
OverflowColumnHeaderVisibility?:
|
145444
|
-
VerticalOverflowVisibility?:
|
145744
|
+
OverflowColumnHeaderVisibility?: any;
|
145745
|
+
VerticalOverflowVisibility?: any;
|
145445
145746
|
};
|
145446
145747
|
/**
|
145447
145748
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLabelOptions`.
|
@@ -145453,7 +145754,7 @@ export type QuickSightTemplatePivotTableRowsLabelOptions = {
|
|
145453
145754
|
* @maxLength `1024`
|
145454
145755
|
*/
|
145455
145756
|
CustomLabel?: string;
|
145456
|
-
Visibility?:
|
145757
|
+
Visibility?: any;
|
145457
145758
|
};
|
145458
145759
|
/**
|
145459
145760
|
* Type definition for `AWS::QuickSight::Template.PivotTableRowsLayout`.
|
@@ -145536,7 +145837,7 @@ export type QuickSightTemplatePivotTotalOptions = {
|
|
145536
145837
|
*/
|
145537
145838
|
TotalAggregationOptions?: QuickSightTemplateTotalAggregationOption[];
|
145538
145839
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
145539
|
-
TotalsVisibility?:
|
145840
|
+
TotalsVisibility?: any;
|
145540
145841
|
ValueCellStyle?: QuickSightTemplateTableCellStyle;
|
145541
145842
|
};
|
145542
145843
|
/**
|
@@ -145672,7 +145973,7 @@ export type QuickSightTemplatePrimaryValueDisplayType = "HIDDEN" | "COMPARISON"
|
|
145672
145973
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-progressbaroptions.html}
|
145673
145974
|
*/
|
145674
145975
|
export type QuickSightTemplateProgressBarOptions = {
|
145675
|
-
Visibility?:
|
145976
|
+
Visibility?: any;
|
145676
145977
|
};
|
145677
145978
|
/**
|
145678
145979
|
* Type definition for `AWS::QuickSight::Template.QueryExecutionMode`.
|
@@ -145712,7 +146013,7 @@ export type QuickSightTemplateRadarChartAggregatedFieldWells = {
|
|
145712
146013
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartareastylesettings.html}
|
145713
146014
|
*/
|
145714
146015
|
export type QuickSightTemplateRadarChartAreaStyleSettings = {
|
145715
|
-
Visibility?:
|
146016
|
+
Visibility?: any;
|
145716
146017
|
};
|
145717
146018
|
/**
|
145718
146019
|
* Type definition for `AWS::QuickSight::Template.RadarChartAxesRangeScale`.
|
@@ -145724,7 +146025,7 @@ export type QuickSightTemplateRadarChartAxesRangeScale = "AUTO" | "INDEPENDENT"
|
|
145724
146025
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-radarchartconfiguration.html}
|
145725
146026
|
*/
|
145726
146027
|
export type QuickSightTemplateRadarChartConfiguration = {
|
145727
|
-
AlternateBandColorsVisibility?:
|
146028
|
+
AlternateBandColorsVisibility?: any;
|
145728
146029
|
/**
|
145729
146030
|
* @pattern `^#[A-F0-9]{6}$`
|
145730
146031
|
*/
|
@@ -145822,7 +146123,7 @@ export type QuickSightTemplateRadarChartVisual = {
|
|
145822
146123
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-rangeendslabeltype.html}
|
145823
146124
|
*/
|
145824
146125
|
export type QuickSightTemplateRangeEndsLabelType = {
|
145825
|
-
Visibility?:
|
146126
|
+
Visibility?: any;
|
145826
146127
|
};
|
145827
146128
|
/**
|
145828
146129
|
* Type definition for `AWS::QuickSight::Template.ReferenceLine`.
|
@@ -146258,7 +146559,7 @@ export type QuickSightTemplateScatterPlotVisual = {
|
|
146258
146559
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-scrollbaroptions.html}
|
146259
146560
|
*/
|
146260
146561
|
export type QuickSightTemplateScrollBarOptions = {
|
146261
|
-
Visibility?:
|
146562
|
+
Visibility?: any;
|
146262
146563
|
VisibleRange?: QuickSightTemplateVisibleRangeOptions;
|
146263
146564
|
};
|
146264
146565
|
/**
|
@@ -146266,7 +146567,7 @@ export type QuickSightTemplateScrollBarOptions = {
|
|
146266
146567
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-secondaryvalueoptions.html}
|
146267
146568
|
*/
|
146268
146569
|
export type QuickSightTemplateSecondaryValueOptions = {
|
146269
|
-
Visibility?:
|
146570
|
+
Visibility?: any;
|
146270
146571
|
};
|
146271
146572
|
/**
|
146272
146573
|
* Type definition for `AWS::QuickSight::Template.SectionAfterPageBreak`.
|
@@ -146447,7 +146748,7 @@ export type QuickSightTemplateSheetControlInfoIconLabelOptions = {
|
|
146447
146748
|
* @maxLength `100`
|
146448
146749
|
*/
|
146449
146750
|
InfoIconText?: string;
|
146450
|
-
Visibility?:
|
146751
|
+
Visibility?: any;
|
146451
146752
|
};
|
146452
146753
|
/**
|
146453
146754
|
* Type definition for `AWS::QuickSight::Template.SheetControlLayout`.
|
@@ -146541,7 +146842,7 @@ export type QuickSightTemplateSheetDefinition = {
|
|
146541
146842
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheetelementconfigurationoverrides.html}
|
146542
146843
|
*/
|
146543
146844
|
export type QuickSightTemplateSheetElementConfigurationOverrides = {
|
146544
|
-
Visibility?:
|
146845
|
+
Visibility?: any;
|
146545
146846
|
};
|
146546
146847
|
/**
|
146547
146848
|
* Type definition for `AWS::QuickSight::Template.SheetElementRenderingRule`.
|
@@ -146618,7 +146919,7 @@ export type QuickSightTemplateSheetImageStaticFileSource = {
|
|
146618
146919
|
*/
|
146619
146920
|
export type QuickSightTemplateSheetImageTooltipConfiguration = {
|
146620
146921
|
TooltipText?: QuickSightTemplateSheetImageTooltipText;
|
146621
|
-
Visibility?:
|
146922
|
+
Visibility?: any;
|
146622
146923
|
};
|
146623
146924
|
/**
|
146624
146925
|
* Type definition for `AWS::QuickSight::Template.SheetImageTooltipText`.
|
@@ -146868,7 +147169,7 @@ export type QuickSightTemplateSubtotalOptions = {
|
|
146868
147169
|
*/
|
146869
147170
|
StyleTargets?: QuickSightTemplateTableStyleTarget[];
|
146870
147171
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
146871
|
-
TotalsVisibility?:
|
147172
|
+
TotalsVisibility?: any;
|
146872
147173
|
ValueCellStyle?: QuickSightTemplateTableCellStyle;
|
146873
147174
|
};
|
146874
147175
|
/**
|
@@ -146951,7 +147252,7 @@ export type QuickSightTemplateTableCellStyle = {
|
|
146951
147252
|
HorizontalTextAlignment?: QuickSightTemplateHorizontalTextAlignment;
|
146952
147253
|
TextWrap?: QuickSightTemplateTextWrap;
|
146953
147254
|
VerticalTextAlignment?: QuickSightTemplateVerticalTextAlignment;
|
146954
|
-
Visibility?:
|
147255
|
+
Visibility?: any;
|
146955
147256
|
};
|
146956
147257
|
/**
|
146957
147258
|
* Type definition for `AWS::QuickSight::Template.TableConditionalFormatting`.
|
@@ -147048,7 +147349,7 @@ export type QuickSightTemplateTableFieldOption = {
|
|
147048
147349
|
*/
|
147049
147350
|
FieldId: string;
|
147050
147351
|
URLStyling?: QuickSightTemplateTableFieldURLConfiguration;
|
147051
|
-
Visibility?:
|
147352
|
+
Visibility?: any;
|
147052
147353
|
/**
|
147053
147354
|
* String based length that is composed of value and unit in px
|
147054
147355
|
*/
|
@@ -147114,8 +147415,8 @@ export type QuickSightTemplateTableOrientation = "VERTICAL" | "HORIZONTAL";
|
|
147114
147415
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-tablepaginatedreportoptions.html}
|
147115
147416
|
*/
|
147116
147417
|
export type QuickSightTemplateTablePaginatedReportOptions = {
|
147117
|
-
OverflowColumnHeaderVisibility?:
|
147118
|
-
VerticalOverflowVisibility?:
|
147418
|
+
OverflowColumnHeaderVisibility?: any;
|
147419
|
+
VerticalOverflowVisibility?: any;
|
147119
147420
|
};
|
147120
147421
|
/**
|
147121
147422
|
* Type definition for `AWS::QuickSight::Template.TablePinnedFieldOptions`.
|
@@ -147419,7 +147720,7 @@ export type QuickSightTemplateTextConditionalFormat = {
|
|
147419
147720
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-textcontrolplaceholderoptions.html}
|
147420
147721
|
*/
|
147421
147722
|
export type QuickSightTemplateTextControlPlaceholderOptions = {
|
147422
|
-
Visibility?:
|
147723
|
+
Visibility?: any;
|
147423
147724
|
};
|
147424
147725
|
/**
|
147425
147726
|
* Type definition for `AWS::QuickSight::Template.TextFieldControlDisplayOptions`.
|
@@ -147441,7 +147742,7 @@ export type QuickSightTemplateTextWrap = "NONE" | "WRAP";
|
|
147441
147742
|
*/
|
147442
147743
|
export type QuickSightTemplateThousandSeparatorOptions = {
|
147443
147744
|
Symbol?: QuickSightTemplateNumericSeparatorSymbol;
|
147444
|
-
Visibility?:
|
147745
|
+
Visibility?: any;
|
147445
147746
|
};
|
147446
147747
|
/**
|
147447
147748
|
* Type definition for `AWS::QuickSight::Template.TimeBasedForecastProperties`.
|
@@ -147559,7 +147860,7 @@ export type QuickSightTemplateTooltipItem = {
|
|
147559
147860
|
export type QuickSightTemplateTooltipOptions = {
|
147560
147861
|
FieldBasedTooltip?: QuickSightTemplateFieldBasedTooltip;
|
147561
147862
|
SelectedTooltipType?: QuickSightTemplateSelectedTooltipType;
|
147562
|
-
TooltipVisibility?:
|
147863
|
+
TooltipVisibility?: any;
|
147563
147864
|
};
|
147564
147865
|
/**
|
147565
147866
|
* Type definition for `AWS::QuickSight::Template.TooltipTarget`.
|
@@ -147699,7 +148000,7 @@ export type QuickSightTemplateTotalOptions = {
|
|
147699
148000
|
*/
|
147700
148001
|
TotalAggregationOptions?: QuickSightTemplateTotalAggregationOption[];
|
147701
148002
|
TotalCellStyle?: QuickSightTemplateTableCellStyle;
|
147702
|
-
TotalsVisibility?:
|
148003
|
+
TotalsVisibility?: any;
|
147703
148004
|
};
|
147704
148005
|
/**
|
147705
148006
|
* Type definition for `AWS::QuickSight::Template.TreeMapAggregatedFieldWells`.
|
@@ -147791,7 +148092,7 @@ export type QuickSightTemplateTreeMapVisual = {
|
|
147791
148092
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-trendarrowoptions.html}
|
147792
148093
|
*/
|
147793
148094
|
export type QuickSightTemplateTrendArrowOptions = {
|
147794
|
-
Visibility?:
|
148095
|
+
Visibility?: any;
|
147795
148096
|
};
|
147796
148097
|
/**
|
147797
148098
|
* Type definition for `AWS::QuickSight::Template.UnaggregatedField`.
|
@@ -147848,11 +148149,6 @@ export type QuickSightTemplateValueWhenUnsetOption = "RECOMMENDED_VALUE" | "NULL
|
|
147848
148149
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-verticaltextalignment.html}
|
147849
148150
|
*/
|
147850
148151
|
export type QuickSightTemplateVerticalTextAlignment = "TOP" | "MIDDLE" | "BOTTOM" | "AUTO";
|
147851
|
-
/**
|
147852
|
-
* Type definition for `AWS::QuickSight::Template.Visibility`.
|
147853
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visibility.html}
|
147854
|
-
*/
|
147855
|
-
export type QuickSightTemplateVisibility = "HIDDEN" | "VISIBLE";
|
147856
148152
|
/**
|
147857
148153
|
* Type definition for `AWS::QuickSight::Template.VisibleRangeOptions`.
|
147858
148154
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-visiblerangeoptions.html}
|
@@ -147950,7 +148246,7 @@ export type QuickSightTemplateVisualPalette = {
|
|
147950
148246
|
*/
|
147951
148247
|
export type QuickSightTemplateVisualSubtitleLabelOptions = {
|
147952
148248
|
FormatText?: QuickSightTemplateLongFormatText;
|
147953
|
-
Visibility?:
|
148249
|
+
Visibility?: any;
|
147954
148250
|
};
|
147955
148251
|
/**
|
147956
148252
|
* Type definition for `AWS::QuickSight::Template.VisualTitleLabelOptions`.
|
@@ -147958,7 +148254,7 @@ export type QuickSightTemplateVisualSubtitleLabelOptions = {
|
|
147958
148254
|
*/
|
147959
148255
|
export type QuickSightTemplateVisualTitleLabelOptions = {
|
147960
148256
|
FormatText?: QuickSightTemplateShortFormatText;
|
147961
|
-
Visibility?:
|
148257
|
+
Visibility?: any;
|
147962
148258
|
};
|
147963
148259
|
/**
|
147964
148260
|
* Type definition for `AWS::QuickSight::Template.WaterfallChartAggregatedFieldWells`.
|
@@ -149998,7 +150294,7 @@ export type RDSDBClusterProps = {
|
|
149998
150294
|
AssociatedRoles?: RDSDBClusterDBClusterRole[];
|
149999
150295
|
/**
|
150000
150296
|
* Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.
|
150001
|
-
Valid for Cluster Type: Multi-AZ DB
|
150297
|
+
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
|
150002
150298
|
*/
|
150003
150299
|
AutoMinorVersionUpgrade?: boolean;
|
150004
150300
|
/**
|
@@ -150241,7 +150537,8 @@ export type RDSDBClusterProps = {
|
|
150241
150537
|
MasterUserPassword?: string;
|
150242
150538
|
/**
|
150243
150539
|
* The secret managed by RDS in AWS Secrets Manager for the master user password.
|
150244
|
-
|
150540
|
+
When you restore a DB cluster from a snapshot, Amazon RDS generates a new secret instead of reusing the secret specified in the ``SecretArn`` property. This ensures that the restored DB cluster is securely managed with a dedicated secret. To maintain consistent integration with your application, you might need to update resource configurations to reference the newly created secret.
|
150541
|
+
For more information, see [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the *Amazon RDS User Guide* and [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html) in the *Amazon Aurora User Guide.*
|
150245
150542
|
*/
|
150246
150543
|
MasterUserSecret?: RDSDBClusterMasterUserSecret;
|
150247
150544
|
/**
|
@@ -150255,7 +150552,7 @@ export type RDSDBClusterProps = {
|
|
150255
150552
|
/**
|
150256
150553
|
* The interval, in seconds, between points when Enhanced Monitoring metrics are collected for the DB cluster. To turn off collecting Enhanced Monitoring metrics, specify ``0``.
|
150257
150554
|
If ``MonitoringRoleArn`` is specified, also set ``MonitoringInterval`` to a value other than ``0``.
|
150258
|
-
Valid for Cluster Type: Multi-AZ DB clusters
|
150555
|
+
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
150259
150556
|
Valid Values: ``0 | 1 | 5 | 10 | 15 | 30 | 60``
|
150260
150557
|
Default: ``0``
|
150261
150558
|
*/
|
@@ -150263,7 +150560,7 @@ export type RDSDBClusterProps = {
|
|
150263
150560
|
/**
|
150264
150561
|
* The Amazon Resource Name (ARN) for the IAM role that permits RDS to send Enhanced Monitoring metrics to Amazon CloudWatch Logs. An example is ``arn:aws:iam:123456789012:role/emaccess``. For information on creating a monitoring role, see [Setting up and enabling Enhanced Monitoring](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_Monitoring.OS.html#USER_Monitoring.OS.Enabling) in the *Amazon RDS User Guide*.
|
150265
150562
|
If ``MonitoringInterval`` is set to a value other than ``0``, supply a ``MonitoringRoleArn`` value.
|
150266
|
-
Valid for Cluster Type: Multi-AZ DB clusters
|
150563
|
+
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
150267
150564
|
*/
|
150268
150565
|
MonitoringRoleArn?: string;
|
150269
150566
|
/**
|
@@ -150280,19 +150577,19 @@ export type RDSDBClusterProps = {
|
|
150280
150577
|
/**
|
150281
150578
|
* Specifies whether to turn on Performance Insights for the DB cluster.
|
150282
150579
|
For more information, see [Using Amazon Performance Insights](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_PerfInsights.html) in the *Amazon RDS User Guide*.
|
150283
|
-
Valid for Cluster Type: Multi-AZ DB clusters
|
150580
|
+
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
150284
150581
|
*/
|
150285
150582
|
PerformanceInsightsEnabled?: boolean;
|
150286
150583
|
/**
|
150287
150584
|
* The AWS KMS key identifier for encryption of Performance Insights data.
|
150288
150585
|
The AWS KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
|
150289
150586
|
If you don't specify a value for ``PerformanceInsightsKMSKeyId``, then Amazon RDS uses your default KMS key. There is a default KMS key for your AWS-account. Your AWS-account has a different default KMS key for each AWS-Region.
|
150290
|
-
Valid for Cluster Type: Multi-AZ DB clusters
|
150587
|
+
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
150291
150588
|
*/
|
150292
150589
|
PerformanceInsightsKmsKeyId?: string;
|
150293
150590
|
/**
|
150294
150591
|
* The number of days to retain Performance Insights data.
|
150295
|
-
Valid for Cluster Type: Multi-AZ DB clusters
|
150592
|
+
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB clusters
|
150296
150593
|
Valid Values:
|
150297
150594
|
+ ``7``
|
150298
150595
|
+ *month* * 31, where *month* is a number of months from 1-23. Examples: ``93`` (3 months * 31), ``341`` (11 months * 31), ``589`` (19 months * 31)
|
@@ -150491,7 +150788,8 @@ export type RDSDBClusterAttributes = {
|
|
150491
150788
|
};
|
150492
150789
|
/**
|
150493
150790
|
* The secret managed by RDS in AWS Secrets Manager for the master user password.
|
150494
|
-
|
150791
|
+
When you restore a DB cluster from a snapshot, Amazon RDS generates a new secret instead of reusing the secret specified in the ``SecretArn`` property. This ensures that the restored DB cluster is securely managed with a dedicated secret. To maintain consistent integration with your application, you might need to update resource configurations to reference the newly created secret.
|
150792
|
+
For more information, see [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/rds-secrets-manager.html) in the *Amazon RDS User Guide* and [Password management with Secrets Manager](https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/rds-secrets-manager.html) in the *Amazon Aurora User Guide.*
|
150495
150793
|
*/
|
150496
150794
|
MasterUserSecret: {
|
150497
150795
|
/**
|
@@ -167608,6 +167906,129 @@ export type SageMakerNotebookInstanceLifecycleConfigAttributes = {
|
|
167608
167906
|
export type SageMakerNotebookInstanceLifecycleConfigNotebookInstanceLifecycleHook = {
|
167609
167907
|
Content?: string;
|
167610
167908
|
};
|
167909
|
+
/**
|
167910
|
+
* Resource Type definition for AWS::SageMaker::PartnerApp
|
167911
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html}
|
167912
|
+
*/
|
167913
|
+
export type SageMakerPartnerAppProps = {
|
167914
|
+
/**
|
167915
|
+
* A collection of settings that specify the maintenance schedule for the PartnerApp.
|
167916
|
+
*/
|
167917
|
+
ApplicationConfig?: SageMakerPartnerAppPartnerAppConfig;
|
167918
|
+
/**
|
167919
|
+
* The Auth type of PartnerApp.
|
167920
|
+
*/
|
167921
|
+
AuthType: "IAM";
|
167922
|
+
/**
|
167923
|
+
* The client token for the PartnerApp.
|
167924
|
+
* @minLength `1`
|
167925
|
+
* @maxLength `36`
|
167926
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
167927
|
+
*/
|
167928
|
+
ClientToken?: string;
|
167929
|
+
/**
|
167930
|
+
* Enables IAM Session based Identity for PartnerApp.
|
167931
|
+
*/
|
167932
|
+
EnableIamSessionBasedIdentity?: boolean;
|
167933
|
+
/**
|
167934
|
+
* The execution role for the user.
|
167935
|
+
* @minLength `20`
|
167936
|
+
* @maxLength `2048`
|
167937
|
+
* @pattern `^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
|
167938
|
+
*/
|
167939
|
+
ExecutionRoleArn: string;
|
167940
|
+
/**
|
167941
|
+
* A collection of settings that specify the maintenance schedule for the PartnerApp.
|
167942
|
+
*/
|
167943
|
+
MaintenanceConfig?: SageMakerPartnerAppPartnerAppMaintenanceConfig;
|
167944
|
+
/**
|
167945
|
+
* A name for the PartnerApp.
|
167946
|
+
* @minLength `1`
|
167947
|
+
* @maxLength `256`
|
167948
|
+
* @pattern `^[a-zA-Z0-9]+`
|
167949
|
+
*/
|
167950
|
+
Name: string;
|
167951
|
+
/**
|
167952
|
+
* A list of tags to apply to the PartnerApp.
|
167953
|
+
* @minLength `0`
|
167954
|
+
* @maxLength `50`
|
167955
|
+
*/
|
167956
|
+
Tags?: SageMakerPartnerAppTag[];
|
167957
|
+
/**
|
167958
|
+
* The tier of the PartnerApp.
|
167959
|
+
* @minLength `1`
|
167960
|
+
* @maxLength `64`
|
167961
|
+
*/
|
167962
|
+
Tier: string;
|
167963
|
+
/**
|
167964
|
+
* The type of PartnerApp.
|
167965
|
+
*/
|
167966
|
+
Type: "lakera-guard" | "comet" | "deepchecks-llm-evaluation" | "fiddler";
|
167967
|
+
};
|
167968
|
+
/**
|
167969
|
+
* Attribute type definition for `AWS::SageMaker::PartnerApp`.
|
167970
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-partnerapp.html#aws-resource-sagemaker-partnerapp-return-values}
|
167971
|
+
*/
|
167972
|
+
export type SageMakerPartnerAppAttributes = {
|
167973
|
+
/**
|
167974
|
+
* The Amazon Resource Name (ARN) of the created PartnerApp.
|
167975
|
+
* @minLength `1`
|
167976
|
+
* @maxLength `128`
|
167977
|
+
* @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:partner-app/app-[A-Z0-9]{12}$`
|
167978
|
+
*/
|
167979
|
+
Arn: string;
|
167980
|
+
/**
|
167981
|
+
* The AppServerUrl based on app and account-info.
|
167982
|
+
* @maxLength `2048`
|
167983
|
+
*/
|
167984
|
+
BaseUrl: string;
|
167985
|
+
};
|
167986
|
+
/**
|
167987
|
+
* Type definition for `AWS::SageMaker::PartnerApp.PartnerAppConfig`.
|
167988
|
+
* A collection of configuration settings for the PartnerApp.
|
167989
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappconfig.html}
|
167990
|
+
*/
|
167991
|
+
export type SageMakerPartnerAppPartnerAppConfig = {
|
167992
|
+
/**
|
167993
|
+
* A list of users with administrator privileges for the PartnerApp.
|
167994
|
+
* @minLength `0`
|
167995
|
+
* @maxLength `5`
|
167996
|
+
*/
|
167997
|
+
AdminUsers?: string[];
|
167998
|
+
/**
|
167999
|
+
* A list of arguments to pass to the PartnerApp.
|
168000
|
+
*/
|
168001
|
+
Arguments?: Record<string, string>;
|
168002
|
+
};
|
168003
|
+
/**
|
168004
|
+
* Type definition for `AWS::SageMaker::PartnerApp.PartnerAppMaintenanceConfig`.
|
168005
|
+
* A collection of settings that specify the maintenance schedule for the PartnerApp.
|
168006
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-partnerappmaintenanceconfig.html}
|
168007
|
+
*/
|
168008
|
+
export type SageMakerPartnerAppPartnerAppMaintenanceConfig = {
|
168009
|
+
/**
|
168010
|
+
* The maintenance window start day and time for the PartnerApp.
|
168011
|
+
* @maxLength `9`
|
168012
|
+
* @pattern `(Mon|Tue|Wed|Thu|Fri|Sat|Sun):([01]\d|2[0-3]):([0-5]\d)`
|
168013
|
+
*/
|
168014
|
+
MaintenanceWindowStart: string;
|
168015
|
+
};
|
168016
|
+
/**
|
168017
|
+
* Type definition for `AWS::SageMaker::PartnerApp.Tag`.
|
168018
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-partnerapp-tag.html}
|
168019
|
+
*/
|
168020
|
+
export type SageMakerPartnerAppTag = {
|
168021
|
+
/**
|
168022
|
+
* @minLength `1`
|
168023
|
+
* @maxLength `128`
|
168024
|
+
*/
|
168025
|
+
Key: string;
|
168026
|
+
/**
|
168027
|
+
* @minLength `1`
|
168028
|
+
* @maxLength `128`
|
168029
|
+
*/
|
168030
|
+
Value: string;
|
168031
|
+
};
|
167611
168032
|
/**
|
167612
168033
|
* Resource Type definition for AWS::SageMaker::Pipeline
|
167613
168034
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-pipeline.html}
|
@@ -173528,6 +173949,31 @@ export type SESMailManagerRuleSetDeliverToMailboxAction = {
|
|
173528
173949
|
*/
|
173529
173950
|
RoleArn: string;
|
173530
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
|
+
};
|
173531
173977
|
/**
|
173532
173978
|
* Type definition for `AWS::SES::MailManagerRuleSet.DropAction`.
|
173533
173979
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-mailmanagerruleset-dropaction.html}
|
@@ -173610,6 +174056,8 @@ export type SESMailManagerRuleSetRuleAction = {
|
|
173610
174056
|
ReplaceRecipient: SESMailManagerRuleSetReplaceRecipientAction;
|
173611
174057
|
} | {
|
173612
174058
|
DeliverToMailbox: SESMailManagerRuleSetDeliverToMailboxAction;
|
174059
|
+
} | {
|
174060
|
+
DeliverToQBusiness: SESMailManagerRuleSetDeliverToQBusinessAction;
|
173613
174061
|
};
|
173614
174062
|
/**
|
173615
174063
|
* Type definition for `AWS::SES::MailManagerRuleSet.RuleBooleanEmailAttribute`.
|
@@ -188629,6 +189077,7 @@ export interface ResourceTypes {
|
|
188629
189077
|
"AWS::QLDB::Ledger": QLDBLedgerProps;
|
188630
189078
|
"AWS::QLDB::Stream": QLDBStreamProps;
|
188631
189079
|
"AWS::QuickSight::Analysis": QuickSightAnalysisProps;
|
189080
|
+
"AWS::QuickSight::CustomPermissions": QuickSightCustomPermissionsProps;
|
188632
189081
|
"AWS::QuickSight::Dashboard": QuickSightDashboardProps;
|
188633
189082
|
"AWS::QuickSight::DataSet": QuickSightDataSetProps;
|
188634
189083
|
"AWS::QuickSight::DataSource": QuickSightDataSourceProps;
|
@@ -188768,6 +189217,7 @@ export interface ResourceTypes {
|
|
188768
189217
|
"AWS::SageMaker::MonitoringSchedule": SageMakerMonitoringScheduleProps;
|
188769
189218
|
"AWS::SageMaker::NotebookInstance": SageMakerNotebookInstanceProps;
|
188770
189219
|
"AWS::SageMaker::NotebookInstanceLifecycleConfig": SageMakerNotebookInstanceLifecycleConfigProps;
|
189220
|
+
"AWS::SageMaker::PartnerApp": SageMakerPartnerAppProps;
|
188771
189221
|
"AWS::SageMaker::Pipeline": SageMakerPipelineProps;
|
188772
189222
|
"AWS::SageMaker::Project": SageMakerProjectProps;
|
188773
189223
|
"AWS::SageMaker::Space": SageMakerSpaceProps;
|
@@ -189883,6 +190333,7 @@ export interface AttributeTypes {
|
|
189883
190333
|
"AWS::QLDB::Ledger": QLDBLedgerAttributes;
|
189884
190334
|
"AWS::QLDB::Stream": QLDBStreamAttributes;
|
189885
190335
|
"AWS::QuickSight::Analysis": QuickSightAnalysisAttributes;
|
190336
|
+
"AWS::QuickSight::CustomPermissions": QuickSightCustomPermissionsAttributes;
|
189886
190337
|
"AWS::QuickSight::Dashboard": QuickSightDashboardAttributes;
|
189887
190338
|
"AWS::QuickSight::DataSet": QuickSightDataSetAttributes;
|
189888
190339
|
"AWS::QuickSight::DataSource": QuickSightDataSourceAttributes;
|
@@ -190005,6 +190456,7 @@ export interface AttributeTypes {
|
|
190005
190456
|
"AWS::SageMaker::MonitoringSchedule": SageMakerMonitoringScheduleAttributes;
|
190006
190457
|
"AWS::SageMaker::NotebookInstance": SageMakerNotebookInstanceAttributes;
|
190007
190458
|
"AWS::SageMaker::NotebookInstanceLifecycleConfig": SageMakerNotebookInstanceLifecycleConfigAttributes;
|
190459
|
+
"AWS::SageMaker::PartnerApp": SageMakerPartnerAppAttributes;
|
190008
190460
|
"AWS::SageMaker::Project": SageMakerProjectAttributes;
|
190009
190461
|
"AWS::SageMaker::Space": SageMakerSpaceAttributes;
|
190010
190462
|
"AWS::SageMaker::StudioLifecycleConfig": SageMakerStudioLifecycleConfigAttributes;
|
@@ -191213,6 +191665,7 @@ export declare const ResourceType: {
|
|
191213
191665
|
readonly QLDBLedger: "AWS::QLDB::Ledger";
|
191214
191666
|
readonly QLDBStream: "AWS::QLDB::Stream";
|
191215
191667
|
readonly QuickSightAnalysis: "AWS::QuickSight::Analysis";
|
191668
|
+
readonly QuickSightCustomPermissions: "AWS::QuickSight::CustomPermissions";
|
191216
191669
|
readonly QuickSightDashboard: "AWS::QuickSight::Dashboard";
|
191217
191670
|
readonly QuickSightDataSet: "AWS::QuickSight::DataSet";
|
191218
191671
|
readonly QuickSightDataSource: "AWS::QuickSight::DataSource";
|
@@ -191352,6 +191805,7 @@ export declare const ResourceType: {
|
|
191352
191805
|
readonly SageMakerMonitoringSchedule: "AWS::SageMaker::MonitoringSchedule";
|
191353
191806
|
readonly SageMakerNotebookInstance: "AWS::SageMaker::NotebookInstance";
|
191354
191807
|
readonly SageMakerNotebookInstanceLifecycleConfig: "AWS::SageMaker::NotebookInstanceLifecycleConfig";
|
191808
|
+
readonly SageMakerPartnerApp: "AWS::SageMaker::PartnerApp";
|
191355
191809
|
readonly SageMakerPipeline: "AWS::SageMaker::Pipeline";
|
191356
191810
|
readonly SageMakerProject: "AWS::SageMaker::Project";
|
191357
191811
|
readonly SageMakerSpace: "AWS::SageMaker::Space";
|