@awboost/cfntypes 0.100.127 → 0.100.129
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.
@@ -19082,12 +19082,12 @@ export type BedrockFlowFlowDataConnectionConfiguration = {
|
|
19082
19082
|
export type BedrockFlowFlowDefinition = {
|
19083
19083
|
/**
|
19084
19084
|
* List of connections
|
19085
|
-
* @maxLength `
|
19085
|
+
* @maxLength `100`
|
19086
19086
|
*/
|
19087
19087
|
Connections?: BedrockFlowFlowConnection[];
|
19088
19088
|
/**
|
19089
19089
|
* List of nodes in a flow
|
19090
|
-
* @maxLength `
|
19090
|
+
* @maxLength `40`
|
19091
19091
|
*/
|
19092
19092
|
Nodes?: BedrockFlowFlowNode[];
|
19093
19093
|
};
|
@@ -19579,7 +19579,7 @@ export type BedrockFlowTextPromptTemplateConfiguration = {
|
|
19579
19579
|
/**
|
19580
19580
|
* List of input variables
|
19581
19581
|
* @minLength `0`
|
19582
|
-
* @maxLength `
|
19582
|
+
* @maxLength `20`
|
19583
19583
|
*/
|
19584
19584
|
InputVariables?: BedrockFlowPromptInputVariable[];
|
19585
19585
|
/**
|
@@ -19713,7 +19713,7 @@ export type BedrockFlowVersionAttributes = {
|
|
19713
19713
|
Definition: {
|
19714
19714
|
/**
|
19715
19715
|
* List of connections
|
19716
|
-
* @maxLength `
|
19716
|
+
* @maxLength `100`
|
19717
19717
|
*/
|
19718
19718
|
Connections: {
|
19719
19719
|
/**
|
@@ -19742,7 +19742,7 @@ export type BedrockFlowVersionAttributes = {
|
|
19742
19742
|
}[];
|
19743
19743
|
/**
|
19744
19744
|
* List of nodes in a flow
|
19745
|
-
* @maxLength `
|
19745
|
+
* @maxLength `40`
|
19746
19746
|
*/
|
19747
19747
|
Nodes: {
|
19748
19748
|
/**
|
@@ -19961,12 +19961,12 @@ export type BedrockFlowVersionFlowDataConnectionConfiguration = {
|
|
19961
19961
|
export type BedrockFlowVersionFlowDefinition = {
|
19962
19962
|
/**
|
19963
19963
|
* List of connections
|
19964
|
-
* @maxLength `
|
19964
|
+
* @maxLength `100`
|
19965
19965
|
*/
|
19966
19966
|
Connections?: BedrockFlowVersionFlowConnection[];
|
19967
19967
|
/**
|
19968
19968
|
* List of nodes in a flow
|
19969
|
-
* @maxLength `
|
19969
|
+
* @maxLength `40`
|
19970
19970
|
*/
|
19971
19971
|
Nodes?: BedrockFlowVersionFlowNode[];
|
19972
19972
|
};
|
@@ -20415,7 +20415,7 @@ export type BedrockFlowVersionTextPromptTemplateConfiguration = {
|
|
20415
20415
|
/**
|
20416
20416
|
* List of input variables
|
20417
20417
|
* @minLength `0`
|
20418
|
-
* @maxLength `
|
20418
|
+
* @maxLength `20`
|
20419
20419
|
*/
|
20420
20420
|
InputVariables?: BedrockFlowVersionPromptInputVariable[];
|
20421
20421
|
/**
|
@@ -21751,7 +21751,7 @@ export type BedrockPromptChatPromptTemplateConfiguration = {
|
|
21751
21751
|
/**
|
21752
21752
|
* List of input variables
|
21753
21753
|
* @minLength `0`
|
21754
|
-
* @maxLength `
|
21754
|
+
* @maxLength `20`
|
21755
21755
|
*/
|
21756
21756
|
InputVariables?: BedrockPromptPromptInputVariable[];
|
21757
21757
|
/**
|
@@ -21853,6 +21853,27 @@ export type BedrockPromptPromptInputVariable = {
|
|
21853
21853
|
*/
|
21854
21854
|
Name?: string;
|
21855
21855
|
};
|
21856
|
+
/**
|
21857
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptMetadataEntry`.
|
21858
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
21859
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.html}
|
21860
|
+
*/
|
21861
|
+
export type BedrockPromptPromptMetadataEntry = {
|
21862
|
+
/**
|
21863
|
+
* The key of a metadata tag for a prompt variant.
|
21864
|
+
* @minLength `1`
|
21865
|
+
* @maxLength `128`
|
21866
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
21867
|
+
*/
|
21868
|
+
Key: string;
|
21869
|
+
/**
|
21870
|
+
* The value of a metadata tag for a prompt variant.
|
21871
|
+
* @minLength `1`
|
21872
|
+
* @maxLength `1024`
|
21873
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
21874
|
+
*/
|
21875
|
+
Value: string;
|
21876
|
+
};
|
21856
21877
|
/**
|
21857
21878
|
* Type definition for `AWS::Bedrock::Prompt.PromptModelInferenceConfiguration`.
|
21858
21879
|
* Prompt model inference configuration
|
@@ -21918,6 +21939,12 @@ export type BedrockPromptPromptVariant = {
|
|
21918
21939
|
AdditionalModelRequestFields?: BedrockPromptAdditionalModelRequestFields;
|
21919
21940
|
GenAiResource?: BedrockPromptPromptGenAiResource;
|
21920
21941
|
InferenceConfiguration?: BedrockPromptPromptInferenceConfiguration;
|
21942
|
+
/**
|
21943
|
+
* List of metadata to associate with the prompt variant.
|
21944
|
+
* @minLength `0`
|
21945
|
+
* @maxLength `50`
|
21946
|
+
*/
|
21947
|
+
Metadata?: BedrockPromptPromptMetadataEntry[];
|
21921
21948
|
/**
|
21922
21949
|
* 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.
|
21923
21950
|
* @minLength `1`
|
@@ -21989,7 +22016,7 @@ export type BedrockPromptTextPromptTemplateConfiguration = {
|
|
21989
22016
|
/**
|
21990
22017
|
* List of input variables
|
21991
22018
|
* @minLength `0`
|
21992
|
-
* @maxLength `
|
22019
|
+
* @maxLength `20`
|
21993
22020
|
*/
|
21994
22021
|
InputVariables?: BedrockPromptPromptInputVariable[];
|
21995
22022
|
/**
|
@@ -22231,6 +22258,27 @@ export type BedrockPromptVersionAttributes = {
|
|
22231
22258
|
TopP: number;
|
22232
22259
|
};
|
22233
22260
|
};
|
22261
|
+
/**
|
22262
|
+
* List of metadata to associate with the prompt variant.
|
22263
|
+
* @minLength `0`
|
22264
|
+
* @maxLength `50`
|
22265
|
+
*/
|
22266
|
+
Metadata: {
|
22267
|
+
/**
|
22268
|
+
* The key of a metadata tag for a prompt variant.
|
22269
|
+
* @minLength `1`
|
22270
|
+
* @maxLength `128`
|
22271
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
22272
|
+
*/
|
22273
|
+
Key: string;
|
22274
|
+
/**
|
22275
|
+
* The value of a metadata tag for a prompt variant.
|
22276
|
+
* @minLength `1`
|
22277
|
+
* @maxLength `1024`
|
22278
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
22279
|
+
*/
|
22280
|
+
Value: string;
|
22281
|
+
}[];
|
22234
22282
|
/**
|
22235
22283
|
* 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.
|
22236
22284
|
* @minLength `1`
|
@@ -22304,7 +22352,7 @@ export type BedrockPromptVersionChatPromptTemplateConfiguration = {
|
|
22304
22352
|
/**
|
22305
22353
|
* List of input variables
|
22306
22354
|
* @minLength `0`
|
22307
|
-
* @maxLength `
|
22355
|
+
* @maxLength `20`
|
22308
22356
|
*/
|
22309
22357
|
InputVariables?: BedrockPromptVersionPromptInputVariable[];
|
22310
22358
|
/**
|
@@ -22406,6 +22454,27 @@ export type BedrockPromptVersionPromptInputVariable = {
|
|
22406
22454
|
*/
|
22407
22455
|
Name?: string;
|
22408
22456
|
};
|
22457
|
+
/**
|
22458
|
+
* Type definition for `AWS::Bedrock::PromptVersion.PromptMetadataEntry`.
|
22459
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
22460
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptmetadataentry.html}
|
22461
|
+
*/
|
22462
|
+
export type BedrockPromptVersionPromptMetadataEntry = {
|
22463
|
+
/**
|
22464
|
+
* The key of a metadata tag for a prompt variant.
|
22465
|
+
* @minLength `1`
|
22466
|
+
* @maxLength `128`
|
22467
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
22468
|
+
*/
|
22469
|
+
Key: string;
|
22470
|
+
/**
|
22471
|
+
* The value of a metadata tag for a prompt variant.
|
22472
|
+
* @minLength `1`
|
22473
|
+
* @maxLength `1024`
|
22474
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
22475
|
+
*/
|
22476
|
+
Value: string;
|
22477
|
+
};
|
22409
22478
|
/**
|
22410
22479
|
* Type definition for `AWS::Bedrock::PromptVersion.PromptModelInferenceConfiguration`.
|
22411
22480
|
* Prompt model inference configuration
|
@@ -22471,6 +22540,12 @@ export type BedrockPromptVersionPromptVariant = {
|
|
22471
22540
|
AdditionalModelRequestFields?: BedrockPromptVersionAdditionalModelRequestFields;
|
22472
22541
|
GenAiResource?: BedrockPromptVersionPromptGenAiResource;
|
22473
22542
|
InferenceConfiguration?: BedrockPromptVersionPromptInferenceConfiguration;
|
22543
|
+
/**
|
22544
|
+
* List of metadata to associate with the prompt variant.
|
22545
|
+
* @minLength `0`
|
22546
|
+
* @maxLength `50`
|
22547
|
+
*/
|
22548
|
+
Metadata?: BedrockPromptVersionPromptMetadataEntry[];
|
22474
22549
|
/**
|
22475
22550
|
* 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.
|
22476
22551
|
* @minLength `1`
|
@@ -22542,7 +22617,7 @@ export type BedrockPromptVersionTextPromptTemplateConfiguration = {
|
|
22542
22617
|
/**
|
22543
22618
|
* List of input variables
|
22544
22619
|
* @minLength `0`
|
22545
|
-
* @maxLength `
|
22620
|
+
* @maxLength `20`
|
22546
22621
|
*/
|
22547
22622
|
InputVariables?: BedrockPromptVersionPromptInputVariable[];
|
22548
22623
|
/**
|
@@ -57221,12 +57296,12 @@ export type EC2VPNGatewayRoutePropagationAttributes = {
|
|
57221
57296
|
Id: string;
|
57222
57297
|
};
|
57223
57298
|
/**
|
57224
|
-
* The AWS::ECR::PublicRepository resource specifies an Amazon Elastic Container Public
|
57299
|
+
* The ``AWS::ECR::PublicRepository`` resource specifies an Amazon Elastic Container Registry Public (Amazon ECR Public) repository, where users can push and pull Docker images, Open Container Initiative (OCI) images, and OCI compatible artifacts. For more information, see [Amazon ECR public repositories](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repositories.html) in the *Amazon ECR Public User Guide*.
|
57225
57300
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-publicrepository.html}
|
57226
57301
|
*/
|
57227
57302
|
export type ECRPublicRepositoryProps = {
|
57228
57303
|
/**
|
57229
|
-
* The
|
57304
|
+
* The details about the repository that are publicly visible in the Amazon ECR Public Gallery. For more information, see [Amazon ECR Public repository catalog data](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repository-catalog-data.html) in the *Amazon ECR Public User Guide*.
|
57230
57305
|
*/
|
57231
57306
|
RepositoryCatalogData?: {
|
57232
57307
|
/**
|
@@ -57256,14 +57331,15 @@ export type ECRPublicRepositoryProps = {
|
|
57256
57331
|
UsageText?: string;
|
57257
57332
|
};
|
57258
57333
|
/**
|
57259
|
-
|
57260
|
-
|
57261
|
-
|
57262
|
-
|
57263
|
-
|
57334
|
+
* The name to use for the public repository. The repository name may be specified on its own (such as ``nginx-web-app``) or it can be prepended with a namespace to group the repository into a category (such as ``project-a/nginx-web-app``). If you don't specify a name, CFNlong generates a unique physical ID and uses that ID for the repository name. For more information, see [Name Type](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-name.html).
|
57335
|
+
If you specify a name, you cannot perform updates that require replacement of this resource. You can perform updates that require no or some interruption. If you must replace the resource, specify a new name.
|
57336
|
+
* @minLength `2`
|
57337
|
+
* @maxLength `256`
|
57338
|
+
* @pattern `^(?=.{2,256}$)((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)*)$`
|
57339
|
+
*/
|
57264
57340
|
RepositoryName?: string;
|
57265
57341
|
/**
|
57266
|
-
* The JSON repository policy text to apply to the repository. For more information, see https://docs.aws.amazon.com/AmazonECR/latest/
|
57342
|
+
* The JSON repository policy text to apply to the public repository. For more information, see [Amazon ECR Public repository policies](https://docs.aws.amazon.com/AmazonECR/latest/public/public-repository-policies.html) in the *Amazon ECR Public User Guide*.
|
57267
57343
|
*/
|
57268
57344
|
RepositoryPolicyText?: Record<string, any> | string;
|
57269
57345
|
/**
|
@@ -57281,48 +57357,48 @@ export type ECRPublicRepositoryAttributes = {
|
|
57281
57357
|
};
|
57282
57358
|
/**
|
57283
57359
|
* Type definition for `AWS::ECR::PublicRepository.Tag`.
|
57284
|
-
*
|
57360
|
+
* The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
57285
57361
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-publicrepository-tag.html}
|
57286
57362
|
*/
|
57287
57363
|
export type ECRPublicRepositoryTag = {
|
57288
57364
|
/**
|
57289
|
-
*
|
57365
|
+
* One part of a key-value pair that make up a tag. A ``key`` is a general label that acts like a category for more specific tag values.
|
57290
57366
|
* @minLength `1`
|
57291
57367
|
* @maxLength `127`
|
57292
57368
|
*/
|
57293
57369
|
Key: string;
|
57294
57370
|
/**
|
57295
|
-
*
|
57371
|
+
* A ``value`` acts as a descriptor within a tag category (key).
|
57296
57372
|
* @minLength `1`
|
57297
57373
|
* @maxLength `255`
|
57298
57374
|
*/
|
57299
57375
|
Value: string;
|
57300
57376
|
};
|
57301
57377
|
/**
|
57302
|
-
* The AWS::ECR::PullThroughCacheRule resource
|
57378
|
+
* The ``AWS::ECR::PullThroughCacheRule`` resource creates or updates a pull through cache rule. A pull through cache rule provides a way to cache images from an upstream registry in your Amazon ECR private registry.
|
57303
57379
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pullthroughcacherule.html}
|
57304
57380
|
*/
|
57305
57381
|
export type ECRPullThroughCacheRuleProps = {
|
57306
57382
|
/**
|
57307
|
-
* The
|
57383
|
+
* The ARN of the Secrets Manager secret associated with the pull through cache rule.
|
57308
57384
|
* @minLength `50`
|
57309
57385
|
* @maxLength `612`
|
57310
57386
|
* @pattern `^arn:aws:secretsmanager:[a-zA-Z0-9-:]+:secret:ecr\-pullthroughcache\/[a-zA-Z0-9\/_+=.@-]+$`
|
57311
57387
|
*/
|
57312
57388
|
CredentialArn?: string;
|
57313
57389
|
/**
|
57314
|
-
* The
|
57390
|
+
* The Amazon ECR repository prefix associated with the pull through cache rule.
|
57315
57391
|
* @minLength `2`
|
57316
57392
|
* @maxLength `30`
|
57317
57393
|
* @pattern `(?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)*`
|
57318
57394
|
*/
|
57319
57395
|
EcrRepositoryPrefix?: string;
|
57320
57396
|
/**
|
57321
|
-
* The name of the upstream registry.
|
57397
|
+
* The name of the upstream source registry associated with the pull through cache rule.
|
57322
57398
|
*/
|
57323
57399
|
UpstreamRegistry?: string;
|
57324
57400
|
/**
|
57325
|
-
* The
|
57401
|
+
* The upstream registry URL associated with the pull through cache rule.
|
57326
57402
|
*/
|
57327
57403
|
UpstreamRegistryUrl?: string;
|
57328
57404
|
};
|
@@ -57351,12 +57427,13 @@ export type ECRRegistryPolicyAttributes = {
|
|
57351
57427
|
RegistryId: string;
|
57352
57428
|
};
|
57353
57429
|
/**
|
57354
|
-
* The AWS::ECR::ReplicationConfiguration resource
|
57430
|
+
* The ``AWS::ECR::ReplicationConfiguration`` resource creates or updates the replication configuration for a private registry. The first time a replication configuration is applied to a private registry, a service-linked IAM role is created in your account for the replication process. For more information, see [Using Service-Linked Roles for Amazon ECR](https://docs.aws.amazon.com/AmazonECR/latest/userguide/using-service-linked-roles.html) in the *Amazon Elastic Container Registry User Guide*.
|
57431
|
+
When configuring cross-account replication, the destination account must grant the source account permission to replicate. This permission is controlled using a private registry permissions policy. For more information, see ``AWS::ECR::RegistryPolicy``.
|
57355
57432
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-replicationconfiguration.html}
|
57356
57433
|
*/
|
57357
57434
|
export type ECRReplicationConfigurationProps = {
|
57358
57435
|
/**
|
57359
|
-
*
|
57436
|
+
* The replication configuration for a registry.
|
57360
57437
|
*/
|
57361
57438
|
ReplicationConfiguration: ECRReplicationConfigurationReplicationConfiguration;
|
57362
57439
|
};
|
@@ -57365,9 +57442,6 @@ export type ECRReplicationConfigurationProps = {
|
|
57365
57442
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-replicationconfiguration.html#aws-resource-ecr-replicationconfiguration-return-values}
|
57366
57443
|
*/
|
57367
57444
|
export type ECRReplicationConfigurationAttributes = {
|
57368
|
-
/**
|
57369
|
-
* The RegistryId associated with the aws account.
|
57370
|
-
*/
|
57371
57445
|
RegistryId: string;
|
57372
57446
|
};
|
57373
57447
|
/**
|
@@ -57378,12 +57452,12 @@ export type ECRReplicationConfigurationAttributes = {
|
|
57378
57452
|
export type ECRReplicationConfigurationFilterType = "PREFIX_MATCH";
|
57379
57453
|
/**
|
57380
57454
|
* Type definition for `AWS::ECR::ReplicationConfiguration.ReplicationConfiguration`.
|
57381
|
-
*
|
57455
|
+
* The replication configuration for a registry.
|
57382
57456
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationconfiguration.html}
|
57383
57457
|
*/
|
57384
57458
|
export type ECRReplicationConfigurationReplicationConfiguration = {
|
57385
57459
|
/**
|
57386
|
-
* An array of objects representing the replication
|
57460
|
+
* An array of objects representing the replication destinations and repository filters for a replication configuration.
|
57387
57461
|
* @minLength `0`
|
57388
57462
|
* @maxLength `10`
|
57389
57463
|
*/
|
@@ -57391,35 +57465,35 @@ export type ECRReplicationConfigurationReplicationConfiguration = {
|
|
57391
57465
|
};
|
57392
57466
|
/**
|
57393
57467
|
* Type definition for `AWS::ECR::ReplicationConfiguration.ReplicationDestination`.
|
57394
|
-
* An array of objects representing the
|
57468
|
+
* An array of objects representing the destination for a replication rule.
|
57395
57469
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationdestination.html}
|
57396
57470
|
*/
|
57397
57471
|
export type ECRReplicationConfigurationReplicationDestination = {
|
57398
57472
|
/**
|
57399
|
-
*
|
57473
|
+
* The Region to replicate to.
|
57400
57474
|
* @pattern `[0-9a-z-]{2,25}`
|
57401
57475
|
*/
|
57402
57476
|
Region: string;
|
57403
57477
|
/**
|
57404
|
-
* The account ID of the
|
57478
|
+
* The AWS account ID of the Amazon ECR private registry to replicate to. When configuring cross-Region replication within your own registry, specify your own account ID.
|
57405
57479
|
* @pattern `^[0-9]{12}$`
|
57406
57480
|
*/
|
57407
57481
|
RegistryId: string;
|
57408
57482
|
};
|
57409
57483
|
/**
|
57410
57484
|
* Type definition for `AWS::ECR::ReplicationConfiguration.ReplicationRule`.
|
57411
|
-
* An array of objects representing the
|
57485
|
+
* An array of objects representing the replication destinations and repository filters for a replication configuration.
|
57412
57486
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-replicationrule.html}
|
57413
57487
|
*/
|
57414
57488
|
export type ECRReplicationConfigurationReplicationRule = {
|
57415
57489
|
/**
|
57416
|
-
* An array of objects representing the
|
57490
|
+
* An array of objects representing the destination for a replication rule.
|
57417
57491
|
* @minLength `1`
|
57418
57492
|
* @maxLength `25`
|
57419
57493
|
*/
|
57420
57494
|
Destinations: ECRReplicationConfigurationReplicationDestination[];
|
57421
57495
|
/**
|
57422
|
-
* An array of objects representing the
|
57496
|
+
* An array of objects representing the filters for a replication rule. Specifying a repository filter for a replication rule provides a method for controlling which repositories in a private registry are replicated.
|
57423
57497
|
* @minLength `0`
|
57424
57498
|
* @maxLength `100`
|
57425
57499
|
*/
|
@@ -57427,17 +57501,17 @@ export type ECRReplicationConfigurationReplicationRule = {
|
|
57427
57501
|
};
|
57428
57502
|
/**
|
57429
57503
|
* Type definition for `AWS::ECR::ReplicationConfiguration.RepositoryFilter`.
|
57430
|
-
*
|
57504
|
+
* The filter settings used with image replication. Specifying a repository filter to a replication rule provides a method for controlling which repositories in a private registry are replicated. If no filters are added, the contents of all repositories are replicated.
|
57431
57505
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-replicationconfiguration-repositoryfilter.html}
|
57432
57506
|
*/
|
57433
57507
|
export type ECRReplicationConfigurationRepositoryFilter = {
|
57434
57508
|
/**
|
57435
|
-
* The repository filter
|
57509
|
+
* The repository filter details. When the ``PREFIX_MATCH`` filter type is specified, this value is required and should be the repository name prefix to configure replication for.
|
57436
57510
|
* @pattern `^(?:[a-z0-9]+(?:[._-][a-z0-9]*)/*)*[a-z0-9]*(?:[._-][a-z0-9]*)*$`
|
57437
57511
|
*/
|
57438
57512
|
Filter: string;
|
57439
57513
|
/**
|
57440
|
-
*
|
57514
|
+
* The repository filter type. The only supported value is ``PREFIX_MATCH``, which is a repository name prefix specified with the ``filter`` parameter.
|
57441
57515
|
*/
|
57442
57516
|
FilterType: ECRReplicationConfigurationFilterType;
|
57443
57517
|
};
|
@@ -57496,15 +57570,17 @@ export type ECRRepositoryAttributes = {
|
|
57496
57570
|
/**
|
57497
57571
|
* Type definition for `AWS::ECR::Repository.EncryptionConfiguration`.
|
57498
57572
|
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
57499
|
-
By default, when no encryption configuration is set or the ``AES256`` encryption type is used, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts your data at rest using an
|
57573
|
+
By default, when no encryption configuration is set or the ``AES256`` encryption type is used, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts your data at rest using an AES256 encryption algorithm. This does not require any action on your part.
|
57500
57574
|
For more control over the encryption of the contents of your repository, you can use server-side encryption with KMSlong key stored in KMSlong (KMS) to encrypt your images. For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
57501
57575
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-encryptionconfiguration.html}
|
57502
57576
|
*/
|
57503
57577
|
export type ECRRepositoryEncryptionConfiguration = {
|
57504
57578
|
/**
|
57505
57579
|
* The encryption type to use.
|
57506
|
-
If you use the ``KMS`` encryption type, the contents of the repository will be encrypted using server-side encryption with KMSlong key stored in KMS. When you use KMS to encrypt your data, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you already created.
|
57507
|
-
If you use the ``
|
57580
|
+
If you use the ``KMS`` encryption type, the contents of the repository will be encrypted using server-side encryption with KMSlong key stored in KMS. When you use KMS to encrypt your data, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you already created.
|
57581
|
+
If you use the ``KMS_DSSE`` encryption type, the contents of the repository will be encrypted with two layers of encryption using server-side encryption with the KMS Management Service key stored in KMS. Similar to the ``KMS`` encryption type, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you've already created.
|
57582
|
+
If you use the ``AES256`` encryption type, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts the images in the repository using an AES256 encryption algorithm.
|
57583
|
+
For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
57508
57584
|
*/
|
57509
57585
|
EncryptionType: ECRRepositoryEncryptionType;
|
57510
57586
|
/**
|
@@ -57903,12 +57979,14 @@ export type ECSClusterExecuteCommandLogConfiguration = {
|
|
57903
57979
|
*/
|
57904
57980
|
export type ECSClusterManagedStorageConfiguration = {
|
57905
57981
|
/**
|
57906
|
-
|
57907
|
-
|
57982
|
+
* Specify the KMSlong key ID for the Fargate ephemeral storage.
|
57983
|
+
The key must be a single Region key.
|
57984
|
+
*/
|
57908
57985
|
FargateEphemeralStorageKmsKeyId?: string;
|
57909
57986
|
/**
|
57910
|
-
|
57911
|
-
|
57987
|
+
* Specify a KMSlong key ID to encrypt the managed storage.
|
57988
|
+
The key must be a single Region key.
|
57989
|
+
*/
|
57912
57990
|
KmsKeyId?: string;
|
57913
57991
|
};
|
57914
57992
|
/**
|
@@ -57919,7 +57997,7 @@ export type ECSClusterManagedStorageConfiguration = {
|
|
57919
57997
|
*/
|
57920
57998
|
export type ECSClusterServiceConnectDefaults = {
|
57921
57999
|
/**
|
57922
|
-
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include
|
58000
|
+
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include greater than (>), less than (<), double quotation marks ("), or slash (/).
|
57923
58001
|
If you enter an existing namespace name or ARN, then that namespace will be used. Any namespace type is supported. The namespace must be in this account and this AWS Region.
|
57924
58002
|
If you enter a new name, a CMAPlong namespace will be created. Amazon ECS creates a CMAP namespace with the "API calls" method of instance discovery only. This instance discovery method is the "HTTP" namespace type in the CLIlong. Other types of instance discovery aren't used by Service Connect.
|
57925
58003
|
If you update the cluster with an empty string ``""`` for the namespace name, the cluster configuration for Service Connect is removed. Note that the namespace will remain in CMAP and must be deleted separately.
|
@@ -86466,10 +86544,6 @@ export type IoTSiteWiseGatewayGatewayCapabilitySummary = {
|
|
86466
86544
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-gatewayplatform.html}
|
86467
86545
|
*/
|
86468
86546
|
export type IoTSiteWiseGatewayGatewayPlatform = {
|
86469
|
-
/**
|
86470
|
-
* A gateway that runs on AWS IoT Greengrass V1.
|
86471
|
-
*/
|
86472
|
-
Greengrass?: any;
|
86473
86547
|
/**
|
86474
86548
|
* A gateway that runs on AWS IoT Greengrass V2.
|
86475
86549
|
*/
|
@@ -125120,6 +125194,11 @@ export type QuickSightAnalysisCustomValuesConfiguration = {
|
|
125120
125194
|
CustomValues: QuickSightAnalysisCustomParameterValues;
|
125121
125195
|
IncludeNullValue?: boolean;
|
125122
125196
|
};
|
125197
|
+
/**
|
125198
|
+
* Type definition for `AWS::QuickSight::Analysis.DashboardBehavior`.
|
125199
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dashboardbehavior.html}
|
125200
|
+
*/
|
125201
|
+
export type QuickSightAnalysisDashboardBehavior = "ENABLED" | "DISABLED";
|
125123
125202
|
/**
|
125124
125203
|
* Type definition for `AWS::QuickSight::Analysis.DataBarsOptions`.
|
125125
125204
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-databarsoptions.html}
|
@@ -126911,7 +126990,7 @@ export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
|
|
126911
126990
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
126912
126991
|
*/
|
126913
126992
|
export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
|
126914
|
-
Interactions?:
|
126993
|
+
Interactions?: QuickSightAnalysisVisualInteractionOptions;
|
126915
126994
|
Legend?: QuickSightAnalysisLegendOptions;
|
126916
126995
|
MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
|
126917
126996
|
MapState?: QuickSightAnalysisGeospatialMapState;
|
@@ -126981,7 +127060,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
|
|
126981
127060
|
*/
|
126982
127061
|
export type QuickSightAnalysisGeospatialMapConfiguration = {
|
126983
127062
|
FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
|
126984
|
-
Interactions?:
|
127063
|
+
Interactions?: QuickSightAnalysisVisualInteractionOptions;
|
126985
127064
|
Legend?: QuickSightAnalysisLegendOptions;
|
126986
127065
|
MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
|
126987
127066
|
PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
|
@@ -127519,7 +127598,7 @@ export type QuickSightAnalysisImageInteractionOptions = {
|
|
127519
127598
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
127520
127599
|
*/
|
127521
127600
|
export type QuickSightAnalysisImageMenuOption = {
|
127522
|
-
AvailabilityStatus?:
|
127601
|
+
AvailabilityStatus?: QuickSightAnalysisDashboardBehavior;
|
127523
127602
|
};
|
127524
127603
|
/**
|
127525
127604
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
@@ -128366,7 +128445,7 @@ export type QuickSightAnalysisNumberFormatConfiguration = {
|
|
128366
128445
|
* Type definition for `AWS::QuickSight::Analysis.NumberScale`.
|
128367
128446
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numberscale.html}
|
128368
128447
|
*/
|
128369
|
-
export type QuickSightAnalysisNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
128448
|
+
export type QuickSightAnalysisNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
128370
128449
|
/**
|
128371
128450
|
* Type definition for `AWS::QuickSight::Analysis.NumericalAggregationFunction`.
|
128372
128451
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numericalaggregationfunction.html}
|
@@ -130174,11 +130253,6 @@ export type QuickSightAnalysisShapeConditionalFormat = {
|
|
130174
130253
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
|
130175
130254
|
*/
|
130176
130255
|
export type QuickSightAnalysisSheet = {
|
130177
|
-
/**
|
130178
|
-
* @minLength `0`
|
130179
|
-
* @maxLength `10`
|
130180
|
-
*/
|
130181
|
-
Images?: QuickSightAnalysisSheetImage[];
|
130182
130256
|
/**
|
130183
130257
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
130184
130258
|
console.</p>
|
@@ -131601,6 +131675,14 @@ export type QuickSightAnalysisVisualCustomActionOperation = {
|
|
131601
131675
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualcustomactiontrigger.html}
|
131602
131676
|
*/
|
131603
131677
|
export type QuickSightAnalysisVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
131678
|
+
/**
|
131679
|
+
* Type definition for `AWS::QuickSight::Analysis.VisualInteractionOptions`.
|
131680
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
|
131681
|
+
*/
|
131682
|
+
export type QuickSightAnalysisVisualInteractionOptions = {
|
131683
|
+
ContextMenuOption?: any;
|
131684
|
+
VisualMenuOption?: any;
|
131685
|
+
};
|
131604
131686
|
/**
|
131605
131687
|
* Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
|
131606
131688
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualpalette.html}
|
@@ -132117,154 +132199,6 @@ export type QuickSightDashboardAttributes = {
|
|
132117
132199
|
* @maxLength `20`
|
132118
132200
|
*/
|
132119
132201
|
Sheets: {
|
132120
|
-
/**
|
132121
|
-
* @minLength `0`
|
132122
|
-
* @maxLength `10`
|
132123
|
-
*/
|
132124
|
-
Images: {
|
132125
|
-
/**
|
132126
|
-
* @minLength `0`
|
132127
|
-
* @maxLength `10`
|
132128
|
-
*/
|
132129
|
-
Actions: {
|
132130
|
-
/**
|
132131
|
-
* @minLength `1`
|
132132
|
-
* @maxLength `2`
|
132133
|
-
*/
|
132134
|
-
ActionOperations: {
|
132135
|
-
NavigationOperation: {
|
132136
|
-
LocalNavigationConfiguration: {
|
132137
|
-
/**
|
132138
|
-
* @minLength `1`
|
132139
|
-
* @maxLength `512`
|
132140
|
-
* @pattern `^[\w\-]+$`
|
132141
|
-
*/
|
132142
|
-
TargetSheetId: string;
|
132143
|
-
};
|
132144
|
-
};
|
132145
|
-
SetParametersOperation: {
|
132146
|
-
/**
|
132147
|
-
* @minLength `1`
|
132148
|
-
* @maxLength `200`
|
132149
|
-
*/
|
132150
|
-
ParameterValueConfigurations: {
|
132151
|
-
/**
|
132152
|
-
* @minLength `1`
|
132153
|
-
* @maxLength `2048`
|
132154
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
132155
|
-
*/
|
132156
|
-
DestinationParameterName: string;
|
132157
|
-
Value: {
|
132158
|
-
CustomValuesConfiguration: {
|
132159
|
-
CustomValues: {
|
132160
|
-
/**
|
132161
|
-
* @minLength `0`
|
132162
|
-
* @maxLength `50000`
|
132163
|
-
*/
|
132164
|
-
DateTimeValues: string[];
|
132165
|
-
/**
|
132166
|
-
* @minLength `0`
|
132167
|
-
* @maxLength `50000`
|
132168
|
-
*/
|
132169
|
-
DecimalValues: number[];
|
132170
|
-
/**
|
132171
|
-
* @minLength `0`
|
132172
|
-
* @maxLength `50000`
|
132173
|
-
*/
|
132174
|
-
IntegerValues: number[];
|
132175
|
-
/**
|
132176
|
-
* @minLength `0`
|
132177
|
-
* @maxLength `50000`
|
132178
|
-
*/
|
132179
|
-
StringValues: string[];
|
132180
|
-
};
|
132181
|
-
IncludeNullValue: boolean;
|
132182
|
-
};
|
132183
|
-
SelectAllValueOptions: QuickSightDashboardSelectAllValueOptions;
|
132184
|
-
SourceColumn: {
|
132185
|
-
/**
|
132186
|
-
* @minLength `1`
|
132187
|
-
* @maxLength `127`
|
132188
|
-
*/
|
132189
|
-
ColumnName: string;
|
132190
|
-
/**
|
132191
|
-
* @minLength `1`
|
132192
|
-
* @maxLength `2048`
|
132193
|
-
*/
|
132194
|
-
DataSetIdentifier: string;
|
132195
|
-
};
|
132196
|
-
/**
|
132197
|
-
* @minLength `1`
|
132198
|
-
* @maxLength `512`
|
132199
|
-
*/
|
132200
|
-
SourceField: string;
|
132201
|
-
SourceParameterName: string;
|
132202
|
-
};
|
132203
|
-
}[];
|
132204
|
-
};
|
132205
|
-
URLOperation: {
|
132206
|
-
URLTarget: QuickSightDashboardURLTargetConfiguration;
|
132207
|
-
/**
|
132208
|
-
* @minLength `1`
|
132209
|
-
* @maxLength `2048`
|
132210
|
-
*/
|
132211
|
-
URLTemplate: string;
|
132212
|
-
};
|
132213
|
-
}[];
|
132214
|
-
/**
|
132215
|
-
* @minLength `1`
|
132216
|
-
* @maxLength `512`
|
132217
|
-
* @pattern `^[\w\-]+$`
|
132218
|
-
*/
|
132219
|
-
CustomActionId: string;
|
132220
|
-
/**
|
132221
|
-
* @minLength `1`
|
132222
|
-
* @maxLength `256`
|
132223
|
-
*/
|
132224
|
-
Name: string;
|
132225
|
-
Status: QuickSightDashboardWidgetStatus;
|
132226
|
-
Trigger: QuickSightDashboardImageCustomActionTrigger;
|
132227
|
-
}[];
|
132228
|
-
/**
|
132229
|
-
* @minLength `1`
|
132230
|
-
* @maxLength `1024`
|
132231
|
-
*/
|
132232
|
-
ImageContentAltText: string;
|
132233
|
-
Interactions: {
|
132234
|
-
ImageMenuOption: {
|
132235
|
-
AvailabilityStatus: QuickSightDashboardDashboardBehavior;
|
132236
|
-
};
|
132237
|
-
};
|
132238
|
-
Scaling: {
|
132239
|
-
ScalingType: QuickSightDashboardSheetImageScalingType;
|
132240
|
-
};
|
132241
|
-
/**
|
132242
|
-
* @minLength `1`
|
132243
|
-
* @maxLength `512`
|
132244
|
-
* @pattern `^[\w\-]+$`
|
132245
|
-
*/
|
132246
|
-
SheetImageId: string;
|
132247
|
-
Source: {
|
132248
|
-
SheetImageStaticFileSource: {
|
132249
|
-
/**
|
132250
|
-
* @minLength `1`
|
132251
|
-
* @maxLength `512`
|
132252
|
-
* @pattern `^[\w\-]+$`
|
132253
|
-
*/
|
132254
|
-
StaticFileId: string;
|
132255
|
-
};
|
132256
|
-
};
|
132257
|
-
Tooltip: {
|
132258
|
-
TooltipText: {
|
132259
|
-
/**
|
132260
|
-
* @minLength `1`
|
132261
|
-
* @maxLength `1024`
|
132262
|
-
*/
|
132263
|
-
PlainText: string;
|
132264
|
-
};
|
132265
|
-
Visibility: QuickSightDashboardVisibility;
|
132266
|
-
};
|
132267
|
-
}[];
|
132268
132202
|
/**
|
132269
132203
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
132270
132204
|
console.</p>
|
@@ -133611,7 +133545,7 @@ export type QuickSightDashboardDashboardPublishOptions = {
|
|
133611
133545
|
*/
|
133612
133546
|
SheetLayoutElementMaximizationOption?: QuickSightDashboardSheetLayoutElementMaximizationOption;
|
133613
133547
|
VisualAxisSortOption?: QuickSightDashboardVisualAxisSortOption;
|
133614
|
-
VisualMenuOption?:
|
133548
|
+
VisualMenuOption?: QuickSightDashboardVisualMenuOption;
|
133615
133549
|
/**
|
133616
133550
|
* <p>The visual publish options of a visual in a dashboard</p>
|
133617
133551
|
*/
|
@@ -135595,7 +135529,7 @@ export type QuickSightDashboardGeospatialLayerJoinDefinition = {
|
|
135595
135529
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
135596
135530
|
*/
|
135597
135531
|
export type QuickSightDashboardGeospatialLayerMapConfiguration = {
|
135598
|
-
Interactions?:
|
135532
|
+
Interactions?: QuickSightDashboardVisualInteractionOptions;
|
135599
135533
|
Legend?: QuickSightDashboardLegendOptions;
|
135600
135534
|
MapLayers?: QuickSightDashboardGeospatialLayerItem[];
|
135601
135535
|
MapState?: QuickSightDashboardGeospatialMapState;
|
@@ -135665,7 +135599,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
|
|
135665
135599
|
*/
|
135666
135600
|
export type QuickSightDashboardGeospatialMapConfiguration = {
|
135667
135601
|
FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
|
135668
|
-
Interactions?:
|
135602
|
+
Interactions?: QuickSightDashboardVisualInteractionOptions;
|
135669
135603
|
Legend?: QuickSightDashboardLegendOptions;
|
135670
135604
|
MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
|
135671
135605
|
PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
|
@@ -137061,7 +136995,7 @@ export type QuickSightDashboardNumberFormatConfiguration = {
|
|
137061
136995
|
* Type definition for `AWS::QuickSight::Dashboard.NumberScale`.
|
137062
136996
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numberscale.html}
|
137063
136997
|
*/
|
137064
|
-
export type QuickSightDashboardNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
136998
|
+
export type QuickSightDashboardNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
137065
136999
|
/**
|
137066
137000
|
* Type definition for `AWS::QuickSight::Dashboard.NumericalAggregationFunction`.
|
137067
137001
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericalaggregationfunction.html}
|
@@ -138857,11 +138791,6 @@ export type QuickSightDashboardShapeConditionalFormat = {
|
|
138857
138791
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
|
138858
138792
|
*/
|
138859
138793
|
export type QuickSightDashboardSheet = {
|
138860
|
-
/**
|
138861
|
-
* @minLength `0`
|
138862
|
-
* @maxLength `10`
|
138863
|
-
*/
|
138864
|
-
Images?: QuickSightDashboardSheetImage[];
|
138865
138794
|
/**
|
138866
138795
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
138867
138796
|
console.</p>
|
@@ -140307,6 +140236,21 @@ export type QuickSightDashboardVisualCustomActionOperation = {
|
|
140307
140236
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
140308
140237
|
*/
|
140309
140238
|
export type QuickSightDashboardVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
140239
|
+
/**
|
140240
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualInteractionOptions`.
|
140241
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
|
140242
|
+
*/
|
140243
|
+
export type QuickSightDashboardVisualInteractionOptions = {
|
140244
|
+
ContextMenuOption?: any;
|
140245
|
+
VisualMenuOption?: QuickSightDashboardVisualMenuOption;
|
140246
|
+
};
|
140247
|
+
/**
|
140248
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
140249
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
140250
|
+
*/
|
140251
|
+
export type QuickSightDashboardVisualMenuOption = {
|
140252
|
+
AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
|
140253
|
+
};
|
140310
140254
|
/**
|
140311
140255
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
140312
140256
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
@@ -154847,7 +154791,6 @@ export type RDSGlobalClusterProps = {
|
|
154847
154791
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
154848
154792
|
*/
|
154849
154793
|
GlobalClusterIdentifier?: string;
|
154850
|
-
GlobalEndpoint?: RDSGlobalClusterGlobalEndpoint;
|
154851
154794
|
/**
|
154852
154795
|
* The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional. This parameter is stored as a lowercase string.
|
154853
154796
|
*/
|
@@ -154863,6 +154806,18 @@ export type RDSGlobalClusterProps = {
|
|
154863
154806
|
*/
|
154864
154807
|
Tags?: RDSGlobalClusterTag[];
|
154865
154808
|
};
|
154809
|
+
/**
|
154810
|
+
* Attribute type definition for `AWS::RDS::GlobalCluster`.
|
154811
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#aws-resource-rds-globalcluster-return-values}
|
154812
|
+
*/
|
154813
|
+
export type RDSGlobalClusterAttributes = {
|
154814
|
+
GlobalEndpoint: {
|
154815
|
+
/**
|
154816
|
+
* The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
154817
|
+
*/
|
154818
|
+
Address: string;
|
154819
|
+
};
|
154820
|
+
};
|
154866
154821
|
/**
|
154867
154822
|
* Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
|
154868
154823
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
|
@@ -192968,6 +192923,7 @@ export interface AttributeTypes {
|
|
192968
192923
|
"AWS::RDS::DBSecurityGroup": RDSDBSecurityGroupAttributes;
|
192969
192924
|
"AWS::RDS::DBSecurityGroupIngress": RDSDBSecurityGroupIngressAttributes;
|
192970
192925
|
"AWS::RDS::DBShardGroup": RDSDBShardGroupAttributes;
|
192926
|
+
"AWS::RDS::GlobalCluster": RDSGlobalClusterAttributes;
|
192971
192927
|
"AWS::RDS::Integration": RDSIntegrationAttributes;
|
192972
192928
|
"AWS::Redshift::Cluster": RedshiftClusterAttributes;
|
192973
192929
|
"AWS::Redshift::ClusterSecurityGroup": RedshiftClusterSecurityGroupAttributes;
|