@awboost/cfntypes 0.100.126 → 0.100.128
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.
@@ -16363,11 +16363,60 @@ export type BatchComputeEnvironmentUpdatePolicy = {
|
|
16363
16363
|
JobExecutionTimeoutMinutes?: number;
|
16364
16364
|
TerminateJobsOnUpdate?: boolean;
|
16365
16365
|
};
|
16366
|
+
/**
|
16367
|
+
* Resource Type schema for AWS::Batch::ConsumableResource
|
16368
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
16369
|
+
*/
|
16370
|
+
export type BatchConsumableResourceProps = {
|
16371
|
+
/**
|
16372
|
+
* Name of ConsumableResource.
|
16373
|
+
* @pattern ``
|
16374
|
+
*/
|
16375
|
+
ConsumableResourceName?: string;
|
16376
|
+
/**
|
16377
|
+
* Type of Consumable Resource.
|
16378
|
+
*/
|
16379
|
+
ResourceType: BatchConsumableResourceResourceType;
|
16380
|
+
/**
|
16381
|
+
* A key-value pair to associate with a resource.
|
16382
|
+
*/
|
16383
|
+
Tags?: Record<string, string>;
|
16384
|
+
/**
|
16385
|
+
* Total Quantity of ConsumableResource.
|
16386
|
+
*/
|
16387
|
+
TotalQuantity: number;
|
16388
|
+
};
|
16389
|
+
/**
|
16390
|
+
* Attribute type definition for `AWS::Batch::ConsumableResource`.
|
16391
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html#aws-resource-batch-consumableresource-return-values}
|
16392
|
+
*/
|
16393
|
+
export type BatchConsumableResourceAttributes = {
|
16394
|
+
/**
|
16395
|
+
* Available Quantity of ConsumableResource.
|
16396
|
+
*/
|
16397
|
+
AvailableQuantity: number;
|
16398
|
+
/**
|
16399
|
+
* ARN of the Consumable Resource.
|
16400
|
+
*/
|
16401
|
+
ConsumableResourceArn: string;
|
16402
|
+
CreatedAt: number;
|
16403
|
+
/**
|
16404
|
+
* In-use Quantity of ConsumableResource.
|
16405
|
+
*/
|
16406
|
+
InUseQuantity: number;
|
16407
|
+
};
|
16408
|
+
/**
|
16409
|
+
* Type definition for `AWS::Batch::ConsumableResource.ResourceType`.
|
16410
|
+
* Type of Consumable Resource.
|
16411
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-consumableresource-resourcetype.html}
|
16412
|
+
*/
|
16413
|
+
export type BatchConsumableResourceResourceType = "REPLENISHABLE" | "NON_REPLENISHABLE";
|
16366
16414
|
/**
|
16367
16415
|
* Resource Type definition for AWS::Batch::JobDefinition
|
16368
16416
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html}
|
16369
16417
|
*/
|
16370
16418
|
export type BatchJobDefinitionProps = {
|
16419
|
+
ConsumableResourceProperties?: BatchJobDefinitionConsumableResourceProperties;
|
16371
16420
|
ContainerProperties?: BatchJobDefinitionContainerProperties;
|
16372
16421
|
EcsProperties?: BatchJobDefinitionEcsProperties;
|
16373
16422
|
EksProperties?: BatchJobDefinitionEksProperties;
|
@@ -16388,6 +16437,25 @@ export type BatchJobDefinitionProps = {
|
|
16388
16437
|
Timeout?: BatchJobDefinitionJobTimeout;
|
16389
16438
|
Type: string;
|
16390
16439
|
};
|
16440
|
+
/**
|
16441
|
+
* Type definition for `AWS::Batch::JobDefinition.ConsumableResourceProperties`.
|
16442
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourceproperties.html}
|
16443
|
+
*/
|
16444
|
+
export type BatchJobDefinitionConsumableResourceProperties = {
|
16445
|
+
ConsumableResourceList: BatchJobDefinitionConsumableResourceRequirement[];
|
16446
|
+
};
|
16447
|
+
/**
|
16448
|
+
* Type definition for `AWS::Batch::JobDefinition.ConsumableResourceRequirement`.
|
16449
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourcerequirement.html}
|
16450
|
+
*/
|
16451
|
+
export type BatchJobDefinitionConsumableResourceRequirement = {
|
16452
|
+
/**
|
16453
|
+
* The ARN of the consumable resource the job definition should consume.
|
16454
|
+
* @pattern `arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}`
|
16455
|
+
*/
|
16456
|
+
ConsumableResource: string;
|
16457
|
+
Quantity: number;
|
16458
|
+
};
|
16391
16459
|
/**
|
16392
16460
|
* Type definition for `AWS::Batch::JobDefinition.ContainerProperties`.
|
16393
16461
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html}
|
@@ -16738,6 +16806,7 @@ export type BatchJobDefinitionNodeProperties = {
|
|
16738
16806
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-noderangeproperty.html}
|
16739
16807
|
*/
|
16740
16808
|
export type BatchJobDefinitionNodeRangeProperty = {
|
16809
|
+
ConsumableResourceProperties?: BatchJobDefinitionConsumableResourceProperties;
|
16741
16810
|
Container?: BatchJobDefinitionMultiNodeContainerProperties;
|
16742
16811
|
EcsProperties?: BatchJobDefinitionMultiNodeEcsProperties;
|
16743
16812
|
EksProperties?: BatchJobDefinitionEksProperties;
|
@@ -19013,12 +19082,12 @@ export type BedrockFlowFlowDataConnectionConfiguration = {
|
|
19013
19082
|
export type BedrockFlowFlowDefinition = {
|
19014
19083
|
/**
|
19015
19084
|
* List of connections
|
19016
|
-
* @maxLength `
|
19085
|
+
* @maxLength `100`
|
19017
19086
|
*/
|
19018
19087
|
Connections?: BedrockFlowFlowConnection[];
|
19019
19088
|
/**
|
19020
19089
|
* List of nodes in a flow
|
19021
|
-
* @maxLength `
|
19090
|
+
* @maxLength `40`
|
19022
19091
|
*/
|
19023
19092
|
Nodes?: BedrockFlowFlowNode[];
|
19024
19093
|
};
|
@@ -19510,7 +19579,7 @@ export type BedrockFlowTextPromptTemplateConfiguration = {
|
|
19510
19579
|
/**
|
19511
19580
|
* List of input variables
|
19512
19581
|
* @minLength `0`
|
19513
|
-
* @maxLength `
|
19582
|
+
* @maxLength `20`
|
19514
19583
|
*/
|
19515
19584
|
InputVariables?: BedrockFlowPromptInputVariable[];
|
19516
19585
|
/**
|
@@ -19644,7 +19713,7 @@ export type BedrockFlowVersionAttributes = {
|
|
19644
19713
|
Definition: {
|
19645
19714
|
/**
|
19646
19715
|
* List of connections
|
19647
|
-
* @maxLength `
|
19716
|
+
* @maxLength `100`
|
19648
19717
|
*/
|
19649
19718
|
Connections: {
|
19650
19719
|
/**
|
@@ -19673,7 +19742,7 @@ export type BedrockFlowVersionAttributes = {
|
|
19673
19742
|
}[];
|
19674
19743
|
/**
|
19675
19744
|
* List of nodes in a flow
|
19676
|
-
* @maxLength `
|
19745
|
+
* @maxLength `40`
|
19677
19746
|
*/
|
19678
19747
|
Nodes: {
|
19679
19748
|
/**
|
@@ -19892,12 +19961,12 @@ export type BedrockFlowVersionFlowDataConnectionConfiguration = {
|
|
19892
19961
|
export type BedrockFlowVersionFlowDefinition = {
|
19893
19962
|
/**
|
19894
19963
|
* List of connections
|
19895
|
-
* @maxLength `
|
19964
|
+
* @maxLength `100`
|
19896
19965
|
*/
|
19897
19966
|
Connections?: BedrockFlowVersionFlowConnection[];
|
19898
19967
|
/**
|
19899
19968
|
* List of nodes in a flow
|
19900
|
-
* @maxLength `
|
19969
|
+
* @maxLength `40`
|
19901
19970
|
*/
|
19902
19971
|
Nodes?: BedrockFlowVersionFlowNode[];
|
19903
19972
|
};
|
@@ -20346,7 +20415,7 @@ export type BedrockFlowVersionTextPromptTemplateConfiguration = {
|
|
20346
20415
|
/**
|
20347
20416
|
* List of input variables
|
20348
20417
|
* @minLength `0`
|
20349
|
-
* @maxLength `
|
20418
|
+
* @maxLength `20`
|
20350
20419
|
*/
|
20351
20420
|
InputVariables?: BedrockFlowVersionPromptInputVariable[];
|
20352
20421
|
/**
|
@@ -21682,7 +21751,7 @@ export type BedrockPromptChatPromptTemplateConfiguration = {
|
|
21682
21751
|
/**
|
21683
21752
|
* List of input variables
|
21684
21753
|
* @minLength `0`
|
21685
|
-
* @maxLength `
|
21754
|
+
* @maxLength `20`
|
21686
21755
|
*/
|
21687
21756
|
InputVariables?: BedrockPromptPromptInputVariable[];
|
21688
21757
|
/**
|
@@ -21784,6 +21853,27 @@ export type BedrockPromptPromptInputVariable = {
|
|
21784
21853
|
*/
|
21785
21854
|
Name?: string;
|
21786
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
|
+
};
|
21787
21877
|
/**
|
21788
21878
|
* Type definition for `AWS::Bedrock::Prompt.PromptModelInferenceConfiguration`.
|
21789
21879
|
* Prompt model inference configuration
|
@@ -21849,6 +21939,12 @@ export type BedrockPromptPromptVariant = {
|
|
21849
21939
|
AdditionalModelRequestFields?: BedrockPromptAdditionalModelRequestFields;
|
21850
21940
|
GenAiResource?: BedrockPromptPromptGenAiResource;
|
21851
21941
|
InferenceConfiguration?: BedrockPromptPromptInferenceConfiguration;
|
21942
|
+
/**
|
21943
|
+
* List of metadata to associate with the prompt variant.
|
21944
|
+
* @minLength `0`
|
21945
|
+
* @maxLength `50`
|
21946
|
+
*/
|
21947
|
+
Metadata?: BedrockPromptPromptMetadataEntry[];
|
21852
21948
|
/**
|
21853
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.
|
21854
21950
|
* @minLength `1`
|
@@ -21920,7 +22016,7 @@ export type BedrockPromptTextPromptTemplateConfiguration = {
|
|
21920
22016
|
/**
|
21921
22017
|
* List of input variables
|
21922
22018
|
* @minLength `0`
|
21923
|
-
* @maxLength `
|
22019
|
+
* @maxLength `20`
|
21924
22020
|
*/
|
21925
22021
|
InputVariables?: BedrockPromptPromptInputVariable[];
|
21926
22022
|
/**
|
@@ -22162,6 +22258,27 @@ export type BedrockPromptVersionAttributes = {
|
|
22162
22258
|
TopP: number;
|
22163
22259
|
};
|
22164
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
|
+
}[];
|
22165
22282
|
/**
|
22166
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.
|
22167
22284
|
* @minLength `1`
|
@@ -22235,7 +22352,7 @@ export type BedrockPromptVersionChatPromptTemplateConfiguration = {
|
|
22235
22352
|
/**
|
22236
22353
|
* List of input variables
|
22237
22354
|
* @minLength `0`
|
22238
|
-
* @maxLength `
|
22355
|
+
* @maxLength `20`
|
22239
22356
|
*/
|
22240
22357
|
InputVariables?: BedrockPromptVersionPromptInputVariable[];
|
22241
22358
|
/**
|
@@ -22337,6 +22454,27 @@ export type BedrockPromptVersionPromptInputVariable = {
|
|
22337
22454
|
*/
|
22338
22455
|
Name?: string;
|
22339
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
|
+
};
|
22340
22478
|
/**
|
22341
22479
|
* Type definition for `AWS::Bedrock::PromptVersion.PromptModelInferenceConfiguration`.
|
22342
22480
|
* Prompt model inference configuration
|
@@ -22402,6 +22540,12 @@ export type BedrockPromptVersionPromptVariant = {
|
|
22402
22540
|
AdditionalModelRequestFields?: BedrockPromptVersionAdditionalModelRequestFields;
|
22403
22541
|
GenAiResource?: BedrockPromptVersionPromptGenAiResource;
|
22404
22542
|
InferenceConfiguration?: BedrockPromptVersionPromptInferenceConfiguration;
|
22543
|
+
/**
|
22544
|
+
* List of metadata to associate with the prompt variant.
|
22545
|
+
* @minLength `0`
|
22546
|
+
* @maxLength `50`
|
22547
|
+
*/
|
22548
|
+
Metadata?: BedrockPromptVersionPromptMetadataEntry[];
|
22405
22549
|
/**
|
22406
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.
|
22407
22551
|
* @minLength `1`
|
@@ -22473,7 +22617,7 @@ export type BedrockPromptVersionTextPromptTemplateConfiguration = {
|
|
22473
22617
|
/**
|
22474
22618
|
* List of input variables
|
22475
22619
|
* @minLength `0`
|
22476
|
-
* @maxLength `
|
22620
|
+
* @maxLength `20`
|
22477
22621
|
*/
|
22478
22622
|
InputVariables?: BedrockPromptVersionPromptInputVariable[];
|
22479
22623
|
/**
|
@@ -43755,6 +43899,10 @@ export type DataZoneDomainProps = {
|
|
43755
43899
|
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
43756
43900
|
*/
|
43757
43901
|
DomainExecutionRole: string;
|
43902
|
+
/**
|
43903
|
+
* The version of the domain.
|
43904
|
+
*/
|
43905
|
+
DomainVersion?: "V1" | "V2";
|
43758
43906
|
/**
|
43759
43907
|
* The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
|
43760
43908
|
* @minLength `1`
|
@@ -43766,6 +43914,11 @@ export type DataZoneDomainProps = {
|
|
43766
43914
|
* The name of the Amazon DataZone domain.
|
43767
43915
|
*/
|
43768
43916
|
Name: string;
|
43917
|
+
/**
|
43918
|
+
* The service role of the domain that is created.
|
43919
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
43920
|
+
*/
|
43921
|
+
ServiceRole?: string;
|
43769
43922
|
/**
|
43770
43923
|
* The single-sign on configuration of the Amazon DataZone domain.
|
43771
43924
|
*/
|
@@ -57494,55 +57647,54 @@ export type ECRRepositoryTag = {
|
|
57494
57647
|
Value: string;
|
57495
57648
|
};
|
57496
57649
|
/**
|
57497
|
-
* AWS::ECR::RepositoryCreationTemplate
|
57650
|
+
* Resource type definition for `AWS::ECR::RepositoryCreationTemplate`.
|
57651
|
+
* The details of the repository creation template associated with the request.
|
57498
57652
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html}
|
57499
57653
|
*/
|
57500
57654
|
export type ECRRepositoryCreationTemplateProps = {
|
57501
57655
|
/**
|
57502
|
-
* A list of enumerable Strings representing the repository creation scenarios that
|
57656
|
+
* A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The two supported scenarios are PULL_THROUGH_CACHE and REPLICATION
|
57503
57657
|
*/
|
57504
57658
|
AppliedFor: ECRRepositoryCreationTemplateAppliedForItem[];
|
57505
57659
|
/**
|
57506
|
-
* The ARN of the role to be assumed by ECR.
|
57660
|
+
* The ARN of the role to be assumed by Amazon ECR. Amazon ECR will assume your supplied role when the customRoleArn is specified. When this field isn't specified, Amazon ECR will use the service-linked role for the repository creation template.
|
57507
57661
|
* @maxLength `2048`
|
57508
57662
|
* @pattern `^arn:aws[-a-z0-9]*:iam::[0-9]{12}:role/[A-Za-z0-9+=,-.@_]*$`
|
57509
57663
|
*/
|
57510
57664
|
CustomRoleArn?: string;
|
57511
57665
|
/**
|
57512
|
-
* The description
|
57666
|
+
* The description associated with the repository creation template.
|
57513
57667
|
* @minLength `0`
|
57514
57668
|
* @maxLength `256`
|
57515
57669
|
*/
|
57516
57670
|
Description?: string;
|
57517
57671
|
/**
|
57518
|
-
|
57519
|
-
|
57520
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
57521
|
-
*/
|
57672
|
+
* The encryption configuration associated with the repository creation template.
|
57673
|
+
*/
|
57522
57674
|
EncryptionConfiguration?: ECRRepositoryCreationTemplateEncryptionConfiguration;
|
57523
57675
|
/**
|
57524
|
-
* The
|
57676
|
+
* The tag mutability setting for the repository. If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten. If IMMUTABLE is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
|
57525
57677
|
*/
|
57526
57678
|
ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
|
57527
57679
|
/**
|
57528
|
-
* The
|
57680
|
+
* The lifecycle policy to use for repositories created using the template.
|
57529
57681
|
* @minLength `100`
|
57530
57682
|
* @maxLength `30720`
|
57531
57683
|
*/
|
57532
57684
|
LifecyclePolicy?: string;
|
57533
57685
|
/**
|
57534
|
-
* The prefix
|
57686
|
+
* The repository namespace prefix associated with the repository creation template.
|
57535
57687
|
* @minLength `1`
|
57536
57688
|
* @maxLength `256`
|
57537
57689
|
* @pattern `^((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)/*?|ROOT)$`
|
57538
57690
|
*/
|
57539
57691
|
Prefix: string;
|
57540
57692
|
/**
|
57541
|
-
*
|
57693
|
+
* he repository policy to apply to repositories created using the template. A repository policy is a permissions policy associated with a repository to control access permissions.
|
57542
57694
|
*/
|
57543
57695
|
RepositoryPolicy?: string;
|
57544
57696
|
/**
|
57545
|
-
*
|
57697
|
+
* The metadata to apply to the repository to help you categorize and organize. Each tag consists of a key and an optional 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.
|
57546
57698
|
* @maxLength `50`
|
57547
57699
|
*/
|
57548
57700
|
ResourceTags?: ECRRepositoryCreationTemplateTag[];
|
@@ -57552,13 +57704,7 @@ export type ECRRepositoryCreationTemplateProps = {
|
|
57552
57704
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html#aws-resource-ecr-repositorycreationtemplate-return-values}
|
57553
57705
|
*/
|
57554
57706
|
export type ECRRepositoryCreationTemplateAttributes = {
|
57555
|
-
/**
|
57556
|
-
* Create timestamp of the template.
|
57557
|
-
*/
|
57558
57707
|
CreatedAt: string;
|
57559
|
-
/**
|
57560
|
-
* Update timestamp of the template.
|
57561
|
-
*/
|
57562
57708
|
UpdatedAt: string;
|
57563
57709
|
};
|
57564
57710
|
/**
|
@@ -57569,18 +57715,22 @@ export type ECRRepositoryCreationTemplateAttributes = {
|
|
57569
57715
|
export type ECRRepositoryCreationTemplateAppliedForItem = "REPLICATION" | "PULL_THROUGH_CACHE";
|
57570
57716
|
/**
|
57571
57717
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.EncryptionConfiguration`.
|
57572
|
-
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
57573
|
-
|
57574
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
57718
|
+
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
57719
|
+
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.
|
57720
|
+
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*.
|
57575
57721
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptionconfiguration.html}
|
57576
57722
|
*/
|
57577
57723
|
export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
|
57578
57724
|
/**
|
57579
|
-
|
57580
|
-
|
57725
|
+
* The encryption type to use.
|
57726
|
+
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.
|
57727
|
+
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.
|
57728
|
+
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.
|
57729
|
+
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*.
|
57730
|
+
*/
|
57581
57731
|
EncryptionType: ECRRepositoryCreationTemplateEncryptionType;
|
57582
57732
|
/**
|
57583
|
-
* If you use the KMS
|
57733
|
+
* If you use the ``KMS`` encryption type, specify the KMS key to use for encryption. The alias, key ID, or full ARN of the KMS key can be specified. The key must exist in the same Region as the repository. If no key is specified, the default AWS managed KMS key for Amazon ECR will be used.
|
57584
57734
|
* @minLength `1`
|
57585
57735
|
* @maxLength `2048`
|
57586
57736
|
*/
|
@@ -57594,18 +57744,18 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
|
|
57594
57744
|
export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
57595
57745
|
/**
|
57596
57746
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
|
57597
|
-
*
|
57747
|
+
* 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.
|
57598
57748
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-tag.html}
|
57599
57749
|
*/
|
57600
57750
|
export type ECRRepositoryCreationTemplateTag = {
|
57601
57751
|
/**
|
57602
|
-
*
|
57752
|
+
* 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.
|
57603
57753
|
* @minLength `1`
|
57604
57754
|
* @maxLength `128`
|
57605
57755
|
*/
|
57606
57756
|
Key: string;
|
57607
57757
|
/**
|
57608
|
-
*
|
57758
|
+
* A ``value`` acts as a descriptor within a tag category (key).
|
57609
57759
|
* @minLength `0`
|
57610
57760
|
* @maxLength `256`
|
57611
57761
|
*/
|
@@ -57828,12 +57978,14 @@ export type ECSClusterExecuteCommandLogConfiguration = {
|
|
57828
57978
|
*/
|
57829
57979
|
export type ECSClusterManagedStorageConfiguration = {
|
57830
57980
|
/**
|
57831
|
-
|
57832
|
-
|
57981
|
+
* Specify the KMSlong key ID for the Fargate ephemeral storage.
|
57982
|
+
The key must be a single Region key.
|
57983
|
+
*/
|
57833
57984
|
FargateEphemeralStorageKmsKeyId?: string;
|
57834
57985
|
/**
|
57835
|
-
|
57836
|
-
|
57986
|
+
* Specify a KMSlong key ID to encrypt the managed storage.
|
57987
|
+
The key must be a single Region key.
|
57988
|
+
*/
|
57837
57989
|
KmsKeyId?: string;
|
57838
57990
|
};
|
57839
57991
|
/**
|
@@ -57844,7 +57996,7 @@ export type ECSClusterManagedStorageConfiguration = {
|
|
57844
57996
|
*/
|
57845
57997
|
export type ECSClusterServiceConnectDefaults = {
|
57846
57998
|
/**
|
57847
|
-
* 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
|
57999
|
+
* 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 (/).
|
57848
58000
|
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.
|
57849
58001
|
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.
|
57850
58002
|
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.
|
@@ -86391,10 +86543,6 @@ export type IoTSiteWiseGatewayGatewayCapabilitySummary = {
|
|
86391
86543
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-gatewayplatform.html}
|
86392
86544
|
*/
|
86393
86545
|
export type IoTSiteWiseGatewayGatewayPlatform = {
|
86394
|
-
/**
|
86395
|
-
* A gateway that runs on AWS IoT Greengrass V1.
|
86396
|
-
*/
|
86397
|
-
Greengrass?: any;
|
86398
86546
|
/**
|
86399
86547
|
* A gateway that runs on AWS IoT Greengrass V2.
|
86400
86548
|
*/
|
@@ -118349,14 +118497,15 @@ export type PaymentCryptographyKeyTag = {
|
|
118349
118497
|
Value: string;
|
118350
118498
|
};
|
118351
118499
|
/**
|
118352
|
-
*
|
118500
|
+
* Resource type definition for `AWS::PCAConnectorAD::Connector`.
|
118501
|
+
* Represents a Connector that connects AWS PrivateCA and your directory
|
118353
118502
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html}
|
118354
118503
|
*/
|
118355
118504
|
export type PCAConnectorADConnectorProps = {
|
118356
118505
|
/**
|
118357
118506
|
* @minLength `5`
|
118358
118507
|
* @maxLength `200`
|
118359
|
-
* @pattern `^arn:[\w-]+:acm-pca:[\w-]+:[0-9]+:certificate-authority
|
118508
|
+
* @pattern `^arn:[\w-]+:acm-pca:[\w-]+:[0-9]+:certificate-authority\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
118360
118509
|
*/
|
118361
118510
|
CertificateAuthorityArn: string;
|
118362
118511
|
/**
|
@@ -118374,7 +118523,7 @@ export type PCAConnectorADConnectorAttributes = {
|
|
118374
118523
|
/**
|
118375
118524
|
* @minLength `5`
|
118376
118525
|
* @maxLength `200`
|
118377
|
-
* @pattern `^arn:[\w-]+:pca-connector-ad:[\w-]+:[0-9]+:connector
|
118526
|
+
* @pattern `^arn:[\w-]+:pca-connector-ad:[\w-]+:[0-9]+:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
118378
118527
|
*/
|
118379
118528
|
ConnectorArn: string;
|
118380
118529
|
};
|
@@ -118388,6 +118537,7 @@ export type PCAConnectorADConnectorTags = Record<string, string>;
|
|
118388
118537
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorad-connector-vpcinformation.html}
|
118389
118538
|
*/
|
118390
118539
|
export type PCAConnectorADConnectorVpcInformation = {
|
118540
|
+
IpAddressType?: "IPV4" | "DUALSTACK";
|
118391
118541
|
/**
|
118392
118542
|
* @minLength `1`
|
118393
118543
|
* @maxLength `5`
|
@@ -125043,6 +125193,11 @@ export type QuickSightAnalysisCustomValuesConfiguration = {
|
|
125043
125193
|
CustomValues: QuickSightAnalysisCustomParameterValues;
|
125044
125194
|
IncludeNullValue?: boolean;
|
125045
125195
|
};
|
125196
|
+
/**
|
125197
|
+
* Type definition for `AWS::QuickSight::Analysis.DashboardBehavior`.
|
125198
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dashboardbehavior.html}
|
125199
|
+
*/
|
125200
|
+
export type QuickSightAnalysisDashboardBehavior = "ENABLED" | "DISABLED";
|
125046
125201
|
/**
|
125047
125202
|
* Type definition for `AWS::QuickSight::Analysis.DataBarsOptions`.
|
125048
125203
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-databarsoptions.html}
|
@@ -126834,7 +126989,7 @@ export type QuickSightAnalysisGeospatialLayerJoinDefinition = {
|
|
126834
126989
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
126835
126990
|
*/
|
126836
126991
|
export type QuickSightAnalysisGeospatialLayerMapConfiguration = {
|
126837
|
-
Interactions?:
|
126992
|
+
Interactions?: QuickSightAnalysisVisualInteractionOptions;
|
126838
126993
|
Legend?: QuickSightAnalysisLegendOptions;
|
126839
126994
|
MapLayers?: QuickSightAnalysisGeospatialLayerItem[];
|
126840
126995
|
MapState?: QuickSightAnalysisGeospatialMapState;
|
@@ -126904,7 +127059,7 @@ export type QuickSightAnalysisGeospatialMapAggregatedFieldWells = {
|
|
126904
127059
|
*/
|
126905
127060
|
export type QuickSightAnalysisGeospatialMapConfiguration = {
|
126906
127061
|
FieldWells?: QuickSightAnalysisGeospatialMapFieldWells;
|
126907
|
-
Interactions?:
|
127062
|
+
Interactions?: QuickSightAnalysisVisualInteractionOptions;
|
126908
127063
|
Legend?: QuickSightAnalysisLegendOptions;
|
126909
127064
|
MapStyleOptions?: QuickSightAnalysisGeospatialMapStyleOptions;
|
126910
127065
|
PointStyleOptions?: QuickSightAnalysisGeospatialPointStyleOptions;
|
@@ -127442,7 +127597,7 @@ export type QuickSightAnalysisImageInteractionOptions = {
|
|
127442
127597
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
127443
127598
|
*/
|
127444
127599
|
export type QuickSightAnalysisImageMenuOption = {
|
127445
|
-
AvailabilityStatus?:
|
127600
|
+
AvailabilityStatus?: QuickSightAnalysisDashboardBehavior;
|
127446
127601
|
};
|
127447
127602
|
/**
|
127448
127603
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
@@ -128289,7 +128444,7 @@ export type QuickSightAnalysisNumberFormatConfiguration = {
|
|
128289
128444
|
* Type definition for `AWS::QuickSight::Analysis.NumberScale`.
|
128290
128445
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numberscale.html}
|
128291
128446
|
*/
|
128292
|
-
export type QuickSightAnalysisNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
128447
|
+
export type QuickSightAnalysisNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
128293
128448
|
/**
|
128294
128449
|
* Type definition for `AWS::QuickSight::Analysis.NumericalAggregationFunction`.
|
128295
128450
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numericalaggregationfunction.html}
|
@@ -130097,11 +130252,6 @@ export type QuickSightAnalysisShapeConditionalFormat = {
|
|
130097
130252
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
|
130098
130253
|
*/
|
130099
130254
|
export type QuickSightAnalysisSheet = {
|
130100
|
-
/**
|
130101
|
-
* @minLength `0`
|
130102
|
-
* @maxLength `10`
|
130103
|
-
*/
|
130104
|
-
Images?: QuickSightAnalysisSheetImage[];
|
130105
130255
|
/**
|
130106
130256
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
130107
130257
|
console.</p>
|
@@ -131524,6 +131674,14 @@ export type QuickSightAnalysisVisualCustomActionOperation = {
|
|
131524
131674
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualcustomactiontrigger.html}
|
131525
131675
|
*/
|
131526
131676
|
export type QuickSightAnalysisVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
131677
|
+
/**
|
131678
|
+
* Type definition for `AWS::QuickSight::Analysis.VisualInteractionOptions`.
|
131679
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
|
131680
|
+
*/
|
131681
|
+
export type QuickSightAnalysisVisualInteractionOptions = {
|
131682
|
+
ContextMenuOption?: any;
|
131683
|
+
VisualMenuOption?: any;
|
131684
|
+
};
|
131527
131685
|
/**
|
131528
131686
|
* Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
|
131529
131687
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualpalette.html}
|
@@ -132040,154 +132198,6 @@ export type QuickSightDashboardAttributes = {
|
|
132040
132198
|
* @maxLength `20`
|
132041
132199
|
*/
|
132042
132200
|
Sheets: {
|
132043
|
-
/**
|
132044
|
-
* @minLength `0`
|
132045
|
-
* @maxLength `10`
|
132046
|
-
*/
|
132047
|
-
Images: {
|
132048
|
-
/**
|
132049
|
-
* @minLength `0`
|
132050
|
-
* @maxLength `10`
|
132051
|
-
*/
|
132052
|
-
Actions: {
|
132053
|
-
/**
|
132054
|
-
* @minLength `1`
|
132055
|
-
* @maxLength `2`
|
132056
|
-
*/
|
132057
|
-
ActionOperations: {
|
132058
|
-
NavigationOperation: {
|
132059
|
-
LocalNavigationConfiguration: {
|
132060
|
-
/**
|
132061
|
-
* @minLength `1`
|
132062
|
-
* @maxLength `512`
|
132063
|
-
* @pattern `^[\w\-]+$`
|
132064
|
-
*/
|
132065
|
-
TargetSheetId: string;
|
132066
|
-
};
|
132067
|
-
};
|
132068
|
-
SetParametersOperation: {
|
132069
|
-
/**
|
132070
|
-
* @minLength `1`
|
132071
|
-
* @maxLength `200`
|
132072
|
-
*/
|
132073
|
-
ParameterValueConfigurations: {
|
132074
|
-
/**
|
132075
|
-
* @minLength `1`
|
132076
|
-
* @maxLength `2048`
|
132077
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
132078
|
-
*/
|
132079
|
-
DestinationParameterName: string;
|
132080
|
-
Value: {
|
132081
|
-
CustomValuesConfiguration: {
|
132082
|
-
CustomValues: {
|
132083
|
-
/**
|
132084
|
-
* @minLength `0`
|
132085
|
-
* @maxLength `50000`
|
132086
|
-
*/
|
132087
|
-
DateTimeValues: string[];
|
132088
|
-
/**
|
132089
|
-
* @minLength `0`
|
132090
|
-
* @maxLength `50000`
|
132091
|
-
*/
|
132092
|
-
DecimalValues: number[];
|
132093
|
-
/**
|
132094
|
-
* @minLength `0`
|
132095
|
-
* @maxLength `50000`
|
132096
|
-
*/
|
132097
|
-
IntegerValues: number[];
|
132098
|
-
/**
|
132099
|
-
* @minLength `0`
|
132100
|
-
* @maxLength `50000`
|
132101
|
-
*/
|
132102
|
-
StringValues: string[];
|
132103
|
-
};
|
132104
|
-
IncludeNullValue: boolean;
|
132105
|
-
};
|
132106
|
-
SelectAllValueOptions: QuickSightDashboardSelectAllValueOptions;
|
132107
|
-
SourceColumn: {
|
132108
|
-
/**
|
132109
|
-
* @minLength `1`
|
132110
|
-
* @maxLength `127`
|
132111
|
-
*/
|
132112
|
-
ColumnName: string;
|
132113
|
-
/**
|
132114
|
-
* @minLength `1`
|
132115
|
-
* @maxLength `2048`
|
132116
|
-
*/
|
132117
|
-
DataSetIdentifier: string;
|
132118
|
-
};
|
132119
|
-
/**
|
132120
|
-
* @minLength `1`
|
132121
|
-
* @maxLength `512`
|
132122
|
-
*/
|
132123
|
-
SourceField: string;
|
132124
|
-
SourceParameterName: string;
|
132125
|
-
};
|
132126
|
-
}[];
|
132127
|
-
};
|
132128
|
-
URLOperation: {
|
132129
|
-
URLTarget: QuickSightDashboardURLTargetConfiguration;
|
132130
|
-
/**
|
132131
|
-
* @minLength `1`
|
132132
|
-
* @maxLength `2048`
|
132133
|
-
*/
|
132134
|
-
URLTemplate: string;
|
132135
|
-
};
|
132136
|
-
}[];
|
132137
|
-
/**
|
132138
|
-
* @minLength `1`
|
132139
|
-
* @maxLength `512`
|
132140
|
-
* @pattern `^[\w\-]+$`
|
132141
|
-
*/
|
132142
|
-
CustomActionId: string;
|
132143
|
-
/**
|
132144
|
-
* @minLength `1`
|
132145
|
-
* @maxLength `256`
|
132146
|
-
*/
|
132147
|
-
Name: string;
|
132148
|
-
Status: QuickSightDashboardWidgetStatus;
|
132149
|
-
Trigger: QuickSightDashboardImageCustomActionTrigger;
|
132150
|
-
}[];
|
132151
|
-
/**
|
132152
|
-
* @minLength `1`
|
132153
|
-
* @maxLength `1024`
|
132154
|
-
*/
|
132155
|
-
ImageContentAltText: string;
|
132156
|
-
Interactions: {
|
132157
|
-
ImageMenuOption: {
|
132158
|
-
AvailabilityStatus: QuickSightDashboardDashboardBehavior;
|
132159
|
-
};
|
132160
|
-
};
|
132161
|
-
Scaling: {
|
132162
|
-
ScalingType: QuickSightDashboardSheetImageScalingType;
|
132163
|
-
};
|
132164
|
-
/**
|
132165
|
-
* @minLength `1`
|
132166
|
-
* @maxLength `512`
|
132167
|
-
* @pattern `^[\w\-]+$`
|
132168
|
-
*/
|
132169
|
-
SheetImageId: string;
|
132170
|
-
Source: {
|
132171
|
-
SheetImageStaticFileSource: {
|
132172
|
-
/**
|
132173
|
-
* @minLength `1`
|
132174
|
-
* @maxLength `512`
|
132175
|
-
* @pattern `^[\w\-]+$`
|
132176
|
-
*/
|
132177
|
-
StaticFileId: string;
|
132178
|
-
};
|
132179
|
-
};
|
132180
|
-
Tooltip: {
|
132181
|
-
TooltipText: {
|
132182
|
-
/**
|
132183
|
-
* @minLength `1`
|
132184
|
-
* @maxLength `1024`
|
132185
|
-
*/
|
132186
|
-
PlainText: string;
|
132187
|
-
};
|
132188
|
-
Visibility: QuickSightDashboardVisibility;
|
132189
|
-
};
|
132190
|
-
}[];
|
132191
132201
|
/**
|
132192
132202
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
132193
132203
|
console.</p>
|
@@ -133534,7 +133544,7 @@ export type QuickSightDashboardDashboardPublishOptions = {
|
|
133534
133544
|
*/
|
133535
133545
|
SheetLayoutElementMaximizationOption?: QuickSightDashboardSheetLayoutElementMaximizationOption;
|
133536
133546
|
VisualAxisSortOption?: QuickSightDashboardVisualAxisSortOption;
|
133537
|
-
VisualMenuOption?:
|
133547
|
+
VisualMenuOption?: QuickSightDashboardVisualMenuOption;
|
133538
133548
|
/**
|
133539
133549
|
* <p>The visual publish options of a visual in a dashboard</p>
|
133540
133550
|
*/
|
@@ -135518,7 +135528,7 @@ export type QuickSightDashboardGeospatialLayerJoinDefinition = {
|
|
135518
135528
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
135519
135529
|
*/
|
135520
135530
|
export type QuickSightDashboardGeospatialLayerMapConfiguration = {
|
135521
|
-
Interactions?:
|
135531
|
+
Interactions?: QuickSightDashboardVisualInteractionOptions;
|
135522
135532
|
Legend?: QuickSightDashboardLegendOptions;
|
135523
135533
|
MapLayers?: QuickSightDashboardGeospatialLayerItem[];
|
135524
135534
|
MapState?: QuickSightDashboardGeospatialMapState;
|
@@ -135588,7 +135598,7 @@ export type QuickSightDashboardGeospatialMapAggregatedFieldWells = {
|
|
135588
135598
|
*/
|
135589
135599
|
export type QuickSightDashboardGeospatialMapConfiguration = {
|
135590
135600
|
FieldWells?: QuickSightDashboardGeospatialMapFieldWells;
|
135591
|
-
Interactions?:
|
135601
|
+
Interactions?: QuickSightDashboardVisualInteractionOptions;
|
135592
135602
|
Legend?: QuickSightDashboardLegendOptions;
|
135593
135603
|
MapStyleOptions?: QuickSightDashboardGeospatialMapStyleOptions;
|
135594
135604
|
PointStyleOptions?: QuickSightDashboardGeospatialPointStyleOptions;
|
@@ -136984,7 +136994,7 @@ export type QuickSightDashboardNumberFormatConfiguration = {
|
|
136984
136994
|
* Type definition for `AWS::QuickSight::Dashboard.NumberScale`.
|
136985
136995
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numberscale.html}
|
136986
136996
|
*/
|
136987
|
-
export type QuickSightDashboardNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
136997
|
+
export type QuickSightDashboardNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
136988
136998
|
/**
|
136989
136999
|
* Type definition for `AWS::QuickSight::Dashboard.NumericalAggregationFunction`.
|
136990
137000
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericalaggregationfunction.html}
|
@@ -138780,11 +138790,6 @@ export type QuickSightDashboardShapeConditionalFormat = {
|
|
138780
138790
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
|
138781
138791
|
*/
|
138782
138792
|
export type QuickSightDashboardSheet = {
|
138783
|
-
/**
|
138784
|
-
* @minLength `0`
|
138785
|
-
* @maxLength `10`
|
138786
|
-
*/
|
138787
|
-
Images?: QuickSightDashboardSheetImage[];
|
138788
138793
|
/**
|
138789
138794
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
138790
138795
|
console.</p>
|
@@ -140230,6 +140235,21 @@ export type QuickSightDashboardVisualCustomActionOperation = {
|
|
140230
140235
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
140231
140236
|
*/
|
140232
140237
|
export type QuickSightDashboardVisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
140238
|
+
/**
|
140239
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualInteractionOptions`.
|
140240
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
|
140241
|
+
*/
|
140242
|
+
export type QuickSightDashboardVisualInteractionOptions = {
|
140243
|
+
ContextMenuOption?: any;
|
140244
|
+
VisualMenuOption?: QuickSightDashboardVisualMenuOption;
|
140245
|
+
};
|
140246
|
+
/**
|
140247
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
140248
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
140249
|
+
*/
|
140250
|
+
export type QuickSightDashboardVisualMenuOption = {
|
140251
|
+
AvailabilityStatus?: QuickSightDashboardDashboardBehavior;
|
140252
|
+
};
|
140233
140253
|
/**
|
140234
140254
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
140235
140255
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
@@ -143028,154 +143048,6 @@ export type QuickSightTemplateAttributes = {
|
|
143028
143048
|
* @maxLength `20`
|
143029
143049
|
*/
|
143030
143050
|
Sheets: {
|
143031
|
-
/**
|
143032
|
-
* @minLength `0`
|
143033
|
-
* @maxLength `10`
|
143034
|
-
*/
|
143035
|
-
Images: {
|
143036
|
-
/**
|
143037
|
-
* @minLength `0`
|
143038
|
-
* @maxLength `10`
|
143039
|
-
*/
|
143040
|
-
Actions: {
|
143041
|
-
/**
|
143042
|
-
* @minLength `1`
|
143043
|
-
* @maxLength `2`
|
143044
|
-
*/
|
143045
|
-
ActionOperations: {
|
143046
|
-
NavigationOperation: {
|
143047
|
-
LocalNavigationConfiguration: {
|
143048
|
-
/**
|
143049
|
-
* @minLength `1`
|
143050
|
-
* @maxLength `512`
|
143051
|
-
* @pattern `^[\w\-]+$`
|
143052
|
-
*/
|
143053
|
-
TargetSheetId: string;
|
143054
|
-
};
|
143055
|
-
};
|
143056
|
-
SetParametersOperation: {
|
143057
|
-
/**
|
143058
|
-
* @minLength `1`
|
143059
|
-
* @maxLength `200`
|
143060
|
-
*/
|
143061
|
-
ParameterValueConfigurations: {
|
143062
|
-
/**
|
143063
|
-
* @minLength `1`
|
143064
|
-
* @maxLength `2048`
|
143065
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
143066
|
-
*/
|
143067
|
-
DestinationParameterName: string;
|
143068
|
-
Value: {
|
143069
|
-
CustomValuesConfiguration: {
|
143070
|
-
CustomValues: {
|
143071
|
-
/**
|
143072
|
-
* @minLength `0`
|
143073
|
-
* @maxLength `50000`
|
143074
|
-
*/
|
143075
|
-
DateTimeValues: string[];
|
143076
|
-
/**
|
143077
|
-
* @minLength `0`
|
143078
|
-
* @maxLength `50000`
|
143079
|
-
*/
|
143080
|
-
DecimalValues: number[];
|
143081
|
-
/**
|
143082
|
-
* @minLength `0`
|
143083
|
-
* @maxLength `50000`
|
143084
|
-
*/
|
143085
|
-
IntegerValues: number[];
|
143086
|
-
/**
|
143087
|
-
* @minLength `0`
|
143088
|
-
* @maxLength `50000`
|
143089
|
-
*/
|
143090
|
-
StringValues: string[];
|
143091
|
-
};
|
143092
|
-
IncludeNullValue: boolean;
|
143093
|
-
};
|
143094
|
-
SelectAllValueOptions: QuickSightTemplateSelectAllValueOptions;
|
143095
|
-
SourceColumn: {
|
143096
|
-
/**
|
143097
|
-
* @minLength `1`
|
143098
|
-
* @maxLength `127`
|
143099
|
-
*/
|
143100
|
-
ColumnName: string;
|
143101
|
-
/**
|
143102
|
-
* @minLength `1`
|
143103
|
-
* @maxLength `2048`
|
143104
|
-
*/
|
143105
|
-
DataSetIdentifier: string;
|
143106
|
-
};
|
143107
|
-
/**
|
143108
|
-
* @minLength `1`
|
143109
|
-
* @maxLength `512`
|
143110
|
-
*/
|
143111
|
-
SourceField: string;
|
143112
|
-
SourceParameterName: string;
|
143113
|
-
};
|
143114
|
-
}[];
|
143115
|
-
};
|
143116
|
-
URLOperation: {
|
143117
|
-
URLTarget: QuickSightTemplateURLTargetConfiguration;
|
143118
|
-
/**
|
143119
|
-
* @minLength `1`
|
143120
|
-
* @maxLength `2048`
|
143121
|
-
*/
|
143122
|
-
URLTemplate: string;
|
143123
|
-
};
|
143124
|
-
}[];
|
143125
|
-
/**
|
143126
|
-
* @minLength `1`
|
143127
|
-
* @maxLength `512`
|
143128
|
-
* @pattern `^[\w\-]+$`
|
143129
|
-
*/
|
143130
|
-
CustomActionId: string;
|
143131
|
-
/**
|
143132
|
-
* @minLength `1`
|
143133
|
-
* @maxLength `256`
|
143134
|
-
*/
|
143135
|
-
Name: string;
|
143136
|
-
Status: QuickSightTemplateWidgetStatus;
|
143137
|
-
Trigger: QuickSightTemplateImageCustomActionTrigger;
|
143138
|
-
}[];
|
143139
|
-
/**
|
143140
|
-
* @minLength `1`
|
143141
|
-
* @maxLength `1024`
|
143142
|
-
*/
|
143143
|
-
ImageContentAltText: string;
|
143144
|
-
Interactions: {
|
143145
|
-
ImageMenuOption: {
|
143146
|
-
AvailabilityStatus: any;
|
143147
|
-
};
|
143148
|
-
};
|
143149
|
-
Scaling: {
|
143150
|
-
ScalingType: QuickSightTemplateSheetImageScalingType;
|
143151
|
-
};
|
143152
|
-
/**
|
143153
|
-
* @minLength `1`
|
143154
|
-
* @maxLength `512`
|
143155
|
-
* @pattern `^[\w\-]+$`
|
143156
|
-
*/
|
143157
|
-
SheetImageId: string;
|
143158
|
-
Source: {
|
143159
|
-
SheetImageStaticFileSource: {
|
143160
|
-
/**
|
143161
|
-
* @minLength `1`
|
143162
|
-
* @maxLength `512`
|
143163
|
-
* @pattern `^[\w\-]+$`
|
143164
|
-
*/
|
143165
|
-
StaticFileId: string;
|
143166
|
-
};
|
143167
|
-
};
|
143168
|
-
Tooltip: {
|
143169
|
-
TooltipText: {
|
143170
|
-
/**
|
143171
|
-
* @minLength `1`
|
143172
|
-
* @maxLength `1024`
|
143173
|
-
*/
|
143174
|
-
PlainText: string;
|
143175
|
-
};
|
143176
|
-
Visibility: any;
|
143177
|
-
};
|
143178
|
-
}[];
|
143179
143051
|
/**
|
143180
143052
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
143181
143053
|
console.</p>
|
@@ -144494,6 +144366,11 @@ export type QuickSightTemplateCustomValuesConfiguration = {
|
|
144494
144366
|
CustomValues: QuickSightTemplateCustomParameterValues;
|
144495
144367
|
IncludeNullValue?: boolean;
|
144496
144368
|
};
|
144369
|
+
/**
|
144370
|
+
* Type definition for `AWS::QuickSight::Template.DashboardBehavior`.
|
144371
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dashboardbehavior.html}
|
144372
|
+
*/
|
144373
|
+
export type QuickSightTemplateDashboardBehavior = "ENABLED" | "DISABLED";
|
144497
144374
|
/**
|
144498
144375
|
* Type definition for `AWS::QuickSight::Template.DataBarsOptions`.
|
144499
144376
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-databarsoptions.html}
|
@@ -146564,7 +146441,7 @@ export type QuickSightTemplateImageInteractionOptions = {
|
|
146564
146441
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
146565
146442
|
*/
|
146566
146443
|
export type QuickSightTemplateImageMenuOption = {
|
146567
|
-
AvailabilityStatus?:
|
146444
|
+
AvailabilityStatus?: QuickSightTemplateDashboardBehavior;
|
146568
146445
|
};
|
146569
146446
|
/**
|
146570
146447
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
@@ -147318,7 +147195,7 @@ export type QuickSightTemplateNumberFormatConfiguration = {
|
|
147318
147195
|
* Type definition for `AWS::QuickSight::Template.NumberScale`.
|
147319
147196
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-numberscale.html}
|
147320
147197
|
*/
|
147321
|
-
export type QuickSightTemplateNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
147198
|
+
export type QuickSightTemplateNumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
147322
147199
|
/**
|
147323
147200
|
* Type definition for `AWS::QuickSight::Template.NumericalAggregationFunction`.
|
147324
147201
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-numericalaggregationfunction.html}
|
@@ -149095,11 +148972,6 @@ export type QuickSightTemplateShapeConditionalFormat = {
|
|
149095
148972
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheet.html}
|
149096
148973
|
*/
|
149097
148974
|
export type QuickSightTemplateSheet = {
|
149098
|
-
/**
|
149099
|
-
* @minLength `0`
|
149100
|
-
* @maxLength `10`
|
149101
|
-
*/
|
149102
|
-
Images?: QuickSightTemplateSheetImage[];
|
149103
148975
|
/**
|
149104
148976
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
149105
148977
|
console.</p>
|
@@ -154918,7 +154790,6 @@ export type RDSGlobalClusterProps = {
|
|
154918
154790
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
154919
154791
|
*/
|
154920
154792
|
GlobalClusterIdentifier?: string;
|
154921
|
-
GlobalEndpoint?: RDSGlobalClusterGlobalEndpoint;
|
154922
154793
|
/**
|
154923
154794
|
* 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.
|
154924
154795
|
*/
|
@@ -154934,6 +154805,18 @@ export type RDSGlobalClusterProps = {
|
|
154934
154805
|
*/
|
154935
154806
|
Tags?: RDSGlobalClusterTag[];
|
154936
154807
|
};
|
154808
|
+
/**
|
154809
|
+
* Attribute type definition for `AWS::RDS::GlobalCluster`.
|
154810
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#aws-resource-rds-globalcluster-return-values}
|
154811
|
+
*/
|
154812
|
+
export type RDSGlobalClusterAttributes = {
|
154813
|
+
GlobalEndpoint: {
|
154814
|
+
/**
|
154815
|
+
* The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
154816
|
+
*/
|
154817
|
+
Address: string;
|
154818
|
+
};
|
154819
|
+
};
|
154937
154820
|
/**
|
154938
154821
|
* Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
|
154939
154822
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
|
@@ -187474,14 +187357,12 @@ export type WisdomAIAgentAIAgentConfiguration = {
|
|
187474
187357
|
AnswerRecommendationAIAgentConfiguration: WisdomAIAgentAnswerRecommendationAIAgentConfiguration;
|
187475
187358
|
} | {
|
187476
187359
|
SelfServiceAIAgentConfiguration: WisdomAIAgentSelfServiceAIAgentConfiguration;
|
187477
|
-
} | {
|
187478
|
-
SessionSummarizationAIAgentConfiguration: WisdomAIAgentSessionSummarizationAIAgentConfiguration;
|
187479
187360
|
};
|
187480
187361
|
/**
|
187481
187362
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
187482
187363
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
187483
187364
|
*/
|
187484
|
-
export type WisdomAIAgentAIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"
|
187365
|
+
export type WisdomAIAgentAIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
187485
187366
|
/**
|
187486
187367
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
187487
187368
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
@@ -187593,20 +187474,6 @@ export type WisdomAIAgentSelfServiceAIAgentConfiguration = {
|
|
187593
187474
|
*/
|
187594
187475
|
SelfServicePreProcessingAIPromptId?: string;
|
187595
187476
|
};
|
187596
|
-
/**
|
187597
|
-
* Type definition for `AWS::Wisdom::AIAgent.SessionSummarizationAIAgentConfiguration`.
|
187598
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-sessionsummarizationaiagentconfiguration.html}
|
187599
|
-
*/
|
187600
|
-
export type WisdomAIAgentSessionSummarizationAIAgentConfiguration = {
|
187601
|
-
/**
|
187602
|
-
* @minLength `1`
|
187603
|
-
*/
|
187604
|
-
Locale?: string;
|
187605
|
-
/**
|
187606
|
-
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
187607
|
-
*/
|
187608
|
-
SessionSummarizationAIPromptId?: string;
|
187609
|
-
};
|
187610
187477
|
/**
|
187611
187478
|
* Type definition for `AWS::Wisdom::AIAgent.TagCondition`.
|
187612
187479
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html}
|
@@ -188100,7 +187967,7 @@ export type WisdomAIPromptAIPromptTemplateType = "TEXT";
|
|
188100
187967
|
* Type definition for `AWS::Wisdom::AIPrompt.AIPromptType`.
|
188101
187968
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttype.html}
|
188102
187969
|
*/
|
188103
|
-
export type WisdomAIPromptAIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION"
|
187970
|
+
export type WisdomAIPromptAIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION";
|
188104
187971
|
/**
|
188105
187972
|
* Type definition for `AWS::Wisdom::AIPrompt.Tags`.
|
188106
187973
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-tags.html}
|
@@ -190872,6 +190739,7 @@ export interface ResourceTypes {
|
|
190872
190739
|
"AWS::Backup::RestoreTestingSelection": BackupRestoreTestingSelectionProps;
|
190873
190740
|
"AWS::BackupGateway::Hypervisor": BackupGatewayHypervisorProps;
|
190874
190741
|
"AWS::Batch::ComputeEnvironment": BatchComputeEnvironmentProps;
|
190742
|
+
"AWS::Batch::ConsumableResource": BatchConsumableResourceProps;
|
190875
190743
|
"AWS::Batch::JobDefinition": BatchJobDefinitionProps;
|
190876
190744
|
"AWS::Batch::JobQueue": BatchJobQueueProps;
|
190877
190745
|
"AWS::Batch::SchedulingPolicy": BatchSchedulingPolicyProps;
|
@@ -192232,6 +192100,7 @@ export interface AttributeTypes {
|
|
192232
192100
|
"AWS::Backup::RestoreTestingPlan": BackupRestoreTestingPlanAttributes;
|
192233
192101
|
"AWS::BackupGateway::Hypervisor": BackupGatewayHypervisorAttributes;
|
192234
192102
|
"AWS::Batch::ComputeEnvironment": BatchComputeEnvironmentAttributes;
|
192103
|
+
"AWS::Batch::ConsumableResource": BatchConsumableResourceAttributes;
|
192235
192104
|
"AWS::Batch::JobQueue": BatchJobQueueAttributes;
|
192236
192105
|
"AWS::Batch::SchedulingPolicy": BatchSchedulingPolicyAttributes;
|
192237
192106
|
"AWS::BCMDataExports::Export": BCMDataExportsExportAttributes;
|
@@ -193053,6 +192922,7 @@ export interface AttributeTypes {
|
|
193053
192922
|
"AWS::RDS::DBSecurityGroup": RDSDBSecurityGroupAttributes;
|
193054
192923
|
"AWS::RDS::DBSecurityGroupIngress": RDSDBSecurityGroupIngressAttributes;
|
193055
192924
|
"AWS::RDS::DBShardGroup": RDSDBShardGroupAttributes;
|
192925
|
+
"AWS::RDS::GlobalCluster": RDSGlobalClusterAttributes;
|
193056
192926
|
"AWS::RDS::Integration": RDSIntegrationAttributes;
|
193057
192927
|
"AWS::Redshift::Cluster": RedshiftClusterAttributes;
|
193058
192928
|
"AWS::Redshift::ClusterSecurityGroup": RedshiftClusterSecurityGroupAttributes;
|
@@ -193471,6 +193341,7 @@ export declare const ResourceType: {
|
|
193471
193341
|
readonly BackupRestoreTestingSelection: "AWS::Backup::RestoreTestingSelection";
|
193472
193342
|
readonly BackupGatewayHypervisor: "AWS::BackupGateway::Hypervisor";
|
193473
193343
|
readonly BatchComputeEnvironment: "AWS::Batch::ComputeEnvironment";
|
193344
|
+
readonly BatchConsumableResource: "AWS::Batch::ConsumableResource";
|
193474
193345
|
readonly BatchJobDefinition: "AWS::Batch::JobDefinition";
|
193475
193346
|
readonly BatchJobQueue: "AWS::Batch::JobQueue";
|
193476
193347
|
readonly BatchSchedulingPolicy: "AWS::Batch::SchedulingPolicy";
|