@awboost/cfntypes 0.100.350 → 0.100.352
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/resources.generated.d.ts +704 -909
- package/lib/resources.generated.js +20 -29
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
|
@@ -20635,6 +20635,10 @@ export type BedrockDataAutomationProjectProps = {
|
|
|
20635
20635
|
* @pattern `^[a-zA-Z0-9-_]+$`
|
|
20636
20636
|
*/
|
|
20637
20637
|
ProjectName: string;
|
|
20638
|
+
/**
|
|
20639
|
+
* Type of the DataAutomationProject - Sync or Async
|
|
20640
|
+
*/
|
|
20641
|
+
ProjectType?: "ASYNC" | "SYNC";
|
|
20638
20642
|
/**
|
|
20639
20643
|
* Standard output configuration
|
|
20640
20644
|
*/
|
|
@@ -20713,6 +20717,7 @@ export type BedrockDataAutomationProjectAudioLanguageConfiguration = {
|
|
|
20713
20717
|
export type BedrockDataAutomationProjectAudioOverrideConfiguration = {
|
|
20714
20718
|
LanguageConfiguration?: BedrockDataAutomationProjectAudioLanguageConfiguration;
|
|
20715
20719
|
ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
|
|
20720
|
+
SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
|
|
20716
20721
|
};
|
|
20717
20722
|
/**
|
|
20718
20723
|
* Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardExtraction`.
|
|
@@ -20854,6 +20859,7 @@ export type BedrockDataAutomationProjectDocumentOutputTextFormatType = "PLAIN_TE
|
|
|
20854
20859
|
*/
|
|
20855
20860
|
export type BedrockDataAutomationProjectDocumentOverrideConfiguration = {
|
|
20856
20861
|
ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
|
|
20862
|
+
SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
|
|
20857
20863
|
Splitter?: BedrockDataAutomationProjectSplitterConfiguration;
|
|
20858
20864
|
};
|
|
20859
20865
|
/**
|
|
@@ -20906,6 +20912,7 @@ export type BedrockDataAutomationProjectImageExtractionCategoryType = "CONTENT_M
|
|
|
20906
20912
|
*/
|
|
20907
20913
|
export type BedrockDataAutomationProjectImageOverrideConfiguration = {
|
|
20908
20914
|
ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
|
|
20915
|
+
SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
|
|
20909
20916
|
};
|
|
20910
20917
|
/**
|
|
20911
20918
|
* Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardExtraction`.
|
|
@@ -20974,6 +20981,43 @@ export type BedrockDataAutomationProjectOverrideConfiguration = {
|
|
|
20974
20981
|
ModalityRouting?: BedrockDataAutomationProjectModalityRoutingConfiguration;
|
|
20975
20982
|
Video?: BedrockDataAutomationProjectVideoOverrideConfiguration;
|
|
20976
20983
|
};
|
|
20984
|
+
/**
|
|
20985
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntitiesConfiguration`.
|
|
20986
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitiesconfiguration.html}
|
|
20987
|
+
*/
|
|
20988
|
+
export type BedrockDataAutomationProjectPIIEntitiesConfiguration = {
|
|
20989
|
+
PiiEntityTypes?: BedrockDataAutomationProjectPIIEntityTypes[];
|
|
20990
|
+
RedactionMaskMode?: BedrockDataAutomationProjectPIIRedactionMaskMode;
|
|
20991
|
+
};
|
|
20992
|
+
/**
|
|
20993
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntityTypes`.
|
|
20994
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitytypes.html}
|
|
20995
|
+
*/
|
|
20996
|
+
export type BedrockDataAutomationProjectPIIEntityTypes = "ALL" | "ADDRESS" | "AGE" | "NAME" | "EMAIL" | "PHONE" | "USERNAME" | "PASSWORD" | "DRIVER_ID" | "LICENSE_PLATE" | "VEHICLE_IDENTIFICATION_NUMBER" | "CREDIT_DEBIT_CARD_CVV" | "CREDIT_DEBIT_CARD_EXPIRY" | "CREDIT_DEBIT_CARD_NUMBER" | "PIN" | "INTERNATIONAL_BANK_ACCOUNT_NUMBER" | "SWIFT_CODE" | "IP_ADDRESS" | "MAC_ADDRESS" | "URL" | "AWS_ACCESS_KEY" | "AWS_SECRET_KEY" | "US_BANK_ACCOUNT_NUMBER" | "US_BANK_ROUTING_NUMBER" | "US_INDIVIDUAL_TAX_IDENTIFICATION_NUMBER" | "US_PASSPORT_NUMBER" | "US_SOCIAL_SECURITY_NUMBER" | "CA_HEALTH_NUMBER" | "CA_SOCIAL_INSURANCE_NUMBER" | "UK_NATIONAL_HEALTH_SERVICE_NUMBER" | "UK_NATIONAL_INSURANCE_NUMBER" | "UK_UNIQUE_TAXPAYER_REFERENCE_NUMBER";
|
|
20997
|
+
/**
|
|
20998
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.PIIRedactionMaskMode`.
|
|
20999
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piiredactionmaskmode.html}
|
|
21000
|
+
*/
|
|
21001
|
+
export type BedrockDataAutomationProjectPIIRedactionMaskMode = "PII" | "ENTITY_TYPE";
|
|
21002
|
+
/**
|
|
21003
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataConfiguration`.
|
|
21004
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedataconfiguration.html}
|
|
21005
|
+
*/
|
|
21006
|
+
export type BedrockDataAutomationProjectSensitiveDataConfiguration = {
|
|
21007
|
+
DetectionMode?: BedrockDataAutomationProjectSensitiveDataDetectionMode;
|
|
21008
|
+
DetectionScope?: BedrockDataAutomationProjectSensitiveDataDetectionScope[];
|
|
21009
|
+
PiiEntitiesConfiguration?: BedrockDataAutomationProjectPIIEntitiesConfiguration;
|
|
21010
|
+
};
|
|
21011
|
+
/**
|
|
21012
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionMode`.
|
|
21013
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionmode.html}
|
|
21014
|
+
*/
|
|
21015
|
+
export type BedrockDataAutomationProjectSensitiveDataDetectionMode = "DETECTION" | "DETECTION_AND_REDACTION";
|
|
21016
|
+
/**
|
|
21017
|
+
* Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionScope`.
|
|
21018
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionscope.html}
|
|
21019
|
+
*/
|
|
21020
|
+
export type BedrockDataAutomationProjectSensitiveDataDetectionScope = "STANDARD" | "CUSTOM";
|
|
20977
21021
|
/**
|
|
20978
21022
|
* Type definition for `AWS::Bedrock::DataAutomationProject.SpeakerLabelingConfiguration`.
|
|
20979
21023
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-speakerlabelingconfiguration.html}
|
|
@@ -21059,6 +21103,7 @@ export type BedrockDataAutomationProjectVideoExtractionCategoryType = "CONTENT_M
|
|
|
21059
21103
|
*/
|
|
21060
21104
|
export type BedrockDataAutomationProjectVideoOverrideConfiguration = {
|
|
21061
21105
|
ModalityProcessing?: BedrockDataAutomationProjectModalityProcessingConfiguration;
|
|
21106
|
+
SensitiveDataConfiguration?: BedrockDataAutomationProjectSensitiveDataConfiguration;
|
|
21062
21107
|
};
|
|
21063
21108
|
/**
|
|
21064
21109
|
* Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardExtraction`.
|
|
@@ -24677,12 +24722,42 @@ export type BedrockKnowledgeBaseAttributes = {
|
|
|
24677
24722
|
*/
|
|
24678
24723
|
UpdatedAt: string;
|
|
24679
24724
|
};
|
|
24725
|
+
/**
|
|
24726
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.AudioConfiguration`.
|
|
24727
|
+
* Configure the audio configuration for multi modal ingestion.
|
|
24728
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audioconfiguration.html}
|
|
24729
|
+
*/
|
|
24730
|
+
export type BedrockKnowledgeBaseAudioConfiguration = {
|
|
24731
|
+
/**
|
|
24732
|
+
* Configure the audio segmentation configuration for multi modal ingestion.
|
|
24733
|
+
*/
|
|
24734
|
+
SegmentationConfiguration: BedrockKnowledgeBaseAudioSegmentationConfiguration;
|
|
24735
|
+
};
|
|
24736
|
+
/**
|
|
24737
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.AudioSegmentationConfiguration`.
|
|
24738
|
+
* Configure the audio segmentation configuration for multi modal ingestion.
|
|
24739
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audiosegmentationconfiguration.html}
|
|
24740
|
+
*/
|
|
24741
|
+
export type BedrockKnowledgeBaseAudioSegmentationConfiguration = {
|
|
24742
|
+
/**
|
|
24743
|
+
* Duration in seconds to segment the multi modal media
|
|
24744
|
+
* @min `1`
|
|
24745
|
+
* @max `30`
|
|
24746
|
+
*/
|
|
24747
|
+
FixedLengthDuration: number;
|
|
24748
|
+
};
|
|
24680
24749
|
/**
|
|
24681
24750
|
* Type definition for `AWS::Bedrock::KnowledgeBase.BedrockEmbeddingModelConfiguration`.
|
|
24682
24751
|
* The vector configuration details for the Bedrock embeddings model.
|
|
24683
24752
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-bedrockembeddingmodelconfiguration.html}
|
|
24684
24753
|
*/
|
|
24685
24754
|
export type BedrockKnowledgeBaseBedrockEmbeddingModelConfiguration = {
|
|
24755
|
+
/**
|
|
24756
|
+
* List of audio configurations for multi modal ingestion.
|
|
24757
|
+
* @minLength `1`
|
|
24758
|
+
* @maxLength `1`
|
|
24759
|
+
*/
|
|
24760
|
+
Audio?: BedrockKnowledgeBaseAudioConfiguration[];
|
|
24686
24761
|
/**
|
|
24687
24762
|
* The dimensions details for the vector configuration used on the Bedrock embeddings model.
|
|
24688
24763
|
* @min `0`
|
|
@@ -24693,6 +24768,12 @@ export type BedrockKnowledgeBaseBedrockEmbeddingModelConfiguration = {
|
|
|
24693
24768
|
* The data type for the vectors when using a model to convert text into vector embeddings.
|
|
24694
24769
|
*/
|
|
24695
24770
|
EmbeddingDataType?: "FLOAT32" | "BINARY";
|
|
24771
|
+
/**
|
|
24772
|
+
* List of video configurations for multi modal ingestion.
|
|
24773
|
+
* @minLength `1`
|
|
24774
|
+
* @maxLength `1`
|
|
24775
|
+
*/
|
|
24776
|
+
Video?: BedrockKnowledgeBaseVideoConfiguration[];
|
|
24696
24777
|
};
|
|
24697
24778
|
/**
|
|
24698
24779
|
* Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
|
|
@@ -25535,6 +25616,30 @@ export type BedrockKnowledgeBaseVectorKnowledgeBaseConfiguration = {
|
|
|
25535
25616
|
*/
|
|
25536
25617
|
SupplementalDataStorageConfiguration?: BedrockKnowledgeBaseSupplementalDataStorageConfiguration;
|
|
25537
25618
|
};
|
|
25619
|
+
/**
|
|
25620
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.VideoConfiguration`.
|
|
25621
|
+
* Configure the video configuration for multi modal ingestion.
|
|
25622
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videoconfiguration.html}
|
|
25623
|
+
*/
|
|
25624
|
+
export type BedrockKnowledgeBaseVideoConfiguration = {
|
|
25625
|
+
/**
|
|
25626
|
+
* Configure the video segmentation configuration for multi modal ingestion.
|
|
25627
|
+
*/
|
|
25628
|
+
SegmentationConfiguration: BedrockKnowledgeBaseVideoSegmentationConfiguration;
|
|
25629
|
+
};
|
|
25630
|
+
/**
|
|
25631
|
+
* Type definition for `AWS::Bedrock::KnowledgeBase.VideoSegmentationConfiguration`.
|
|
25632
|
+
* Configure the video segmentation configuration for multi modal ingestion.
|
|
25633
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videosegmentationconfiguration.html}
|
|
25634
|
+
*/
|
|
25635
|
+
export type BedrockKnowledgeBaseVideoSegmentationConfiguration = {
|
|
25636
|
+
/**
|
|
25637
|
+
* Duration in seconds to segment the multi modal media
|
|
25638
|
+
* @min `1`
|
|
25639
|
+
* @max `30`
|
|
25640
|
+
*/
|
|
25641
|
+
FixedLengthDuration: number;
|
|
25642
|
+
};
|
|
25538
25643
|
/**
|
|
25539
25644
|
* Definition of AWS::Bedrock::Prompt Resource Type
|
|
25540
25645
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-prompt.html}
|
|
@@ -29971,6 +30076,7 @@ export type CleanRoomsAnalysisTemplateProps = {
|
|
|
29971
30076
|
Schema?: CleanRoomsAnalysisTemplateAnalysisSchema;
|
|
29972
30077
|
Source: CleanRoomsAnalysisTemplateAnalysisSource;
|
|
29973
30078
|
SourceMetadata?: CleanRoomsAnalysisTemplateAnalysisSourceMetadata;
|
|
30079
|
+
SyntheticDataParameters?: CleanRoomsAnalysisTemplateSyntheticDataParameters;
|
|
29974
30080
|
/**
|
|
29975
30081
|
* An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
|
|
29976
30082
|
*/
|
|
@@ -30086,6 +30192,17 @@ export type CleanRoomsAnalysisTemplateAnalysisTemplateArtifacts = {
|
|
|
30086
30192
|
*/
|
|
30087
30193
|
RoleArn: string;
|
|
30088
30194
|
};
|
|
30195
|
+
/**
|
|
30196
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.ColumnClassificationDetails`.
|
|
30197
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.html}
|
|
30198
|
+
*/
|
|
30199
|
+
export type CleanRoomsAnalysisTemplateColumnClassificationDetails = {
|
|
30200
|
+
/**
|
|
30201
|
+
* @minLength `5`
|
|
30202
|
+
* @maxLength `1000`
|
|
30203
|
+
*/
|
|
30204
|
+
ColumnMapping: CleanRoomsAnalysisTemplateSyntheticDataColumnProperties[];
|
|
30205
|
+
};
|
|
30089
30206
|
/**
|
|
30090
30207
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.ErrorMessageConfiguration`.
|
|
30091
30208
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-errormessageconfiguration.html}
|
|
@@ -30100,6 +30217,23 @@ export type CleanRoomsAnalysisTemplateErrorMessageConfiguration = {
|
|
|
30100
30217
|
export type CleanRoomsAnalysisTemplateHash = {
|
|
30101
30218
|
Sha256?: string;
|
|
30102
30219
|
};
|
|
30220
|
+
/**
|
|
30221
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.MLSyntheticDataParameters`.
|
|
30222
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-mlsyntheticdataparameters.html}
|
|
30223
|
+
*/
|
|
30224
|
+
export type CleanRoomsAnalysisTemplateMLSyntheticDataParameters = {
|
|
30225
|
+
ColumnClassification: CleanRoomsAnalysisTemplateColumnClassificationDetails;
|
|
30226
|
+
/**
|
|
30227
|
+
* @min `0.0001`
|
|
30228
|
+
* @max `10`
|
|
30229
|
+
*/
|
|
30230
|
+
Epsilon: number;
|
|
30231
|
+
/**
|
|
30232
|
+
* @min `0.5`
|
|
30233
|
+
* @max `1`
|
|
30234
|
+
*/
|
|
30235
|
+
MaxMembershipInferenceAttackScore: number;
|
|
30236
|
+
};
|
|
30103
30237
|
/**
|
|
30104
30238
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.S3Location`.
|
|
30105
30239
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html}
|
|
@@ -30112,6 +30246,26 @@ export type CleanRoomsAnalysisTemplateS3Location = {
|
|
|
30112
30246
|
Bucket: string;
|
|
30113
30247
|
Key: string;
|
|
30114
30248
|
};
|
|
30249
|
+
/**
|
|
30250
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataColumnProperties`.
|
|
30251
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdatacolumnproperties.html}
|
|
30252
|
+
*/
|
|
30253
|
+
export type CleanRoomsAnalysisTemplateSyntheticDataColumnProperties = {
|
|
30254
|
+
/**
|
|
30255
|
+
* @maxLength `128`
|
|
30256
|
+
* @pattern `^[a-z0-9_](([a-z0-9_]+-)*([a-z0-9_]+))?$`
|
|
30257
|
+
*/
|
|
30258
|
+
ColumnName: string;
|
|
30259
|
+
ColumnType: "CATEGORICAL" | "NUMERICAL";
|
|
30260
|
+
IsPredictiveValue: boolean;
|
|
30261
|
+
};
|
|
30262
|
+
/**
|
|
30263
|
+
* Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataParameters`.
|
|
30264
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdataparameters.html}
|
|
30265
|
+
*/
|
|
30266
|
+
export type CleanRoomsAnalysisTemplateSyntheticDataParameters = {
|
|
30267
|
+
MlSyntheticDataParameters: CleanRoomsAnalysisTemplateMLSyntheticDataParameters;
|
|
30268
|
+
};
|
|
30115
30269
|
/**
|
|
30116
30270
|
* Type definition for `AWS::CleanRooms::AnalysisTemplate.Tag`.
|
|
30117
30271
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-tag.html}
|
|
@@ -30269,6 +30423,7 @@ export type CleanRoomsCollaborationMLMemberAbilities = {
|
|
|
30269
30423
|
export type CleanRoomsCollaborationMLPaymentConfig = {
|
|
30270
30424
|
ModelInference?: CleanRoomsCollaborationModelInferencePaymentConfig;
|
|
30271
30425
|
ModelTraining?: CleanRoomsCollaborationModelTrainingPaymentConfig;
|
|
30426
|
+
SyntheticDataGeneration?: CleanRoomsCollaborationSyntheticDataGenerationPaymentConfig;
|
|
30272
30427
|
};
|
|
30273
30428
|
/**
|
|
30274
30429
|
* Type definition for `AWS::CleanRooms::Collaboration.ModelInferencePaymentConfig`.
|
|
@@ -30305,6 +30460,13 @@ export type CleanRoomsCollaborationQueryComputePaymentConfig = {
|
|
|
30305
30460
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-supporteds3region.html}
|
|
30306
30461
|
*/
|
|
30307
30462
|
export type CleanRoomsCollaborationSupportedS3Region = "us-west-1" | "us-west-2" | "us-east-1" | "us-east-2" | "af-south-1" | "ap-east-1" | "ap-east-2" | "ap-south-2" | "ap-southeast-1" | "ap-southeast-2" | "ap-southeast-3" | "ap-southeast-5" | "ap-southeast-4" | "ap-southeast-7" | "ap-south-1" | "ap-northeast-3" | "ap-northeast-1" | "ap-northeast-2" | "ca-central-1" | "ca-west-1" | "eu-south-1" | "eu-west-3" | "eu-south-2" | "eu-central-2" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "me-south-1" | "me-central-1" | "il-central-1" | "sa-east-1" | "mx-central-1";
|
|
30463
|
+
/**
|
|
30464
|
+
* Type definition for `AWS::CleanRooms::Collaboration.SyntheticDataGenerationPaymentConfig`.
|
|
30465
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-syntheticdatagenerationpaymentconfig.html}
|
|
30466
|
+
*/
|
|
30467
|
+
export type CleanRoomsCollaborationSyntheticDataGenerationPaymentConfig = {
|
|
30468
|
+
IsResponsible: boolean;
|
|
30469
|
+
};
|
|
30308
30470
|
/**
|
|
30309
30471
|
* Type definition for `AWS::CleanRooms::Collaboration.Tag`.
|
|
30310
30472
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-tag.html}
|
|
@@ -32822,6 +32984,7 @@ export type CloudFrontAnycastIpListProps = {
|
|
|
32822
32984
|
* The number of IP addresses in the Anycast static IP list.
|
|
32823
32985
|
*/
|
|
32824
32986
|
IpCount: number;
|
|
32987
|
+
IpamCidrConfigs?: CloudFrontAnycastIpListIpamCidrConfig[];
|
|
32825
32988
|
/**
|
|
32826
32989
|
* The name of the Anycast static IP list.
|
|
32827
32990
|
* @minLength `1`
|
|
@@ -32860,6 +33023,12 @@ export type CloudFrontAnycastIpListAttributes = {
|
|
|
32860
33023
|
* The number of IP addresses in the Anycast static IP list.
|
|
32861
33024
|
*/
|
|
32862
33025
|
IpCount: number;
|
|
33026
|
+
IpamCidrConfigResults: {
|
|
33027
|
+
AnycastIp: string;
|
|
33028
|
+
Cidr: string;
|
|
33029
|
+
IpamPoolArn: string;
|
|
33030
|
+
Status: string;
|
|
33031
|
+
}[];
|
|
32863
33032
|
/**
|
|
32864
33033
|
* The last time the Anycast static IP list was modified.
|
|
32865
33034
|
*/
|
|
@@ -32878,6 +33047,12 @@ export type CloudFrontAnycastIpListAttributes = {
|
|
|
32878
33047
|
};
|
|
32879
33048
|
ETag: string;
|
|
32880
33049
|
Id: string;
|
|
33050
|
+
IpamCidrConfigResults: {
|
|
33051
|
+
AnycastIp: string;
|
|
33052
|
+
Cidr: string;
|
|
33053
|
+
IpamPoolArn: string;
|
|
33054
|
+
Status: string;
|
|
33055
|
+
}[];
|
|
32881
33056
|
};
|
|
32882
33057
|
/**
|
|
32883
33058
|
* Type definition for `AWS::CloudFront::AnycastIpList.AnycastIpList`.
|
|
@@ -32902,6 +33077,7 @@ export type CloudFrontAnycastIpListAnycastIpList = {
|
|
|
32902
33077
|
* The number of IP addresses in the Anycast static IP list.
|
|
32903
33078
|
*/
|
|
32904
33079
|
IpCount: number;
|
|
33080
|
+
IpamCidrConfigResults?: CloudFrontAnycastIpListIpamCidrConfigResult[];
|
|
32905
33081
|
/**
|
|
32906
33082
|
* The last time the Anycast static IP list was modified.
|
|
32907
33083
|
*/
|
|
@@ -32923,6 +33099,24 @@ export type CloudFrontAnycastIpListAnycastIpList = {
|
|
|
32923
33099
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipaddresstype.html}
|
|
32924
33100
|
*/
|
|
32925
33101
|
export type CloudFrontAnycastIpListIpAddressType = "ipv4" | "dualstack";
|
|
33102
|
+
/**
|
|
33103
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfig`.
|
|
33104
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfig.html}
|
|
33105
|
+
*/
|
|
33106
|
+
export type CloudFrontAnycastIpListIpamCidrConfig = {
|
|
33107
|
+
Cidr: string;
|
|
33108
|
+
IpamPoolArn: string;
|
|
33109
|
+
};
|
|
33110
|
+
/**
|
|
33111
|
+
* Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfigResult`.
|
|
33112
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfigresult.html}
|
|
33113
|
+
*/
|
|
33114
|
+
export type CloudFrontAnycastIpListIpamCidrConfigResult = {
|
|
33115
|
+
AnycastIp?: string;
|
|
33116
|
+
Cidr?: string;
|
|
33117
|
+
IpamPoolArn?: string;
|
|
33118
|
+
Status?: string;
|
|
33119
|
+
};
|
|
32926
33120
|
/**
|
|
32927
33121
|
* Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
|
|
32928
33122
|
* A complex type that contains ``Tag`` key and ``Tag`` value.
|
|
@@ -45099,6 +45293,321 @@ export type ConnectViewVersionAttributes = {
|
|
|
45099
45293
|
*/
|
|
45100
45294
|
ViewVersionArn: string;
|
|
45101
45295
|
};
|
|
45296
|
+
/**
|
|
45297
|
+
* Resource Type definition for AWS::Connect::Workspace
|
|
45298
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
|
|
45299
|
+
*/
|
|
45300
|
+
export type ConnectWorkspaceProps = {
|
|
45301
|
+
/**
|
|
45302
|
+
* The resource ARNs associated with the workspace
|
|
45303
|
+
*/
|
|
45304
|
+
Associations?: string[];
|
|
45305
|
+
/**
|
|
45306
|
+
* The description of the workspace
|
|
45307
|
+
* @minLength `0`
|
|
45308
|
+
* @maxLength `500`
|
|
45309
|
+
* @pattern `^[\P{C}
|
|
45310
|
+
]*$`
|
|
45311
|
+
*/
|
|
45312
|
+
Description?: string;
|
|
45313
|
+
/**
|
|
45314
|
+
* The identifier of the Amazon Connect instance.
|
|
45315
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
|
|
45316
|
+
*/
|
|
45317
|
+
InstanceArn: string;
|
|
45318
|
+
/**
|
|
45319
|
+
* The media items for the workspace
|
|
45320
|
+
* @maxLength `4`
|
|
45321
|
+
*/
|
|
45322
|
+
Media?: ConnectWorkspaceMediaItem[];
|
|
45323
|
+
/**
|
|
45324
|
+
* The name of the workspace.
|
|
45325
|
+
* @minLength `1`
|
|
45326
|
+
* @maxLength `127`
|
|
45327
|
+
* @pattern `.*\S.*`
|
|
45328
|
+
*/
|
|
45329
|
+
Name: string;
|
|
45330
|
+
/**
|
|
45331
|
+
* The pages associated with the workspace
|
|
45332
|
+
*/
|
|
45333
|
+
Pages?: ConnectWorkspaceWorkspacePage[];
|
|
45334
|
+
/**
|
|
45335
|
+
* An array of key-value pairs to apply to this resource.
|
|
45336
|
+
* @maxLength `50`
|
|
45337
|
+
*/
|
|
45338
|
+
Tags?: ConnectWorkspaceTag[];
|
|
45339
|
+
/**
|
|
45340
|
+
* The theme configuration for the workspace
|
|
45341
|
+
*/
|
|
45342
|
+
Theme?: ConnectWorkspaceWorkspaceTheme;
|
|
45343
|
+
/**
|
|
45344
|
+
* The title of the workspace
|
|
45345
|
+
* @minLength `0`
|
|
45346
|
+
* @maxLength `127`
|
|
45347
|
+
* @pattern `^[\P{C}]*$`
|
|
45348
|
+
*/
|
|
45349
|
+
Title?: string;
|
|
45350
|
+
/**
|
|
45351
|
+
* The visibility of the workspace. Will always be set to ASSIGNED oninitial creation.
|
|
45352
|
+
*/
|
|
45353
|
+
Visibility?: ConnectWorkspaceVisibility;
|
|
45354
|
+
};
|
|
45355
|
+
/**
|
|
45356
|
+
* Attribute type definition for `AWS::Connect::Workspace`.
|
|
45357
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html#aws-resource-connect-workspace-return-values}
|
|
45358
|
+
*/
|
|
45359
|
+
export type ConnectWorkspaceAttributes = {
|
|
45360
|
+
/**
|
|
45361
|
+
* The Amazon Resource Name (ARN) for the workspace.
|
|
45362
|
+
* @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/*workspace/[-a-zA-Z0-9]*$`
|
|
45363
|
+
*/
|
|
45364
|
+
Arn: string;
|
|
45365
|
+
/**
|
|
45366
|
+
* The identifier of the workspace.
|
|
45367
|
+
* @pattern `^.{0,256}$`
|
|
45368
|
+
*/
|
|
45369
|
+
Id: string;
|
|
45370
|
+
};
|
|
45371
|
+
/**
|
|
45372
|
+
* Type definition for `AWS::Connect::Workspace.FontFamily`.
|
|
45373
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-fontfamily.html}
|
|
45374
|
+
*/
|
|
45375
|
+
export type ConnectWorkspaceFontFamily = {
|
|
45376
|
+
Default?: ConnectWorkspaceWorkspaceFontFamily;
|
|
45377
|
+
};
|
|
45378
|
+
/**
|
|
45379
|
+
* Type definition for `AWS::Connect::Workspace.MediaItem`.
|
|
45380
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediaitem.html}
|
|
45381
|
+
*/
|
|
45382
|
+
export type ConnectWorkspaceMediaItem = {
|
|
45383
|
+
/**
|
|
45384
|
+
* @minLength `1`
|
|
45385
|
+
* @maxLength `533333`
|
|
45386
|
+
* @pattern `.*\S.*`
|
|
45387
|
+
*/
|
|
45388
|
+
Source?: string;
|
|
45389
|
+
/**
|
|
45390
|
+
* The type of media
|
|
45391
|
+
*/
|
|
45392
|
+
Type: ConnectWorkspaceMediaType;
|
|
45393
|
+
};
|
|
45394
|
+
/**
|
|
45395
|
+
* Type definition for `AWS::Connect::Workspace.MediaType`.
|
|
45396
|
+
* The type of media
|
|
45397
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediatype.html}
|
|
45398
|
+
*/
|
|
45399
|
+
export type ConnectWorkspaceMediaType = "IMAGE_LOGO_LIGHT_FAVICON" | "IMAGE_LOGO_DARK_FAVICON" | "IMAGE_LOGO_LIGHT_HORIZONTAL" | "IMAGE_LOGO_DARK_HORIZONTAL";
|
|
45400
|
+
/**
|
|
45401
|
+
* Type definition for `AWS::Connect::Workspace.PaletteCanvas`.
|
|
45402
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettecanvas.html}
|
|
45403
|
+
*/
|
|
45404
|
+
export type ConnectWorkspacePaletteCanvas = {
|
|
45405
|
+
/**
|
|
45406
|
+
* @minLength `1`
|
|
45407
|
+
* @maxLength `127`
|
|
45408
|
+
* @pattern `.*\S.*`
|
|
45409
|
+
*/
|
|
45410
|
+
ActiveBackground?: string;
|
|
45411
|
+
/**
|
|
45412
|
+
* @minLength `1`
|
|
45413
|
+
* @maxLength `127`
|
|
45414
|
+
* @pattern `.*\S.*`
|
|
45415
|
+
*/
|
|
45416
|
+
ContainerBackground?: string;
|
|
45417
|
+
/**
|
|
45418
|
+
* @minLength `1`
|
|
45419
|
+
* @maxLength `127`
|
|
45420
|
+
* @pattern `.*\S.*`
|
|
45421
|
+
*/
|
|
45422
|
+
PageBackground?: string;
|
|
45423
|
+
};
|
|
45424
|
+
/**
|
|
45425
|
+
* Type definition for `AWS::Connect::Workspace.PaletteHeader`.
|
|
45426
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteheader.html}
|
|
45427
|
+
*/
|
|
45428
|
+
export type ConnectWorkspacePaletteHeader = {
|
|
45429
|
+
/**
|
|
45430
|
+
* @minLength `1`
|
|
45431
|
+
* @maxLength `127`
|
|
45432
|
+
* @pattern `.*\S.*`
|
|
45433
|
+
*/
|
|
45434
|
+
Background?: string;
|
|
45435
|
+
InvertActionsColors?: boolean;
|
|
45436
|
+
/**
|
|
45437
|
+
* @minLength `1`
|
|
45438
|
+
* @maxLength `127`
|
|
45439
|
+
* @pattern `.*\S.*`
|
|
45440
|
+
*/
|
|
45441
|
+
Text?: string;
|
|
45442
|
+
/**
|
|
45443
|
+
* @minLength `1`
|
|
45444
|
+
* @maxLength `127`
|
|
45445
|
+
* @pattern `.*\S.*`
|
|
45446
|
+
*/
|
|
45447
|
+
TextHover?: string;
|
|
45448
|
+
};
|
|
45449
|
+
/**
|
|
45450
|
+
* Type definition for `AWS::Connect::Workspace.PaletteNavigation`.
|
|
45451
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettenavigation.html}
|
|
45452
|
+
*/
|
|
45453
|
+
export type ConnectWorkspacePaletteNavigation = {
|
|
45454
|
+
/**
|
|
45455
|
+
* @minLength `1`
|
|
45456
|
+
* @maxLength `127`
|
|
45457
|
+
* @pattern `.*\S.*`
|
|
45458
|
+
*/
|
|
45459
|
+
Background?: string;
|
|
45460
|
+
InvertActionsColors?: boolean;
|
|
45461
|
+
/**
|
|
45462
|
+
* @minLength `1`
|
|
45463
|
+
* @maxLength `127`
|
|
45464
|
+
* @pattern `.*\S.*`
|
|
45465
|
+
*/
|
|
45466
|
+
Text?: string;
|
|
45467
|
+
/**
|
|
45468
|
+
* @minLength `1`
|
|
45469
|
+
* @maxLength `127`
|
|
45470
|
+
* @pattern `.*\S.*`
|
|
45471
|
+
*/
|
|
45472
|
+
TextActive?: string;
|
|
45473
|
+
/**
|
|
45474
|
+
* @minLength `1`
|
|
45475
|
+
* @maxLength `127`
|
|
45476
|
+
* @pattern `.*\S.*`
|
|
45477
|
+
*/
|
|
45478
|
+
TextBackgroundActive?: string;
|
|
45479
|
+
/**
|
|
45480
|
+
* @minLength `1`
|
|
45481
|
+
* @maxLength `127`
|
|
45482
|
+
* @pattern `.*\S.*`
|
|
45483
|
+
*/
|
|
45484
|
+
TextBackgroundHover?: string;
|
|
45485
|
+
/**
|
|
45486
|
+
* @minLength `1`
|
|
45487
|
+
* @maxLength `127`
|
|
45488
|
+
* @pattern `.*\S.*`
|
|
45489
|
+
*/
|
|
45490
|
+
TextHover?: string;
|
|
45491
|
+
};
|
|
45492
|
+
/**
|
|
45493
|
+
* Type definition for `AWS::Connect::Workspace.PalettePrimary`.
|
|
45494
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteprimary.html}
|
|
45495
|
+
*/
|
|
45496
|
+
export type ConnectWorkspacePalettePrimary = {
|
|
45497
|
+
/**
|
|
45498
|
+
* @minLength `1`
|
|
45499
|
+
* @maxLength `127`
|
|
45500
|
+
* @pattern `.*\S.*`
|
|
45501
|
+
*/
|
|
45502
|
+
Active?: string;
|
|
45503
|
+
/**
|
|
45504
|
+
* @minLength `1`
|
|
45505
|
+
* @maxLength `127`
|
|
45506
|
+
* @pattern `.*\S.*`
|
|
45507
|
+
*/
|
|
45508
|
+
ContrastText?: string;
|
|
45509
|
+
/**
|
|
45510
|
+
* @minLength `1`
|
|
45511
|
+
* @maxLength `127`
|
|
45512
|
+
* @pattern `.*\S.*`
|
|
45513
|
+
*/
|
|
45514
|
+
Default?: string;
|
|
45515
|
+
};
|
|
45516
|
+
/**
|
|
45517
|
+
* Type definition for `AWS::Connect::Workspace.Tag`.
|
|
45518
|
+
* A key-value pair to associate with a resource.
|
|
45519
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-tag.html}
|
|
45520
|
+
*/
|
|
45521
|
+
export type ConnectWorkspaceTag = {
|
|
45522
|
+
/**
|
|
45523
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
45524
|
+
* @minLength `1`
|
|
45525
|
+
* @maxLength `128`
|
|
45526
|
+
*/
|
|
45527
|
+
Key: string;
|
|
45528
|
+
/**
|
|
45529
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
45530
|
+
* @minLength `0`
|
|
45531
|
+
* @maxLength `256`
|
|
45532
|
+
*/
|
|
45533
|
+
Value: string;
|
|
45534
|
+
};
|
|
45535
|
+
/**
|
|
45536
|
+
* Type definition for `AWS::Connect::Workspace.Visibility`.
|
|
45537
|
+
* The visibility of the Connect workspace
|
|
45538
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-visibility.html}
|
|
45539
|
+
*/
|
|
45540
|
+
export type ConnectWorkspaceVisibility = "ALL" | "ASSIGNED" | "NONE";
|
|
45541
|
+
/**
|
|
45542
|
+
* Type definition for `AWS::Connect::Workspace.WorkspaceFontFamily`.
|
|
45543
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacefontfamily.html}
|
|
45544
|
+
*/
|
|
45545
|
+
export type ConnectWorkspaceWorkspaceFontFamily = "ARIAL" | "COURIER_NEW" | "GEORGIA" | "TIMES_NEW_ROMAN" | "TREBUCHET" | "VERDANA";
|
|
45546
|
+
/**
|
|
45547
|
+
* Type definition for `AWS::Connect::Workspace.WorkspacePage`.
|
|
45548
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacepage.html}
|
|
45549
|
+
*/
|
|
45550
|
+
export type ConnectWorkspaceWorkspacePage = {
|
|
45551
|
+
/**
|
|
45552
|
+
* The input data for the page.
|
|
45553
|
+
* @minLength `0`
|
|
45554
|
+
* @maxLength `4096`
|
|
45555
|
+
*/
|
|
45556
|
+
InputData?: string;
|
|
45557
|
+
/**
|
|
45558
|
+
* The page identifier.
|
|
45559
|
+
* @minLength `1`
|
|
45560
|
+
* @maxLength `25`
|
|
45561
|
+
* @pattern `^(?!\.$)(?!\.\.$)[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
|
|
45562
|
+
*/
|
|
45563
|
+
Page: string;
|
|
45564
|
+
/**
|
|
45565
|
+
* The Amazon Resource Name (ARN) of the resource associated with the page.
|
|
45566
|
+
* @maxLength `2048`
|
|
45567
|
+
*/
|
|
45568
|
+
ResourceArn: string;
|
|
45569
|
+
/**
|
|
45570
|
+
* The slug for the page.
|
|
45571
|
+
* @minLength `0`
|
|
45572
|
+
* @maxLength `63`
|
|
45573
|
+
* @pattern `^$|^[\p{L}\p{Z}\p{N}\-_.:=@'|]{3,}$`
|
|
45574
|
+
*/
|
|
45575
|
+
Slug?: string;
|
|
45576
|
+
};
|
|
45577
|
+
/**
|
|
45578
|
+
* Type definition for `AWS::Connect::Workspace.WorkspaceTheme`.
|
|
45579
|
+
* The theme configuration for the Connect workspace
|
|
45580
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacetheme.html}
|
|
45581
|
+
*/
|
|
45582
|
+
export type ConnectWorkspaceWorkspaceTheme = {
|
|
45583
|
+
Dark?: ConnectWorkspaceWorkspaceThemeConfig;
|
|
45584
|
+
Light?: ConnectWorkspaceWorkspaceThemeConfig;
|
|
45585
|
+
};
|
|
45586
|
+
/**
|
|
45587
|
+
* Type definition for `AWS::Connect::Workspace.WorkspaceThemeConfig`.
|
|
45588
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemeconfig.html}
|
|
45589
|
+
*/
|
|
45590
|
+
export type ConnectWorkspaceWorkspaceThemeConfig = {
|
|
45591
|
+
Palette?: ConnectWorkspaceWorkspaceThemePalette;
|
|
45592
|
+
Typography?: ConnectWorkspaceWorkspaceThemeTypography;
|
|
45593
|
+
};
|
|
45594
|
+
/**
|
|
45595
|
+
* Type definition for `AWS::Connect::Workspace.WorkspaceThemePalette`.
|
|
45596
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemepalette.html}
|
|
45597
|
+
*/
|
|
45598
|
+
export type ConnectWorkspaceWorkspaceThemePalette = {
|
|
45599
|
+
Canvas?: ConnectWorkspacePaletteCanvas;
|
|
45600
|
+
Header?: ConnectWorkspacePaletteHeader;
|
|
45601
|
+
Navigation?: ConnectWorkspacePaletteNavigation;
|
|
45602
|
+
Primary?: ConnectWorkspacePalettePrimary;
|
|
45603
|
+
};
|
|
45604
|
+
/**
|
|
45605
|
+
* Type definition for `AWS::Connect::Workspace.WorkspaceThemeTypography`.
|
|
45606
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemetypography.html}
|
|
45607
|
+
*/
|
|
45608
|
+
export type ConnectWorkspaceWorkspaceThemeTypography = {
|
|
45609
|
+
FontFamily?: ConnectWorkspaceFontFamily;
|
|
45610
|
+
};
|
|
45102
45611
|
/**
|
|
45103
45612
|
* Definition of AWS::ConnectCampaigns::Campaign Resource Type
|
|
45104
45613
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaigns-campaign.html}
|
|
@@ -45828,6 +46337,12 @@ export type ConnectCampaignsV2CampaignTelephonyOutboundConfig = {
|
|
|
45828
46337
|
* @maxLength `100`
|
|
45829
46338
|
*/
|
|
45830
46339
|
ConnectSourcePhoneNumber?: string;
|
|
46340
|
+
/**
|
|
46341
|
+
* Maximum ring time for outbound calls in seconds
|
|
46342
|
+
* @min `15`
|
|
46343
|
+
* @max `60`
|
|
46344
|
+
*/
|
|
46345
|
+
RingTimeout?: number;
|
|
45831
46346
|
};
|
|
45832
46347
|
/**
|
|
45833
46348
|
* Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundMode`.
|
|
@@ -51528,6 +52043,11 @@ export type DataZoneConnectionConnectionPropertiesInput = {
|
|
|
51528
52043
|
* S3 Properties Input
|
|
51529
52044
|
*/
|
|
51530
52045
|
S3Properties: DataZoneConnectionS3PropertiesInput;
|
|
52046
|
+
} | {
|
|
52047
|
+
/**
|
|
52048
|
+
* MLflow Properties Input
|
|
52049
|
+
*/
|
|
52050
|
+
MlflowProperties: DataZoneConnectionMlflowPropertiesInput;
|
|
51531
52051
|
};
|
|
51532
52052
|
/**
|
|
51533
52053
|
* Type definition for `AWS::DataZone::Connection.CredentialMap`.
|
|
@@ -51662,6 +52182,17 @@ export type DataZoneConnectionLineageSyncSchedule = {
|
|
|
51662
52182
|
*/
|
|
51663
52183
|
Schedule?: string;
|
|
51664
52184
|
};
|
|
52185
|
+
/**
|
|
52186
|
+
* Type definition for `AWS::DataZone::Connection.MlflowPropertiesInput`.
|
|
52187
|
+
* MLflow Properties Input
|
|
52188
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-mlflowpropertiesinput.html}
|
|
52189
|
+
*/
|
|
52190
|
+
export type DataZoneConnectionMlflowPropertiesInput = {
|
|
52191
|
+
/**
|
|
52192
|
+
* The ARN of the MLflow tracking server
|
|
52193
|
+
*/
|
|
52194
|
+
TrackingServerArn?: string;
|
|
52195
|
+
};
|
|
51665
52196
|
/**
|
|
51666
52197
|
* Type definition for `AWS::DataZone::Connection.OAuth2ClientApplication`.
|
|
51667
52198
|
* OAuth2 Client Application
|
|
@@ -51855,7 +52386,7 @@ export type DataZoneConnectionS3PropertiesInput = {
|
|
|
51855
52386
|
export type DataZoneConnectionSparkEmrPropertiesInput = {
|
|
51856
52387
|
/**
|
|
51857
52388
|
* @maxLength `2048`
|
|
51858
|
-
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless):.*`
|
|
52389
|
+
* @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless|emr-containers):.*`
|
|
51859
52390
|
*/
|
|
51860
52391
|
ComputeArn?: string;
|
|
51861
52392
|
/**
|
|
@@ -51873,6 +52404,10 @@ export type DataZoneConnectionSparkEmrPropertiesInput = {
|
|
|
51873
52404
|
* @pattern `^s3://.+$`
|
|
51874
52405
|
*/
|
|
51875
52406
|
LogUri?: string;
|
|
52407
|
+
/**
|
|
52408
|
+
* @maxLength `2048`
|
|
52409
|
+
*/
|
|
52410
|
+
ManagedEndpointArn?: string;
|
|
51876
52411
|
/**
|
|
51877
52412
|
* @maxLength `256`
|
|
51878
52413
|
* @pattern `^[\S]*$`
|
|
@@ -55176,6 +55711,10 @@ export type DevOpsAgentAssociationProps = {
|
|
|
55176
55711
|
* The configuration that directs how AgentSpace interacts with the given service
|
|
55177
55712
|
*/
|
|
55178
55713
|
Configuration: DevOpsAgentAssociationServiceConfiguration;
|
|
55714
|
+
/**
|
|
55715
|
+
* Set of linked association IDs for parent-child relationships
|
|
55716
|
+
*/
|
|
55717
|
+
LinkedAssociationIds?: string[];
|
|
55179
55718
|
/**
|
|
55180
55719
|
* The identifier for the associated service
|
|
55181
55720
|
* @minLength `1`
|
|
@@ -57594,6 +58133,10 @@ export type DSQLClusterAttributes = {
|
|
|
57594
58133
|
* The status of the cluster.
|
|
57595
58134
|
*/
|
|
57596
58135
|
Status: string;
|
|
58136
|
+
/**
|
|
58137
|
+
* The DSQL cluster VPC endpoint.
|
|
58138
|
+
*/
|
|
58139
|
+
VpcEndpoint: string;
|
|
57597
58140
|
/**
|
|
57598
58141
|
* The VPC endpoint service name.
|
|
57599
58142
|
*/
|
|
@@ -59134,6 +59677,7 @@ export type EC2EC2FleetInstanceRequirementsRequest = {
|
|
|
59134
59677
|
NetworkBandwidthGbps?: EC2EC2FleetNetworkBandwidthGbpsRequest;
|
|
59135
59678
|
NetworkInterfaceCount?: EC2EC2FleetNetworkInterfaceCountRequest;
|
|
59136
59679
|
OnDemandMaxPricePercentageOverLowestPrice?: number;
|
|
59680
|
+
RequireEncryptionInTransit?: boolean;
|
|
59137
59681
|
RequireHibernateSupport?: boolean;
|
|
59138
59682
|
SpotMaxPricePercentageOverLowestPrice?: number;
|
|
59139
59683
|
TotalLocalStorageGB?: EC2EC2FleetTotalLocalStorageGBRequest;
|
|
@@ -69707,6 +70251,24 @@ export type ECSExpressGatewayServiceAttributes = {
|
|
|
69707
70251
|
TaskRoleArn: string;
|
|
69708
70252
|
}[];
|
|
69709
70253
|
CreatedAt: string;
|
|
70254
|
+
ECSManagedResourceArns: {
|
|
70255
|
+
AutoScaling: {
|
|
70256
|
+
ApplicationAutoScalingPolicies: string[];
|
|
70257
|
+
ScalableTarget: string;
|
|
70258
|
+
};
|
|
70259
|
+
IngressPath: {
|
|
70260
|
+
CertificateArn: string;
|
|
70261
|
+
ListenerArn: string;
|
|
70262
|
+
ListenerRuleArn: string;
|
|
70263
|
+
LoadBalancerArn: string;
|
|
70264
|
+
LoadBalancerSecurityGroups: string[];
|
|
70265
|
+
TargetGroupArns: string[];
|
|
70266
|
+
};
|
|
70267
|
+
LogGroups: string[];
|
|
70268
|
+
MetricAlarms: string[];
|
|
70269
|
+
ServiceSecurityGroups: string[];
|
|
70270
|
+
};
|
|
70271
|
+
Endpoint: string;
|
|
69710
70272
|
ServiceArn: string;
|
|
69711
70273
|
Status: {
|
|
69712
70274
|
StatusCode: ECSExpressGatewayServiceExpressGatewayServiceStatusCode;
|
|
@@ -82314,43 +82876,37 @@ export type FraudDetectorVariableTag = {
|
|
|
82314
82876
|
Value: string;
|
|
82315
82877
|
};
|
|
82316
82878
|
/**
|
|
82317
|
-
* Resource
|
|
82318
|
-
* Creates an Amazon FSx for Lustre data repository association (DRA). A data repository association is a link between a directory on the file system and an Amazon S3 bucket or prefix. You can have a maximum of 8 data repository associations on a file system. Data repository associations are supported on all FSx for Lustre 2.12 and newer file systems, excluding ``scratch_1`` deployment type.
|
|
82319
|
-
Each data repository association must have a unique Amazon FSx file system directory and a unique S3 bucket or prefix associated with it. You can configure a data repository association for automatic import only, for automatic export only, or for both. To learn more about linking a data repository to your file system, see [Linking your file system to an S3 bucket](https://docs.aws.amazon.com/fsx/latest/LustreGuide/create-dra-linked-data-repo.html).
|
|
82879
|
+
* Resource Type definition for AWS::FSx::DataRepositoryAssociation
|
|
82320
82880
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
|
|
82321
82881
|
*/
|
|
82322
82882
|
export type FSxDataRepositoryAssociationProps = {
|
|
82323
82883
|
/**
|
|
82324
|
-
* A boolean flag indicating whether an import data repository task to import metadata should run after the data repository association is created. The task runs if this flag is set to
|
|
82884
|
+
* A boolean flag indicating whether an import data repository task to import metadata should run after the data repository association is created. The task runs if this flag is set to true.
|
|
82325
82885
|
*/
|
|
82326
82886
|
BatchImportMetaDataOnCreate?: boolean;
|
|
82327
82887
|
/**
|
|
82328
|
-
* The path to the Amazon S3 data repository that will be linked to the file system. The path can be an S3 bucket or prefix in the format
|
|
82888
|
+
* The path to the Amazon S3 data repository that will be linked to the file system. The path can be an S3 bucket or prefix in the format s3://myBucket/myPrefix/ . This path specifies where in the S3 data repository files will be imported from or exported to.
|
|
82329
82889
|
*/
|
|
82330
82890
|
DataRepositoryPath: string;
|
|
82331
82891
|
/**
|
|
82332
|
-
* The ID of the file system
|
|
82892
|
+
* The globally unique ID of the file system, assigned by Amazon FSx.
|
|
82333
82893
|
*/
|
|
82334
82894
|
FileSystemId: string;
|
|
82335
82895
|
/**
|
|
82336
|
-
|
|
82337
|
-
|
|
82338
|
-
If you specify only a forward slash (``/``) as the file system path, you can link only one data repository to the file system. You can only specify "/" as the file system path for the first data repository associated with a file system.
|
|
82339
|
-
*/
|
|
82896
|
+
* This path specifies where in your file system files will be exported from or imported to. This file system directory can be linked to only one Amazon S3 bucket, and no other S3 bucket can be linked to the directory.
|
|
82897
|
+
*/
|
|
82340
82898
|
FileSystemPath: string;
|
|
82341
82899
|
/**
|
|
82342
|
-
|
|
82343
|
-
|
|
82344
|
-
*/
|
|
82900
|
+
* For files imported from a data repository, this value determines the stripe count and maximum amount of data per file (in MiB) stored on a single physical disk. The maximum number of disks that a single file can be striped across is limited by the total number of disks that make up the file system.
|
|
82901
|
+
*/
|
|
82345
82902
|
ImportedFileChunkSize?: number;
|
|
82346
82903
|
/**
|
|
82347
82904
|
* The configuration for an Amazon S3 data repository linked to an Amazon FSx Lustre file system with a data repository association. The configuration defines which file events (new, changed, or deleted files or directories) are automatically imported from the linked data repository to the file system or automatically exported from the file system to the data repository.
|
|
82348
82905
|
*/
|
|
82349
82906
|
S3?: FSxDataRepositoryAssociationS3;
|
|
82350
82907
|
/**
|
|
82351
|
-
|
|
82352
|
-
|
|
82353
|
-
*/
|
|
82908
|
+
* A list of Tag values, with a maximum of 50 elements.
|
|
82909
|
+
*/
|
|
82354
82910
|
Tags?: FSxDataRepositoryAssociationTag[];
|
|
82355
82911
|
};
|
|
82356
82912
|
/**
|
|
@@ -82358,43 +82914,35 @@ export type FSxDataRepositoryAssociationProps = {
|
|
|
82358
82914
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html#aws-resource-fsx-datarepositoryassociation-return-values}
|
|
82359
82915
|
*/
|
|
82360
82916
|
export type FSxDataRepositoryAssociationAttributes = {
|
|
82917
|
+
/**
|
|
82918
|
+
* The system-generated, unique ID of the data repository association.
|
|
82919
|
+
*/
|
|
82361
82920
|
AssociationId: string;
|
|
82921
|
+
/**
|
|
82922
|
+
* The Amazon Resource Name (ARN) for a given resource. ARNs uniquely identify Amazon Web Services resources. We require an ARN when you need to specify a resource unambiguously across all of Amazon Web Services. For more information, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference.
|
|
82923
|
+
*/
|
|
82362
82924
|
ResourceARN: string;
|
|
82363
82925
|
};
|
|
82364
82926
|
/**
|
|
82365
82927
|
* Type definition for `AWS::FSx::DataRepositoryAssociation.AutoExportPolicy`.
|
|
82366
|
-
*
|
|
82367
|
-
The ``AutoExportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
|
|
82928
|
+
* Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
|
|
82368
82929
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoexportpolicy.html}
|
|
82369
82930
|
*/
|
|
82370
82931
|
export type FSxDataRepositoryAssociationAutoExportPolicy = {
|
|
82371
82932
|
/**
|
|
82372
|
-
|
|
82373
|
-
|
|
82374
|
-
+ ``CHANGED`` - Changes to files and directories on the file system are automatically exported to the data repository.
|
|
82375
|
-
+ ``DELETED`` - Files and directories are automatically deleted on the data repository when they are deleted on the file system.
|
|
82376
|
-
|
|
82377
|
-
You can define any combination of event types for your ``AutoExportPolicy``.
|
|
82378
|
-
* @maxLength `3`
|
|
82379
|
-
*/
|
|
82933
|
+
* @maxLength `3`
|
|
82934
|
+
*/
|
|
82380
82935
|
Events: FSxDataRepositoryAssociationEventType[];
|
|
82381
82936
|
};
|
|
82382
82937
|
/**
|
|
82383
82938
|
* Type definition for `AWS::FSx::DataRepositoryAssociation.AutoImportPolicy`.
|
|
82384
|
-
*
|
|
82385
|
-
The ``AutoImportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
|
|
82939
|
+
* Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
|
|
82386
82940
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoimportpolicy.html}
|
|
82387
82941
|
*/
|
|
82388
82942
|
export type FSxDataRepositoryAssociationAutoImportPolicy = {
|
|
82389
82943
|
/**
|
|
82390
|
-
|
|
82391
|
-
|
|
82392
|
-
+ ``CHANGED`` - Amazon FSx automatically updates file metadata and invalidates existing file content on the file system as files change in the data repository.
|
|
82393
|
-
+ ``DELETED`` - Amazon FSx automatically deletes files on the file system as corresponding files are deleted in the data repository.
|
|
82394
|
-
|
|
82395
|
-
You can define any combination of event types for your ``AutoImportPolicy``.
|
|
82396
|
-
* @maxLength `3`
|
|
82397
|
-
*/
|
|
82944
|
+
* @maxLength `3`
|
|
82945
|
+
*/
|
|
82398
82946
|
Events: FSxDataRepositoryAssociationEventType[];
|
|
82399
82947
|
};
|
|
82400
82948
|
/**
|
|
@@ -82409,30 +82957,28 @@ export type FSxDataRepositoryAssociationEventType = "NEW" | "CHANGED" | "DELETED
|
|
|
82409
82957
|
*/
|
|
82410
82958
|
export type FSxDataRepositoryAssociationS3 = {
|
|
82411
82959
|
/**
|
|
82412
|
-
|
|
82413
|
-
|
|
82414
|
-
*/
|
|
82960
|
+
* Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
|
|
82961
|
+
*/
|
|
82415
82962
|
AutoExportPolicy?: FSxDataRepositoryAssociationAutoExportPolicy;
|
|
82416
82963
|
/**
|
|
82417
|
-
|
|
82418
|
-
|
|
82419
|
-
*/
|
|
82964
|
+
* Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
|
|
82965
|
+
*/
|
|
82420
82966
|
AutoImportPolicy?: FSxDataRepositoryAssociationAutoImportPolicy;
|
|
82421
82967
|
};
|
|
82422
82968
|
/**
|
|
82423
82969
|
* Type definition for `AWS::FSx::DataRepositoryAssociation.Tag`.
|
|
82424
|
-
*
|
|
82970
|
+
* A key-value pair to associate with a resource.
|
|
82425
82971
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-tag.html}
|
|
82426
82972
|
*/
|
|
82427
82973
|
export type FSxDataRepositoryAssociationTag = {
|
|
82428
82974
|
/**
|
|
82429
|
-
*
|
|
82975
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
82430
82976
|
* @minLength `1`
|
|
82431
82977
|
* @maxLength `128`
|
|
82432
82978
|
*/
|
|
82433
82979
|
Key: string;
|
|
82434
82980
|
/**
|
|
82435
|
-
*
|
|
82981
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
|
|
82436
82982
|
* @minLength `0`
|
|
82437
82983
|
* @maxLength `256`
|
|
82438
82984
|
*/
|
|
@@ -98565,38 +99111,6 @@ export type IoTEventsInputTag = {
|
|
|
98565
99111
|
*/
|
|
98566
99112
|
Value: string;
|
|
98567
99113
|
};
|
|
98568
|
-
/**
|
|
98569
|
-
* Resource Type definition for AWS::IoTFleetHub::Application
|
|
98570
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html}
|
|
98571
|
-
*/
|
|
98572
|
-
export type IoTFleetHubApplicationProps = {
|
|
98573
|
-
ApplicationDescription?: string;
|
|
98574
|
-
ApplicationName: string;
|
|
98575
|
-
RoleArn: string;
|
|
98576
|
-
Tags?: IoTFleetHubApplicationTag[];
|
|
98577
|
-
};
|
|
98578
|
-
/**
|
|
98579
|
-
* Attribute type definition for `AWS::IoTFleetHub::Application`.
|
|
98580
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleethub-application.html#aws-resource-iotfleethub-application-return-values}
|
|
98581
|
-
*/
|
|
98582
|
-
export type IoTFleetHubApplicationAttributes = {
|
|
98583
|
-
ApplicationArn: string;
|
|
98584
|
-
ApplicationCreationDate: number;
|
|
98585
|
-
ApplicationId: string;
|
|
98586
|
-
ApplicationLastUpdateDate: number;
|
|
98587
|
-
ApplicationState: string;
|
|
98588
|
-
ApplicationUrl: string;
|
|
98589
|
-
ErrorMessage: string;
|
|
98590
|
-
SsoClientId: string;
|
|
98591
|
-
};
|
|
98592
|
-
/**
|
|
98593
|
-
* Type definition for `AWS::IoTFleetHub::Application.Tag`.
|
|
98594
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotfleethub-application-tag.html}
|
|
98595
|
-
*/
|
|
98596
|
-
export type IoTFleetHubApplicationTag = {
|
|
98597
|
-
Key: string;
|
|
98598
|
-
Value: string;
|
|
98599
|
-
};
|
|
98600
99114
|
/**
|
|
98601
99115
|
* Definition of AWS::IoTFleetWise::Campaign Resource Type
|
|
98602
99116
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotfleetwise-campaign.html}
|
|
@@ -117469,461 +117983,6 @@ export type LookoutEquipmentInferenceSchedulerTag = {
|
|
|
117469
117983
|
*/
|
|
117470
117984
|
Value: string;
|
|
117471
117985
|
};
|
|
117472
|
-
/**
|
|
117473
|
-
* Resource Type definition for AWS::LookoutMetrics::Alert
|
|
117474
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-alert.html}
|
|
117475
|
-
*/
|
|
117476
|
-
export type LookoutMetricsAlertProps = {
|
|
117477
|
-
/**
|
|
117478
|
-
* The action to be taken by the alert when an anomaly is detected.
|
|
117479
|
-
*/
|
|
117480
|
-
Action: LookoutMetricsAlertAction;
|
|
117481
|
-
/**
|
|
117482
|
-
* A description for the alert.
|
|
117483
|
-
* @maxLength `256`
|
|
117484
|
-
* @pattern `.*\S.*`
|
|
117485
|
-
*/
|
|
117486
|
-
AlertDescription?: string;
|
|
117487
|
-
/**
|
|
117488
|
-
* The name of the alert. If not provided, a name is generated automatically.
|
|
117489
|
-
* @minLength `1`
|
|
117490
|
-
* @maxLength `63`
|
|
117491
|
-
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
|
|
117492
|
-
*/
|
|
117493
|
-
AlertName?: string;
|
|
117494
|
-
/**
|
|
117495
|
-
* A number between 0 and 100 (inclusive) that tunes the sensitivity of the alert.
|
|
117496
|
-
* @min `0`
|
|
117497
|
-
* @max `100`
|
|
117498
|
-
*/
|
|
117499
|
-
AlertSensitivityThreshold: number;
|
|
117500
|
-
/**
|
|
117501
|
-
* The Amazon resource name (ARN) of the Anomaly Detector to alert.
|
|
117502
|
-
* @maxLength `256`
|
|
117503
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117504
|
-
*/
|
|
117505
|
-
AnomalyDetectorArn: string;
|
|
117506
|
-
};
|
|
117507
|
-
/**
|
|
117508
|
-
* Attribute type definition for `AWS::LookoutMetrics::Alert`.
|
|
117509
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-alert.html#aws-resource-lookoutmetrics-alert-return-values}
|
|
117510
|
-
*/
|
|
117511
|
-
export type LookoutMetricsAlertAttributes = {
|
|
117512
|
-
/**
|
|
117513
|
-
* ARN assigned to the alert.
|
|
117514
|
-
* @maxLength `256`
|
|
117515
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117516
|
-
*/
|
|
117517
|
-
Arn: string;
|
|
117518
|
-
};
|
|
117519
|
-
/**
|
|
117520
|
-
* Type definition for `AWS::LookoutMetrics::Alert.Action`.
|
|
117521
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-action.html}
|
|
117522
|
-
*/
|
|
117523
|
-
export type LookoutMetricsAlertAction = {
|
|
117524
|
-
/**
|
|
117525
|
-
* Configuration options for a Lambda alert action.
|
|
117526
|
-
*/
|
|
117527
|
-
LambdaConfiguration?: LookoutMetricsAlertLambdaConfiguration;
|
|
117528
|
-
/**
|
|
117529
|
-
* Configuration options for an SNS alert action.
|
|
117530
|
-
*/
|
|
117531
|
-
SNSConfiguration?: LookoutMetricsAlertSNSConfiguration;
|
|
117532
|
-
};
|
|
117533
|
-
/**
|
|
117534
|
-
* Type definition for `AWS::LookoutMetrics::Alert.LambdaConfiguration`.
|
|
117535
|
-
* Configuration options for a Lambda alert action.
|
|
117536
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-lambdaconfiguration.html}
|
|
117537
|
-
*/
|
|
117538
|
-
export type LookoutMetricsAlertLambdaConfiguration = {
|
|
117539
|
-
/**
|
|
117540
|
-
* ARN of a Lambda to send alert notifications to.
|
|
117541
|
-
* @maxLength `256`
|
|
117542
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117543
|
-
*/
|
|
117544
|
-
LambdaArn: string;
|
|
117545
|
-
/**
|
|
117546
|
-
* ARN of an IAM role that LookoutMetrics should assume to access the Lambda function.
|
|
117547
|
-
* @maxLength `256`
|
|
117548
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117549
|
-
*/
|
|
117550
|
-
RoleArn: string;
|
|
117551
|
-
};
|
|
117552
|
-
/**
|
|
117553
|
-
* Type definition for `AWS::LookoutMetrics::Alert.SNSConfiguration`.
|
|
117554
|
-
* Configuration options for an SNS alert action.
|
|
117555
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-alert-snsconfiguration.html}
|
|
117556
|
-
*/
|
|
117557
|
-
export type LookoutMetricsAlertSNSConfiguration = {
|
|
117558
|
-
/**
|
|
117559
|
-
* ARN of an IAM role that LookoutMetrics should assume to access the SNS topic.
|
|
117560
|
-
* @maxLength `256`
|
|
117561
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117562
|
-
*/
|
|
117563
|
-
RoleArn: string;
|
|
117564
|
-
/**
|
|
117565
|
-
* ARN of an SNS topic to send alert notifications to.
|
|
117566
|
-
* @maxLength `256`
|
|
117567
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117568
|
-
*/
|
|
117569
|
-
SnsTopicArn: string;
|
|
117570
|
-
};
|
|
117571
|
-
/**
|
|
117572
|
-
* Resource type definition for `AWS::LookoutMetrics::AnomalyDetector`.
|
|
117573
|
-
* An Amazon Lookout for Metrics Detector
|
|
117574
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-anomalydetector.html}
|
|
117575
|
-
*/
|
|
117576
|
-
export type LookoutMetricsAnomalyDetectorProps = {
|
|
117577
|
-
/**
|
|
117578
|
-
* Configuration options for the AnomalyDetector
|
|
117579
|
-
*/
|
|
117580
|
-
AnomalyDetectorConfig: LookoutMetricsAnomalyDetectorAnomalyDetectorConfig;
|
|
117581
|
-
/**
|
|
117582
|
-
* A description for the AnomalyDetector.
|
|
117583
|
-
* @maxLength `256`
|
|
117584
|
-
* @pattern `.*\S.*`
|
|
117585
|
-
*/
|
|
117586
|
-
AnomalyDetectorDescription?: string;
|
|
117587
|
-
/**
|
|
117588
|
-
* Name for the Amazon Lookout for Metrics Anomaly Detector
|
|
117589
|
-
* @minLength `1`
|
|
117590
|
-
* @maxLength `63`
|
|
117591
|
-
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
|
|
117592
|
-
*/
|
|
117593
|
-
AnomalyDetectorName?: string;
|
|
117594
|
-
/**
|
|
117595
|
-
* KMS key used to encrypt the AnomalyDetector data
|
|
117596
|
-
* @minLength `20`
|
|
117597
|
-
* @maxLength `2048`
|
|
117598
|
-
* @pattern `arn:aws.*:kms:.*:[0-9]{12}:key/.*`
|
|
117599
|
-
*/
|
|
117600
|
-
KmsKeyArn?: string;
|
|
117601
|
-
/**
|
|
117602
|
-
* List of metric sets for anomaly detection
|
|
117603
|
-
* @minLength `1`
|
|
117604
|
-
* @maxLength `1`
|
|
117605
|
-
*/
|
|
117606
|
-
MetricSetList: LookoutMetricsAnomalyDetectorMetricSet[];
|
|
117607
|
-
};
|
|
117608
|
-
/**
|
|
117609
|
-
* Attribute type definition for `AWS::LookoutMetrics::AnomalyDetector`.
|
|
117610
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutmetrics-anomalydetector.html#aws-resource-lookoutmetrics-anomalydetector-return-values}
|
|
117611
|
-
*/
|
|
117612
|
-
export type LookoutMetricsAnomalyDetectorAttributes = {
|
|
117613
|
-
/**
|
|
117614
|
-
* @maxLength `256`
|
|
117615
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117616
|
-
*/
|
|
117617
|
-
Arn: string;
|
|
117618
|
-
};
|
|
117619
|
-
/**
|
|
117620
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.AnomalyDetectorConfig`.
|
|
117621
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-anomalydetectorconfig.html}
|
|
117622
|
-
*/
|
|
117623
|
-
export type LookoutMetricsAnomalyDetectorAnomalyDetectorConfig = {
|
|
117624
|
-
/**
|
|
117625
|
-
* Frequency of anomaly detection
|
|
117626
|
-
*/
|
|
117627
|
-
AnomalyDetectorFrequency: LookoutMetricsAnomalyDetectorAnomalyDetectorFrequency;
|
|
117628
|
-
};
|
|
117629
|
-
/**
|
|
117630
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.AnomalyDetectorFrequency`.
|
|
117631
|
-
* Frequency of anomaly detection
|
|
117632
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-anomalydetectorfrequency.html}
|
|
117633
|
-
*/
|
|
117634
|
-
export type LookoutMetricsAnomalyDetectorAnomalyDetectorFrequency = "PT5M" | "PT10M" | "PT1H" | "P1D";
|
|
117635
|
-
/**
|
|
117636
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.AppFlowConfig`.
|
|
117637
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-appflowconfig.html}
|
|
117638
|
-
*/
|
|
117639
|
-
export type LookoutMetricsAnomalyDetectorAppFlowConfig = {
|
|
117640
|
-
/**
|
|
117641
|
-
* @maxLength `256`
|
|
117642
|
-
* @pattern `[a-zA-Z0-9][\w!@#.-]+`
|
|
117643
|
-
*/
|
|
117644
|
-
FlowName: string;
|
|
117645
|
-
/**
|
|
117646
|
-
* @maxLength `256`
|
|
117647
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117648
|
-
*/
|
|
117649
|
-
RoleArn: string;
|
|
117650
|
-
};
|
|
117651
|
-
/**
|
|
117652
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.CloudwatchConfig`.
|
|
117653
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-cloudwatchconfig.html}
|
|
117654
|
-
*/
|
|
117655
|
-
export type LookoutMetricsAnomalyDetectorCloudwatchConfig = {
|
|
117656
|
-
/**
|
|
117657
|
-
* @maxLength `256`
|
|
117658
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117659
|
-
*/
|
|
117660
|
-
RoleArn: string;
|
|
117661
|
-
};
|
|
117662
|
-
/**
|
|
117663
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.CsvFormatDescriptor`.
|
|
117664
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-csvformatdescriptor.html}
|
|
117665
|
-
*/
|
|
117666
|
-
export type LookoutMetricsAnomalyDetectorCsvFormatDescriptor = {
|
|
117667
|
-
/**
|
|
117668
|
-
* @maxLength `63`
|
|
117669
|
-
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
|
|
117670
|
-
*/
|
|
117671
|
-
Charset?: string;
|
|
117672
|
-
ContainsHeader?: boolean;
|
|
117673
|
-
/**
|
|
117674
|
-
* @maxLength `1`
|
|
117675
|
-
* @pattern `[^\r\n]`
|
|
117676
|
-
*/
|
|
117677
|
-
Delimiter?: string;
|
|
117678
|
-
FileCompression?: "NONE" | "GZIP";
|
|
117679
|
-
HeaderList?: string[];
|
|
117680
|
-
/**
|
|
117681
|
-
* @maxLength `1`
|
|
117682
|
-
* @pattern `[^\r\n]|^$`
|
|
117683
|
-
*/
|
|
117684
|
-
QuoteSymbol?: string;
|
|
117685
|
-
};
|
|
117686
|
-
/**
|
|
117687
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.FileFormatDescriptor`.
|
|
117688
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-fileformatdescriptor.html}
|
|
117689
|
-
*/
|
|
117690
|
-
export type LookoutMetricsAnomalyDetectorFileFormatDescriptor = {
|
|
117691
|
-
CsvFormatDescriptor?: LookoutMetricsAnomalyDetectorCsvFormatDescriptor;
|
|
117692
|
-
JsonFormatDescriptor?: LookoutMetricsAnomalyDetectorJsonFormatDescriptor;
|
|
117693
|
-
};
|
|
117694
|
-
/**
|
|
117695
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.JsonFormatDescriptor`.
|
|
117696
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-jsonformatdescriptor.html}
|
|
117697
|
-
*/
|
|
117698
|
-
export type LookoutMetricsAnomalyDetectorJsonFormatDescriptor = {
|
|
117699
|
-
/**
|
|
117700
|
-
* @maxLength `63`
|
|
117701
|
-
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
|
|
117702
|
-
*/
|
|
117703
|
-
Charset?: string;
|
|
117704
|
-
FileCompression?: "NONE" | "GZIP";
|
|
117705
|
-
};
|
|
117706
|
-
/**
|
|
117707
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.Metric`.
|
|
117708
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-metric.html}
|
|
117709
|
-
*/
|
|
117710
|
-
export type LookoutMetricsAnomalyDetectorMetric = {
|
|
117711
|
-
/**
|
|
117712
|
-
* Operator used to aggregate metric values
|
|
117713
|
-
*/
|
|
117714
|
-
AggregationFunction: "AVG" | "SUM";
|
|
117715
|
-
/**
|
|
117716
|
-
* Name of a column in the data.
|
|
117717
|
-
* @minLength `1`
|
|
117718
|
-
* @maxLength `63`
|
|
117719
|
-
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
|
|
117720
|
-
*/
|
|
117721
|
-
MetricName: string;
|
|
117722
|
-
/**
|
|
117723
|
-
* @minLength `1`
|
|
117724
|
-
* @maxLength `255`
|
|
117725
|
-
* @pattern `[^:].*`
|
|
117726
|
-
*/
|
|
117727
|
-
Namespace?: string;
|
|
117728
|
-
};
|
|
117729
|
-
/**
|
|
117730
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.MetricSet`.
|
|
117731
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-metricset.html}
|
|
117732
|
-
*/
|
|
117733
|
-
export type LookoutMetricsAnomalyDetectorMetricSet = {
|
|
117734
|
-
/**
|
|
117735
|
-
* Dimensions for this MetricSet.
|
|
117736
|
-
* @minLength `0`
|
|
117737
|
-
*/
|
|
117738
|
-
DimensionList?: string[];
|
|
117739
|
-
/**
|
|
117740
|
-
* Metrics captured by this MetricSet.
|
|
117741
|
-
* @minLength `1`
|
|
117742
|
-
*/
|
|
117743
|
-
MetricList: LookoutMetricsAnomalyDetectorMetric[];
|
|
117744
|
-
/**
|
|
117745
|
-
* A description for the MetricSet.
|
|
117746
|
-
* @maxLength `256`
|
|
117747
|
-
* @pattern `.*\S.*`
|
|
117748
|
-
*/
|
|
117749
|
-
MetricSetDescription?: string;
|
|
117750
|
-
/**
|
|
117751
|
-
* A frequency period to aggregate the data
|
|
117752
|
-
*/
|
|
117753
|
-
MetricSetFrequency?: "PT5M" | "PT10M" | "PT1H" | "P1D";
|
|
117754
|
-
/**
|
|
117755
|
-
* The name of the MetricSet.
|
|
117756
|
-
* @minLength `1`
|
|
117757
|
-
* @maxLength `63`
|
|
117758
|
-
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
|
|
117759
|
-
*/
|
|
117760
|
-
MetricSetName: string;
|
|
117761
|
-
MetricSource: LookoutMetricsAnomalyDetectorMetricSource;
|
|
117762
|
-
/**
|
|
117763
|
-
* Offset, in seconds, between the frequency interval and the time at which the metrics are available.
|
|
117764
|
-
* @min `0`
|
|
117765
|
-
* @max `432000`
|
|
117766
|
-
*/
|
|
117767
|
-
Offset?: number;
|
|
117768
|
-
TimestampColumn?: LookoutMetricsAnomalyDetectorTimestampColumn;
|
|
117769
|
-
/**
|
|
117770
|
-
* @maxLength `60`
|
|
117771
|
-
* @pattern `.*\S.*`
|
|
117772
|
-
*/
|
|
117773
|
-
Timezone?: string;
|
|
117774
|
-
};
|
|
117775
|
-
/**
|
|
117776
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.MetricSource`.
|
|
117777
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-metricsource.html}
|
|
117778
|
-
*/
|
|
117779
|
-
export type LookoutMetricsAnomalyDetectorMetricSource = {
|
|
117780
|
-
AppFlowConfig?: LookoutMetricsAnomalyDetectorAppFlowConfig;
|
|
117781
|
-
CloudwatchConfig?: LookoutMetricsAnomalyDetectorCloudwatchConfig;
|
|
117782
|
-
RDSSourceConfig?: LookoutMetricsAnomalyDetectorRDSSourceConfig;
|
|
117783
|
-
RedshiftSourceConfig?: LookoutMetricsAnomalyDetectorRedshiftSourceConfig;
|
|
117784
|
-
S3SourceConfig?: LookoutMetricsAnomalyDetectorS3SourceConfig;
|
|
117785
|
-
};
|
|
117786
|
-
/**
|
|
117787
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.RDSSourceConfig`.
|
|
117788
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-rdssourceconfig.html}
|
|
117789
|
-
*/
|
|
117790
|
-
export type LookoutMetricsAnomalyDetectorRDSSourceConfig = {
|
|
117791
|
-
/**
|
|
117792
|
-
* @minLength `1`
|
|
117793
|
-
* @maxLength `63`
|
|
117794
|
-
* @pattern `^[a-zA-Z](?!.*--)(?!.*-$)[0-9a-zA-Z\-]*$`
|
|
117795
|
-
*/
|
|
117796
|
-
DBInstanceIdentifier: string;
|
|
117797
|
-
/**
|
|
117798
|
-
* @minLength `1`
|
|
117799
|
-
* @maxLength `253`
|
|
117800
|
-
* @pattern `.*\S.*`
|
|
117801
|
-
*/
|
|
117802
|
-
DatabaseHost: string;
|
|
117803
|
-
/**
|
|
117804
|
-
* @minLength `1`
|
|
117805
|
-
* @maxLength `64`
|
|
117806
|
-
* @pattern `[a-zA-Z0-9_]+`
|
|
117807
|
-
*/
|
|
117808
|
-
DatabaseName: string;
|
|
117809
|
-
/**
|
|
117810
|
-
* @min `1`
|
|
117811
|
-
* @max `65535`
|
|
117812
|
-
*/
|
|
117813
|
-
DatabasePort: number;
|
|
117814
|
-
/**
|
|
117815
|
-
* @maxLength `256`
|
|
117816
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117817
|
-
*/
|
|
117818
|
-
RoleArn: string;
|
|
117819
|
-
/**
|
|
117820
|
-
* @maxLength `256`
|
|
117821
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:secret:AmazonLookoutMetrics-.+`
|
|
117822
|
-
*/
|
|
117823
|
-
SecretManagerArn: string;
|
|
117824
|
-
/**
|
|
117825
|
-
* @minLength `1`
|
|
117826
|
-
* @maxLength `100`
|
|
117827
|
-
* @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
|
|
117828
|
-
*/
|
|
117829
|
-
TableName: string;
|
|
117830
|
-
VpcConfiguration: LookoutMetricsAnomalyDetectorVpcConfiguration;
|
|
117831
|
-
};
|
|
117832
|
-
/**
|
|
117833
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.RedshiftSourceConfig`.
|
|
117834
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-redshiftsourceconfig.html}
|
|
117835
|
-
*/
|
|
117836
|
-
export type LookoutMetricsAnomalyDetectorRedshiftSourceConfig = {
|
|
117837
|
-
/**
|
|
117838
|
-
* @minLength `1`
|
|
117839
|
-
* @maxLength `63`
|
|
117840
|
-
* @pattern `^[a-z](?!.*--)(?!.*-$)[0-9a-z\-]*$`
|
|
117841
|
-
*/
|
|
117842
|
-
ClusterIdentifier: string;
|
|
117843
|
-
/**
|
|
117844
|
-
* @minLength `1`
|
|
117845
|
-
* @maxLength `253`
|
|
117846
|
-
* @pattern `.*\S.*`
|
|
117847
|
-
*/
|
|
117848
|
-
DatabaseHost: string;
|
|
117849
|
-
/**
|
|
117850
|
-
* @minLength `1`
|
|
117851
|
-
* @maxLength `100`
|
|
117852
|
-
* @pattern `[a-z0-9]+`
|
|
117853
|
-
*/
|
|
117854
|
-
DatabaseName: string;
|
|
117855
|
-
/**
|
|
117856
|
-
* @min `1`
|
|
117857
|
-
* @max `65535`
|
|
117858
|
-
*/
|
|
117859
|
-
DatabasePort: number;
|
|
117860
|
-
/**
|
|
117861
|
-
* @maxLength `256`
|
|
117862
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117863
|
-
*/
|
|
117864
|
-
RoleArn: string;
|
|
117865
|
-
/**
|
|
117866
|
-
* @maxLength `256`
|
|
117867
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:secret:AmazonLookoutMetrics-.+`
|
|
117868
|
-
*/
|
|
117869
|
-
SecretManagerArn: string;
|
|
117870
|
-
/**
|
|
117871
|
-
* @minLength `1`
|
|
117872
|
-
* @maxLength `100`
|
|
117873
|
-
* @pattern `^[a-zA-Z][a-zA-Z0-9_]*$`
|
|
117874
|
-
*/
|
|
117875
|
-
TableName: string;
|
|
117876
|
-
VpcConfiguration: LookoutMetricsAnomalyDetectorVpcConfiguration;
|
|
117877
|
-
};
|
|
117878
|
-
/**
|
|
117879
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.S3SourceConfig`.
|
|
117880
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-s3sourceconfig.html}
|
|
117881
|
-
*/
|
|
117882
|
-
export type LookoutMetricsAnomalyDetectorS3SourceConfig = {
|
|
117883
|
-
FileFormatDescriptor: LookoutMetricsAnomalyDetectorFileFormatDescriptor;
|
|
117884
|
-
/**
|
|
117885
|
-
* @minLength `1`
|
|
117886
|
-
* @maxLength `1`
|
|
117887
|
-
*/
|
|
117888
|
-
HistoricalDataPathList?: string[];
|
|
117889
|
-
/**
|
|
117890
|
-
* @maxLength `256`
|
|
117891
|
-
* @pattern `arn:([a-z\d-]+):.*:.*:.*:.+`
|
|
117892
|
-
*/
|
|
117893
|
-
RoleArn: string;
|
|
117894
|
-
/**
|
|
117895
|
-
* @minLength `1`
|
|
117896
|
-
* @maxLength `1`
|
|
117897
|
-
*/
|
|
117898
|
-
TemplatedPathList?: string[];
|
|
117899
|
-
};
|
|
117900
|
-
/**
|
|
117901
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.TimestampColumn`.
|
|
117902
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-timestampcolumn.html}
|
|
117903
|
-
*/
|
|
117904
|
-
export type LookoutMetricsAnomalyDetectorTimestampColumn = {
|
|
117905
|
-
/**
|
|
117906
|
-
* A timestamp format for the timestamps in the dataset
|
|
117907
|
-
* @maxLength `63`
|
|
117908
|
-
* @pattern `.*\S.*`
|
|
117909
|
-
*/
|
|
117910
|
-
ColumnFormat?: string;
|
|
117911
|
-
/**
|
|
117912
|
-
* Name of a column in the data.
|
|
117913
|
-
* @minLength `1`
|
|
117914
|
-
* @maxLength `63`
|
|
117915
|
-
* @pattern `^[a-zA-Z0-9][a-zA-Z0-9\-_]*`
|
|
117916
|
-
*/
|
|
117917
|
-
ColumnName?: string;
|
|
117918
|
-
};
|
|
117919
|
-
/**
|
|
117920
|
-
* Type definition for `AWS::LookoutMetrics::AnomalyDetector.VpcConfiguration`.
|
|
117921
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lookoutmetrics-anomalydetector-vpcconfiguration.html}
|
|
117922
|
-
*/
|
|
117923
|
-
export type LookoutMetricsAnomalyDetectorVpcConfiguration = {
|
|
117924
|
-
SecurityGroupIdList: string[];
|
|
117925
|
-
SubnetIdList: string[];
|
|
117926
|
-
};
|
|
117927
117986
|
/**
|
|
117928
117987
|
* The AWS::LookoutVision::Project type creates an Amazon Lookout for Vision project. A project is a grouping of the resources needed to create and manage a Lookout for Vision model.
|
|
117929
117988
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lookoutvision-project.html}
|
|
@@ -130891,6 +130950,10 @@ export type NetworkManagerConnectAttachmentProps = {
|
|
|
130891
130950
|
* The attachment to move from one segment to another.
|
|
130892
130951
|
*/
|
|
130893
130952
|
ProposedSegmentChange?: NetworkManagerConnectAttachmentProposedSegmentChange;
|
|
130953
|
+
/**
|
|
130954
|
+
* Routing policy label
|
|
130955
|
+
*/
|
|
130956
|
+
RoutingPolicyLabel?: string;
|
|
130894
130957
|
/**
|
|
130895
130958
|
* Tags for the attachment.
|
|
130896
130959
|
*/
|
|
@@ -131330,6 +131393,25 @@ export type NetworkManagerCoreNetworkTag = {
|
|
|
131330
131393
|
*/
|
|
131331
131394
|
Value: string;
|
|
131332
131395
|
};
|
|
131396
|
+
/**
|
|
131397
|
+
* Resource Type definition for AWS::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
|
|
131398
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
|
|
131399
|
+
*/
|
|
131400
|
+
export type NetworkManagerCoreNetworkPrefixListAssociationProps = {
|
|
131401
|
+
/**
|
|
131402
|
+
* The ID of the core network.
|
|
131403
|
+
*/
|
|
131404
|
+
CoreNetworkId: string;
|
|
131405
|
+
/**
|
|
131406
|
+
* The alias of the prefix list
|
|
131407
|
+
*/
|
|
131408
|
+
PrefixListAlias: string;
|
|
131409
|
+
/**
|
|
131410
|
+
* The Amazon Resource Name (ARN) of the prefix list.
|
|
131411
|
+
* @pattern `^arn:[a-z0-9-]+:ec2:[a-z]+-[a-z]+-[0-9]:([0-9]{12}):prefix-list/pl-[a-z0-9]+$`
|
|
131412
|
+
*/
|
|
131413
|
+
PrefixListArn: string;
|
|
131414
|
+
};
|
|
131333
131415
|
/**
|
|
131334
131416
|
* The AWS::NetworkManager::CustomerGatewayAssociation type associates a customer gateway with a device and optionally, with a link.
|
|
131335
131417
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-customergatewayassociation.html}
|
|
@@ -131494,6 +131576,10 @@ export type NetworkManagerDirectConnectGatewayAttachmentProps = {
|
|
|
131494
131576
|
* The attachment to move from one segment to another.
|
|
131495
131577
|
*/
|
|
131496
131578
|
ProposedSegmentChange?: NetworkManagerDirectConnectGatewayAttachmentProposedSegmentChange;
|
|
131579
|
+
/**
|
|
131580
|
+
* Routing policy label
|
|
131581
|
+
*/
|
|
131582
|
+
RoutingPolicyLabel?: string;
|
|
131497
131583
|
/**
|
|
131498
131584
|
* Tags for the attachment.
|
|
131499
131585
|
*/
|
|
@@ -131860,6 +131946,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentProps = {
|
|
|
131860
131946
|
* The attachment to move from one segment to another.
|
|
131861
131947
|
*/
|
|
131862
131948
|
ProposedSegmentChange?: NetworkManagerSiteToSiteVpnAttachmentProposedSegmentChange;
|
|
131949
|
+
/**
|
|
131950
|
+
* Routing policy label
|
|
131951
|
+
*/
|
|
131952
|
+
RoutingPolicyLabel?: string;
|
|
131863
131953
|
/**
|
|
131864
131954
|
* Tags for the attachment.
|
|
131865
131955
|
*/
|
|
@@ -132094,6 +132184,10 @@ export type NetworkManagerTransitGatewayRouteTableAttachmentProps = {
|
|
|
132094
132184
|
* The attachment to move from one segment to another.
|
|
132095
132185
|
*/
|
|
132096
132186
|
ProposedSegmentChange?: NetworkManagerTransitGatewayRouteTableAttachmentProposedSegmentChange;
|
|
132187
|
+
/**
|
|
132188
|
+
* Routing policy label
|
|
132189
|
+
*/
|
|
132190
|
+
RoutingPolicyLabel?: string;
|
|
132097
132191
|
/**
|
|
132098
132192
|
* An array of key-value pairs to apply to this resource.
|
|
132099
132193
|
*/
|
|
@@ -132235,6 +132329,10 @@ export type NetworkManagerVpcAttachmentProps = {
|
|
|
132235
132329
|
* The attachment to move from one segment to another.
|
|
132236
132330
|
*/
|
|
132237
132331
|
ProposedSegmentChange?: NetworkManagerVpcAttachmentProposedSegmentChange;
|
|
132332
|
+
/**
|
|
132333
|
+
* Routing policy label
|
|
132334
|
+
*/
|
|
132335
|
+
RoutingPolicyLabel?: string;
|
|
132238
132336
|
/**
|
|
132239
132337
|
* Subnet Arn list
|
|
132240
132338
|
*/
|
|
@@ -137887,6 +137985,7 @@ export type PaymentCryptographyKeyProps = {
|
|
|
137887
137985
|
Exportable: boolean;
|
|
137888
137986
|
KeyAttributes: PaymentCryptographyKeyKeyAttributes;
|
|
137889
137987
|
KeyCheckValueAlgorithm?: PaymentCryptographyKeyKeyCheckValueAlgorithm;
|
|
137988
|
+
ReplicationRegions?: string[];
|
|
137890
137989
|
/**
|
|
137891
137990
|
* @minLength `0`
|
|
137892
137991
|
* @maxLength `200`
|
|
@@ -137912,6 +138011,13 @@ export type PaymentCryptographyKeyAttributes = {
|
|
|
137912
138011
|
* Defines the state of a key
|
|
137913
138012
|
*/
|
|
137914
138013
|
KeyState: PaymentCryptographyKeyKeyState;
|
|
138014
|
+
ReplicationStatus: Record<string, {
|
|
138015
|
+
/**
|
|
138016
|
+
* Defines the replication state of a key
|
|
138017
|
+
*/
|
|
138018
|
+
Status: PaymentCryptographyKeyKeyReplicationState;
|
|
138019
|
+
StatusMessage: string;
|
|
138020
|
+
}>;
|
|
137915
138021
|
};
|
|
137916
138022
|
/**
|
|
137917
138023
|
* Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
|
|
@@ -137964,6 +138070,12 @@ export type PaymentCryptographyKeyKeyModesOfUse = {
|
|
|
137964
138070
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyorigin.html}
|
|
137965
138071
|
*/
|
|
137966
138072
|
export type PaymentCryptographyKeyKeyOrigin = "EXTERNAL" | "AWS_PAYMENT_CRYPTOGRAPHY";
|
|
138073
|
+
/**
|
|
138074
|
+
* Type definition for `AWS::PaymentCryptography::Key.KeyReplicationState`.
|
|
138075
|
+
* Defines the replication state of a key
|
|
138076
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyreplicationstate.html}
|
|
138077
|
+
*/
|
|
138078
|
+
export type PaymentCryptographyKeyKeyReplicationState = "IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "SYNCHRONIZED";
|
|
137967
138079
|
/**
|
|
137968
138080
|
* Type definition for `AWS::PaymentCryptography::Key.KeyState`.
|
|
137969
138081
|
* Defines the state of a key
|
|
@@ -137975,6 +138087,22 @@ export type PaymentCryptographyKeyKeyState = "CREATE_IN_PROGRESS" | "CREATE_COMP
|
|
|
137975
138087
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyusage.html}
|
|
137976
138088
|
*/
|
|
137977
138089
|
export type PaymentCryptographyKeyKeyUsage = "TR31_B0_BASE_DERIVATION_KEY" | "TR31_C0_CARD_VERIFICATION_KEY" | "TR31_D0_SYMMETRIC_DATA_ENCRYPTION_KEY" | "TR31_D1_ASYMMETRIC_KEY_FOR_DATA_ENCRYPTION" | "TR31_E0_EMV_MKEY_APP_CRYPTOGRAMS" | "TR31_E1_EMV_MKEY_CONFIDENTIALITY" | "TR31_E2_EMV_MKEY_INTEGRITY" | "TR31_E4_EMV_MKEY_DYNAMIC_NUMBERS" | "TR31_E5_EMV_MKEY_CARD_PERSONALIZATION" | "TR31_E6_EMV_MKEY_OTHER" | "TR31_K0_KEY_ENCRYPTION_KEY" | "TR31_K1_KEY_BLOCK_PROTECTION_KEY" | "TR31_K3_ASYMMETRIC_KEY_FOR_KEY_AGREEMENT" | "TR31_M3_ISO_9797_3_MAC_KEY" | "TR31_M1_ISO_9797_1_MAC_KEY" | "TR31_M6_ISO_9797_5_CMAC_KEY" | "TR31_M7_HMAC_KEY" | "TR31_P0_PIN_ENCRYPTION_KEY" | "TR31_P1_PIN_GENERATION_KEY" | "TR31_S0_ASYMMETRIC_KEY_FOR_DIGITAL_SIGNATURE" | "TR31_V1_IBM3624_PIN_VERIFICATION_KEY" | "TR31_V2_VISA_PIN_VERIFICATION_KEY" | "TR31_K2_TR34_ASYMMETRIC_KEY";
|
|
138090
|
+
/**
|
|
138091
|
+
* Type definition for `AWS::PaymentCryptography::Key.ReplicationStatus`.
|
|
138092
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatus.html}
|
|
138093
|
+
*/
|
|
138094
|
+
export type PaymentCryptographyKeyReplicationStatus = Record<string, PaymentCryptographyKeyReplicationStatusType>;
|
|
138095
|
+
/**
|
|
138096
|
+
* Type definition for `AWS::PaymentCryptography::Key.ReplicationStatusType`.
|
|
138097
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatustype.html}
|
|
138098
|
+
*/
|
|
138099
|
+
export type PaymentCryptographyKeyReplicationStatusType = {
|
|
138100
|
+
/**
|
|
138101
|
+
* Defines the replication state of a key
|
|
138102
|
+
*/
|
|
138103
|
+
Status: PaymentCryptographyKeyKeyReplicationState;
|
|
138104
|
+
StatusMessage?: string;
|
|
138105
|
+
};
|
|
137978
138106
|
/**
|
|
137979
138107
|
* Type definition for `AWS::PaymentCryptography::Key.Tag`.
|
|
137980
138108
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-tag.html}
|
|
@@ -178848,355 +178976,6 @@ export type ResourceGroupsTagSyncTaskAttributes = {
|
|
|
178848
178976
|
*/
|
|
178849
178977
|
TaskArn: string;
|
|
178850
178978
|
};
|
|
178851
|
-
/**
|
|
178852
|
-
* AWS::RoboMaker::Fleet resource creates an AWS RoboMaker fleet. Fleets contain robots and can receive deployments.
|
|
178853
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html}
|
|
178854
|
-
*/
|
|
178855
|
-
export type RoboMakerFleetProps = {
|
|
178856
|
-
/**
|
|
178857
|
-
* The name of the fleet.
|
|
178858
|
-
* @minLength `1`
|
|
178859
|
-
* @maxLength `255`
|
|
178860
|
-
* @pattern `[a-zA-Z0-9_\-]{1,255}$`
|
|
178861
|
-
*/
|
|
178862
|
-
Name?: string;
|
|
178863
|
-
/**
|
|
178864
|
-
* A key-value pair to associate with a resource.
|
|
178865
|
-
*/
|
|
178866
|
-
Tags?: RoboMakerFleetTags;
|
|
178867
|
-
};
|
|
178868
|
-
/**
|
|
178869
|
-
* Attribute type definition for `AWS::RoboMaker::Fleet`.
|
|
178870
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-fleet.html#aws-resource-robomaker-fleet-return-values}
|
|
178871
|
-
*/
|
|
178872
|
-
export type RoboMakerFleetAttributes = {
|
|
178873
|
-
/**
|
|
178874
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
178875
|
-
*/
|
|
178876
|
-
Arn: string;
|
|
178877
|
-
};
|
|
178878
|
-
/**
|
|
178879
|
-
* Type definition for `AWS::RoboMaker::Fleet.Tags`.
|
|
178880
|
-
* A key-value pair to associate with a resource.
|
|
178881
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-fleet-tags.html}
|
|
178882
|
-
*/
|
|
178883
|
-
export type RoboMakerFleetTags = Record<string, string>;
|
|
178884
|
-
/**
|
|
178885
|
-
* AWS::RoboMaker::Robot resource creates an AWS RoboMaker Robot.
|
|
178886
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html}
|
|
178887
|
-
*/
|
|
178888
|
-
export type RoboMakerRobotProps = {
|
|
178889
|
-
/**
|
|
178890
|
-
* The target architecture of the robot.
|
|
178891
|
-
*/
|
|
178892
|
-
Architecture: "X86_64" | "ARM64" | "ARMHF";
|
|
178893
|
-
/**
|
|
178894
|
-
* The Amazon Resource Name (ARN) of the fleet.
|
|
178895
|
-
* @minLength `1`
|
|
178896
|
-
* @maxLength `1224`
|
|
178897
|
-
*/
|
|
178898
|
-
Fleet?: string;
|
|
178899
|
-
/**
|
|
178900
|
-
* The Greengrass group id.
|
|
178901
|
-
* @minLength `1`
|
|
178902
|
-
* @maxLength `1224`
|
|
178903
|
-
*/
|
|
178904
|
-
GreengrassGroupId: string;
|
|
178905
|
-
/**
|
|
178906
|
-
* The name for the robot.
|
|
178907
|
-
* @minLength `1`
|
|
178908
|
-
* @maxLength `255`
|
|
178909
|
-
*/
|
|
178910
|
-
Name?: string;
|
|
178911
|
-
/**
|
|
178912
|
-
* A key-value pair to associate with a resource.
|
|
178913
|
-
*/
|
|
178914
|
-
Tags?: RoboMakerRobotTags;
|
|
178915
|
-
};
|
|
178916
|
-
/**
|
|
178917
|
-
* Attribute type definition for `AWS::RoboMaker::Robot`.
|
|
178918
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robot.html#aws-resource-robomaker-robot-return-values}
|
|
178919
|
-
*/
|
|
178920
|
-
export type RoboMakerRobotAttributes = {
|
|
178921
|
-
/**
|
|
178922
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
178923
|
-
*/
|
|
178924
|
-
Arn: string;
|
|
178925
|
-
};
|
|
178926
|
-
/**
|
|
178927
|
-
* Type definition for `AWS::RoboMaker::Robot.Tags`.
|
|
178928
|
-
* A key-value pair to associate with a resource.
|
|
178929
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robot-tags.html}
|
|
178930
|
-
*/
|
|
178931
|
-
export type RoboMakerRobotTags = Record<string, string>;
|
|
178932
|
-
/**
|
|
178933
|
-
* Resource type definition for `AWS::RoboMaker::RobotApplication`.
|
|
178934
|
-
* This schema is for testing purpose only.
|
|
178935
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html}
|
|
178936
|
-
*/
|
|
178937
|
-
export type RoboMakerRobotApplicationProps = {
|
|
178938
|
-
/**
|
|
178939
|
-
* The revision ID of robot application.
|
|
178940
|
-
* @minLength `1`
|
|
178941
|
-
* @maxLength `40`
|
|
178942
|
-
*/
|
|
178943
|
-
CurrentRevisionId?: string;
|
|
178944
|
-
/**
|
|
178945
|
-
* The URI of the Docker image for the robot application.
|
|
178946
|
-
*/
|
|
178947
|
-
Environment?: string;
|
|
178948
|
-
/**
|
|
178949
|
-
* The name of the robot application.
|
|
178950
|
-
* @minLength `1`
|
|
178951
|
-
* @maxLength `255`
|
|
178952
|
-
*/
|
|
178953
|
-
Name?: string;
|
|
178954
|
-
/**
|
|
178955
|
-
* The robot software suite used by the robot application.
|
|
178956
|
-
*/
|
|
178957
|
-
RobotSoftwareSuite: RoboMakerRobotApplicationRobotSoftwareSuite;
|
|
178958
|
-
/**
|
|
178959
|
-
* The sources of the robot application.
|
|
178960
|
-
*/
|
|
178961
|
-
Sources?: RoboMakerRobotApplicationSourceConfig[];
|
|
178962
|
-
/**
|
|
178963
|
-
* A key-value pair to associate with a resource.
|
|
178964
|
-
*/
|
|
178965
|
-
Tags?: RoboMakerRobotApplicationTags;
|
|
178966
|
-
};
|
|
178967
|
-
/**
|
|
178968
|
-
* Attribute type definition for `AWS::RoboMaker::RobotApplication`.
|
|
178969
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplication.html#aws-resource-robomaker-robotapplication-return-values}
|
|
178970
|
-
*/
|
|
178971
|
-
export type RoboMakerRobotApplicationAttributes = {
|
|
178972
|
-
/**
|
|
178973
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
178974
|
-
*/
|
|
178975
|
-
Arn: string;
|
|
178976
|
-
};
|
|
178977
|
-
/**
|
|
178978
|
-
* Type definition for `AWS::RoboMaker::RobotApplication.RobotSoftwareSuite`.
|
|
178979
|
-
* The robot software suite used by the robot application.
|
|
178980
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-robotsoftwaresuite.html}
|
|
178981
|
-
*/
|
|
178982
|
-
export type RoboMakerRobotApplicationRobotSoftwareSuite = {
|
|
178983
|
-
/**
|
|
178984
|
-
* The name of robot software suite.
|
|
178985
|
-
*/
|
|
178986
|
-
Name: "ROS" | "ROS2" | "General";
|
|
178987
|
-
/**
|
|
178988
|
-
* The version of robot software suite.
|
|
178989
|
-
*/
|
|
178990
|
-
Version?: "Kinetic" | "Melodic" | "Dashing";
|
|
178991
|
-
};
|
|
178992
|
-
/**
|
|
178993
|
-
* Type definition for `AWS::RoboMaker::RobotApplication.SourceConfig`.
|
|
178994
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-sourceconfig.html}
|
|
178995
|
-
*/
|
|
178996
|
-
export type RoboMakerRobotApplicationSourceConfig = {
|
|
178997
|
-
/**
|
|
178998
|
-
* The architecture of robot application.
|
|
178999
|
-
* @minLength `1`
|
|
179000
|
-
* @maxLength `255`
|
|
179001
|
-
*/
|
|
179002
|
-
Architecture: "X86_64" | "ARM64" | "ARMHF";
|
|
179003
|
-
/**
|
|
179004
|
-
* The Arn of the S3Bucket that stores the robot application source.
|
|
179005
|
-
*/
|
|
179006
|
-
S3Bucket: string;
|
|
179007
|
-
/**
|
|
179008
|
-
* The s3 key of robot application source.
|
|
179009
|
-
*/
|
|
179010
|
-
S3Key: string;
|
|
179011
|
-
};
|
|
179012
|
-
/**
|
|
179013
|
-
* Type definition for `AWS::RoboMaker::RobotApplication.Tags`.
|
|
179014
|
-
* A key-value pair to associate with a resource.
|
|
179015
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-robotapplication-tags.html}
|
|
179016
|
-
*/
|
|
179017
|
-
export type RoboMakerRobotApplicationTags = Record<string, string>;
|
|
179018
|
-
/**
|
|
179019
|
-
* AWS::RoboMaker::RobotApplicationVersion resource creates an AWS RoboMaker RobotApplicationVersion. This helps you control which code your robot uses.
|
|
179020
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html}
|
|
179021
|
-
*/
|
|
179022
|
-
export type RoboMakerRobotApplicationVersionProps = {
|
|
179023
|
-
/**
|
|
179024
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
179025
|
-
*/
|
|
179026
|
-
Application: string;
|
|
179027
|
-
/**
|
|
179028
|
-
* The revision ID of robot application.
|
|
179029
|
-
* @minLength `1`
|
|
179030
|
-
* @maxLength `40`
|
|
179031
|
-
* @pattern `[a-zA-Z0-9_.\-]*`
|
|
179032
|
-
*/
|
|
179033
|
-
CurrentRevisionId?: string;
|
|
179034
|
-
};
|
|
179035
|
-
/**
|
|
179036
|
-
* Attribute type definition for `AWS::RoboMaker::RobotApplicationVersion`.
|
|
179037
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-robotapplicationversion.html#aws-resource-robomaker-robotapplicationversion-return-values}
|
|
179038
|
-
*/
|
|
179039
|
-
export type RoboMakerRobotApplicationVersionAttributes = {
|
|
179040
|
-
ApplicationVersion: string;
|
|
179041
|
-
/**
|
|
179042
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
179043
|
-
*/
|
|
179044
|
-
Arn: string;
|
|
179045
|
-
};
|
|
179046
|
-
/**
|
|
179047
|
-
* Resource type definition for `AWS::RoboMaker::SimulationApplication`.
|
|
179048
|
-
* This schema is for testing purpose only.
|
|
179049
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html}
|
|
179050
|
-
*/
|
|
179051
|
-
export type RoboMakerSimulationApplicationProps = {
|
|
179052
|
-
/**
|
|
179053
|
-
* The current revision id.
|
|
179054
|
-
*/
|
|
179055
|
-
CurrentRevisionId?: string;
|
|
179056
|
-
/**
|
|
179057
|
-
* The URI of the Docker image for the robot application.
|
|
179058
|
-
*/
|
|
179059
|
-
Environment?: string;
|
|
179060
|
-
/**
|
|
179061
|
-
* The name of the simulation application.
|
|
179062
|
-
* @minLength `1`
|
|
179063
|
-
* @maxLength `255`
|
|
179064
|
-
* @pattern `[a-zA-Z0-9_\-]*`
|
|
179065
|
-
*/
|
|
179066
|
-
Name?: string;
|
|
179067
|
-
/**
|
|
179068
|
-
* The rendering engine for the simulation application.
|
|
179069
|
-
*/
|
|
179070
|
-
RenderingEngine?: RoboMakerSimulationApplicationRenderingEngine;
|
|
179071
|
-
/**
|
|
179072
|
-
* The robot software suite used by the simulation application.
|
|
179073
|
-
*/
|
|
179074
|
-
RobotSoftwareSuite: RoboMakerSimulationApplicationRobotSoftwareSuite;
|
|
179075
|
-
/**
|
|
179076
|
-
* The simulation software suite used by the simulation application.
|
|
179077
|
-
*/
|
|
179078
|
-
SimulationSoftwareSuite: RoboMakerSimulationApplicationSimulationSoftwareSuite;
|
|
179079
|
-
/**
|
|
179080
|
-
* The sources of the simulation application.
|
|
179081
|
-
*/
|
|
179082
|
-
Sources?: RoboMakerSimulationApplicationSourceConfig[];
|
|
179083
|
-
/**
|
|
179084
|
-
* A key-value pair to associate with a resource.
|
|
179085
|
-
*/
|
|
179086
|
-
Tags?: RoboMakerSimulationApplicationTags;
|
|
179087
|
-
};
|
|
179088
|
-
/**
|
|
179089
|
-
* Attribute type definition for `AWS::RoboMaker::SimulationApplication`.
|
|
179090
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplication.html#aws-resource-robomaker-simulationapplication-return-values}
|
|
179091
|
-
*/
|
|
179092
|
-
export type RoboMakerSimulationApplicationAttributes = {
|
|
179093
|
-
/**
|
|
179094
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
179095
|
-
*/
|
|
179096
|
-
Arn: string;
|
|
179097
|
-
};
|
|
179098
|
-
/**
|
|
179099
|
-
* Type definition for `AWS::RoboMaker::SimulationApplication.RenderingEngine`.
|
|
179100
|
-
* Information about a rendering engine.
|
|
179101
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-renderingengine.html}
|
|
179102
|
-
*/
|
|
179103
|
-
export type RoboMakerSimulationApplicationRenderingEngine = {
|
|
179104
|
-
/**
|
|
179105
|
-
* The name of the rendering engine.
|
|
179106
|
-
*/
|
|
179107
|
-
Name: "OGRE";
|
|
179108
|
-
/**
|
|
179109
|
-
* The version of the rendering engine.
|
|
179110
|
-
* @pattern `1.x`
|
|
179111
|
-
*/
|
|
179112
|
-
Version: string;
|
|
179113
|
-
};
|
|
179114
|
-
/**
|
|
179115
|
-
* Type definition for `AWS::RoboMaker::SimulationApplication.RobotSoftwareSuite`.
|
|
179116
|
-
* Information about a robot software suite.
|
|
179117
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-robotsoftwaresuite.html}
|
|
179118
|
-
*/
|
|
179119
|
-
export type RoboMakerSimulationApplicationRobotSoftwareSuite = {
|
|
179120
|
-
/**
|
|
179121
|
-
* The name of the robot software suite.
|
|
179122
|
-
*/
|
|
179123
|
-
Name: "ROS" | "ROS2" | "General";
|
|
179124
|
-
/**
|
|
179125
|
-
* The version of the robot software suite.
|
|
179126
|
-
*/
|
|
179127
|
-
Version?: "Kinetic" | "Melodic" | "Dashing" | "Foxy";
|
|
179128
|
-
};
|
|
179129
|
-
/**
|
|
179130
|
-
* Type definition for `AWS::RoboMaker::SimulationApplication.SimulationSoftwareSuite`.
|
|
179131
|
-
* Information about a simulation software suite.
|
|
179132
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-simulationsoftwaresuite.html}
|
|
179133
|
-
*/
|
|
179134
|
-
export type RoboMakerSimulationApplicationSimulationSoftwareSuite = {
|
|
179135
|
-
/**
|
|
179136
|
-
* The name of the simulation software suite.
|
|
179137
|
-
*/
|
|
179138
|
-
Name: "Gazebo" | "RosbagPlay" | "SimulationRuntime";
|
|
179139
|
-
/**
|
|
179140
|
-
* The version of the simulation software suite.
|
|
179141
|
-
*/
|
|
179142
|
-
Version?: "7" | "9" | "11" | "Kinetic" | "Melodic" | "Dashing" | "Foxy";
|
|
179143
|
-
};
|
|
179144
|
-
/**
|
|
179145
|
-
* Type definition for `AWS::RoboMaker::SimulationApplication.SourceConfig`.
|
|
179146
|
-
* Information about a source configuration.
|
|
179147
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-sourceconfig.html}
|
|
179148
|
-
*/
|
|
179149
|
-
export type RoboMakerSimulationApplicationSourceConfig = {
|
|
179150
|
-
/**
|
|
179151
|
-
* The target processor architecture for the application.
|
|
179152
|
-
*/
|
|
179153
|
-
Architecture: "X86_64" | "ARM64" | "ARMHF";
|
|
179154
|
-
/**
|
|
179155
|
-
* The Amazon S3 bucket name.
|
|
179156
|
-
* @pattern `[a-z0-9][a-z0-9.\-]*[a-z0-9]`
|
|
179157
|
-
*/
|
|
179158
|
-
S3Bucket: string;
|
|
179159
|
-
/**
|
|
179160
|
-
* The s3 object key.
|
|
179161
|
-
* @minLength `1`
|
|
179162
|
-
* @maxLength `1024`
|
|
179163
|
-
*/
|
|
179164
|
-
S3Key: string;
|
|
179165
|
-
};
|
|
179166
|
-
/**
|
|
179167
|
-
* Type definition for `AWS::RoboMaker::SimulationApplication.Tags`.
|
|
179168
|
-
* A key-value pair to associate with a resource.
|
|
179169
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-robomaker-simulationapplication-tags.html}
|
|
179170
|
-
*/
|
|
179171
|
-
export type RoboMakerSimulationApplicationTags = Record<string, string>;
|
|
179172
|
-
/**
|
|
179173
|
-
* AWS::RoboMaker::SimulationApplicationVersion resource creates an AWS RoboMaker SimulationApplicationVersion. This helps you control which code your simulation uses.
|
|
179174
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html}
|
|
179175
|
-
*/
|
|
179176
|
-
export type RoboMakerSimulationApplicationVersionProps = {
|
|
179177
|
-
/**
|
|
179178
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
179179
|
-
*/
|
|
179180
|
-
Application: string;
|
|
179181
|
-
/**
|
|
179182
|
-
* The revision ID of robot application.
|
|
179183
|
-
* @minLength `1`
|
|
179184
|
-
* @maxLength `40`
|
|
179185
|
-
* @pattern `[a-zA-Z0-9_.\-]*`
|
|
179186
|
-
*/
|
|
179187
|
-
CurrentRevisionId?: string;
|
|
179188
|
-
};
|
|
179189
|
-
/**
|
|
179190
|
-
* Attribute type definition for `AWS::RoboMaker::SimulationApplicationVersion`.
|
|
179191
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-robomaker-simulationapplicationversion.html#aws-resource-robomaker-simulationapplicationversion-return-values}
|
|
179192
|
-
*/
|
|
179193
|
-
export type RoboMakerSimulationApplicationVersionAttributes = {
|
|
179194
|
-
ApplicationVersion: string;
|
|
179195
|
-
/**
|
|
179196
|
-
* @pattern `arn:[\w+=/,.@-]+:[\w+=/,.@-]+:[\w+=/,.@-]*:[0-9]*:[\w+=,.@-]+(/[\w+=,.@-]+)*`
|
|
179197
|
-
*/
|
|
179198
|
-
Arn: string;
|
|
179199
|
-
};
|
|
179200
178979
|
/**
|
|
179201
178980
|
* Definition of AWS::RolesAnywhere::CRL Resource Type
|
|
179202
178981
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rolesanywhere-crl.html}
|
|
@@ -179607,6 +179386,7 @@ export type Route53HostedZoneProps = {
|
|
|
179607
179386
|
If you don't want to specify a comment, omit the ``HostedZoneConfig`` and ``Comment`` elements.
|
|
179608
179387
|
*/
|
|
179609
179388
|
HostedZoneConfig?: Route53HostedZoneHostedZoneConfig;
|
|
179389
|
+
HostedZoneFeatures?: Route53HostedZoneHostedZoneFeatures;
|
|
179610
179390
|
/**
|
|
179611
179391
|
* Adds, edits, or deletes tags for a health check or a hosted zone.
|
|
179612
179392
|
For information about using tags for cost allocation, see [Using Cost Allocation Tags](https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html) in the *User Guide*.
|
|
@@ -179655,6 +179435,16 @@ export type Route53HostedZoneHostedZoneConfig = {
|
|
|
179655
179435
|
*/
|
|
179656
179436
|
Comment?: string;
|
|
179657
179437
|
};
|
|
179438
|
+
/**
|
|
179439
|
+
* Type definition for `AWS::Route53::HostedZone.HostedZoneFeatures`.
|
|
179440
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonefeatures.html}
|
|
179441
|
+
*/
|
|
179442
|
+
export type Route53HostedZoneHostedZoneFeatures = {
|
|
179443
|
+
/**
|
|
179444
|
+
* Enable accelerated recovery on your public hosted zone to gain the ability to make changes to DNS records in the event of us-east-1 unavailability.
|
|
179445
|
+
*/
|
|
179446
|
+
EnableAcceleratedRecovery?: boolean;
|
|
179447
|
+
};
|
|
179658
179448
|
/**
|
|
179659
179449
|
* Type definition for `AWS::Route53::HostedZone.HostedZoneTag`.
|
|
179660
179450
|
* A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
|
|
@@ -186233,6 +186023,10 @@ export type S3VectorsIndexProps = {
|
|
|
186233
186023
|
* The distance metric to be used for similarity search.
|
|
186234
186024
|
*/
|
|
186235
186025
|
DistanceMetric: S3VectorsIndexDistanceMetric;
|
|
186026
|
+
/**
|
|
186027
|
+
* The encryption configuration for the index.
|
|
186028
|
+
*/
|
|
186029
|
+
EncryptionConfiguration?: S3VectorsIndexEncryptionConfiguration;
|
|
186236
186030
|
/**
|
|
186237
186031
|
* The name of the vector index to create.
|
|
186238
186032
|
* @minLength `3`
|
|
@@ -186280,6 +186074,24 @@ export type S3VectorsIndexDataType = "float32";
|
|
|
186280
186074
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-distancemetric.html}
|
|
186281
186075
|
*/
|
|
186282
186076
|
export type S3VectorsIndexDistanceMetric = "cosine" | "euclidean";
|
|
186077
|
+
/**
|
|
186078
|
+
* Type definition for `AWS::S3Vectors::Index.EncryptionConfiguration`.
|
|
186079
|
+
* The encryption configuration for the index.
|
|
186080
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-encryptionconfiguration.html}
|
|
186081
|
+
*/
|
|
186082
|
+
export type S3VectorsIndexEncryptionConfiguration = {
|
|
186083
|
+
/**
|
|
186084
|
+
* AWS Key Management Service (KMS) customer managed key ID to use for the encryption configuration. This parameter is allowed if and only if sseType is set to aws:kms
|
|
186085
|
+
* @minLength `1`
|
|
186086
|
+
* @maxLength `2048`
|
|
186087
|
+
* @pattern `^(arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]{12}:key/.+)$`
|
|
186088
|
+
*/
|
|
186089
|
+
KmsKeyArn?: string;
|
|
186090
|
+
/**
|
|
186091
|
+
* Defines the server-side encryption type for index encryption configuration. Defaults to the parent vector bucket's encryption settings when unspecified.
|
|
186092
|
+
*/
|
|
186093
|
+
SseType?: "AES256" | "aws:kms";
|
|
186094
|
+
};
|
|
186283
186095
|
/**
|
|
186284
186096
|
* Type definition for `AWS::S3Vectors::Index.MetadataConfiguration`.
|
|
186285
186097
|
* The metadata configuration for the vector index.
|
|
@@ -208095,6 +207907,11 @@ export type TransferConnectorAttributes = {
|
|
|
208095
207907
|
* @pattern `^c-([0-9a-f]{17})$`
|
|
208096
207908
|
*/
|
|
208097
207909
|
ConnectorId: string;
|
|
207910
|
+
/**
|
|
207911
|
+
* Detailed error message when Connector in ERRORED status
|
|
207912
|
+
* @maxLength `2048`
|
|
207913
|
+
*/
|
|
207914
|
+
ErrorMessage: string;
|
|
208098
207915
|
/**
|
|
208099
207916
|
* The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
|
|
208100
207917
|
*/
|
|
@@ -218622,6 +218439,7 @@ export interface ResourceTypes {
|
|
|
218622
218439
|
"AWS::Connect::UserHierarchyStructure": ConnectUserHierarchyStructureProps;
|
|
218623
218440
|
"AWS::Connect::View": ConnectViewProps;
|
|
218624
218441
|
"AWS::Connect::ViewVersion": ConnectViewVersionProps;
|
|
218442
|
+
"AWS::Connect::Workspace": ConnectWorkspaceProps;
|
|
218625
218443
|
"AWS::ConnectCampaigns::Campaign": ConnectCampaignsCampaignProps;
|
|
218626
218444
|
"AWS::ConnectCampaignsV2::Campaign": ConnectCampaignsV2CampaignProps;
|
|
218627
218445
|
"AWS::ControlTower::EnabledBaseline": ControlTowerEnabledBaselineProps;
|
|
@@ -219078,7 +218896,6 @@ export interface ResourceTypes {
|
|
|
219078
218896
|
"AWS::IoTEvents::AlarmModel": IoTEventsAlarmModelProps;
|
|
219079
218897
|
"AWS::IoTEvents::DetectorModel": IoTEventsDetectorModelProps;
|
|
219080
218898
|
"AWS::IoTEvents::Input": IoTEventsInputProps;
|
|
219081
|
-
"AWS::IoTFleetHub::Application": IoTFleetHubApplicationProps;
|
|
219082
218899
|
"AWS::IoTFleetWise::Campaign": IoTFleetWiseCampaignProps;
|
|
219083
218900
|
"AWS::IoTFleetWise::DecoderManifest": IoTFleetWiseDecoderManifestProps;
|
|
219084
218901
|
"AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetProps;
|
|
@@ -219208,8 +219025,6 @@ export interface ResourceTypes {
|
|
|
219208
219025
|
"AWS::Logs::SubscriptionFilter": LogsSubscriptionFilterProps;
|
|
219209
219026
|
"AWS::Logs::Transformer": LogsTransformerProps;
|
|
219210
219027
|
"AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerProps;
|
|
219211
|
-
"AWS::LookoutMetrics::Alert": LookoutMetricsAlertProps;
|
|
219212
|
-
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorProps;
|
|
219213
219028
|
"AWS::LookoutVision::Project": LookoutVisionProjectProps;
|
|
219214
219029
|
"AWS::M2::Application": M2ApplicationProps;
|
|
219215
219030
|
"AWS::M2::Deployment": M2DeploymentProps;
|
|
@@ -219300,6 +219115,7 @@ export interface ResourceTypes {
|
|
|
219300
219115
|
"AWS::NetworkManager::ConnectAttachment": NetworkManagerConnectAttachmentProps;
|
|
219301
219116
|
"AWS::NetworkManager::ConnectPeer": NetworkManagerConnectPeerProps;
|
|
219302
219117
|
"AWS::NetworkManager::CoreNetwork": NetworkManagerCoreNetworkProps;
|
|
219118
|
+
"AWS::NetworkManager::CoreNetworkPrefixListAssociation": NetworkManagerCoreNetworkPrefixListAssociationProps;
|
|
219303
219119
|
"AWS::NetworkManager::CustomerGatewayAssociation": NetworkManagerCustomerGatewayAssociationProps;
|
|
219304
219120
|
"AWS::NetworkManager::Device": NetworkManagerDeviceProps;
|
|
219305
219121
|
"AWS::NetworkManager::DirectConnectGatewayAttachment": NetworkManagerDirectConnectGatewayAttachmentProps;
|
|
@@ -219474,12 +219290,6 @@ export interface ResourceTypes {
|
|
|
219474
219290
|
"AWS::ResourceExplorer2::View": ResourceExplorer2ViewProps;
|
|
219475
219291
|
"AWS::ResourceGroups::Group": ResourceGroupsGroupProps;
|
|
219476
219292
|
"AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskProps;
|
|
219477
|
-
"AWS::RoboMaker::Fleet": RoboMakerFleetProps;
|
|
219478
|
-
"AWS::RoboMaker::Robot": RoboMakerRobotProps;
|
|
219479
|
-
"AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationProps;
|
|
219480
|
-
"AWS::RoboMaker::RobotApplicationVersion": RoboMakerRobotApplicationVersionProps;
|
|
219481
|
-
"AWS::RoboMaker::SimulationApplication": RoboMakerSimulationApplicationProps;
|
|
219482
|
-
"AWS::RoboMaker::SimulationApplicationVersion": RoboMakerSimulationApplicationVersionProps;
|
|
219483
219293
|
"AWS::RolesAnywhere::CRL": RolesAnywhereCRLProps;
|
|
219484
219294
|
"AWS::RolesAnywhere::Profile": RolesAnywhereProfileProps;
|
|
219485
219295
|
"AWS::RolesAnywhere::TrustAnchor": RolesAnywhereTrustAnchorProps;
|
|
@@ -220091,6 +219901,7 @@ export interface AttributeTypes {
|
|
|
220091
219901
|
"AWS::Connect::UserHierarchyStructure": ConnectUserHierarchyStructureAttributes;
|
|
220092
219902
|
"AWS::Connect::View": ConnectViewAttributes;
|
|
220093
219903
|
"AWS::Connect::ViewVersion": ConnectViewVersionAttributes;
|
|
219904
|
+
"AWS::Connect::Workspace": ConnectWorkspaceAttributes;
|
|
220094
219905
|
"AWS::ConnectCampaigns::Campaign": ConnectCampaignsCampaignAttributes;
|
|
220095
219906
|
"AWS::ConnectCampaignsV2::Campaign": ConnectCampaignsV2CampaignAttributes;
|
|
220096
219907
|
"AWS::ControlTower::EnabledBaseline": ControlTowerEnabledBaselineAttributes;
|
|
@@ -220495,7 +220306,6 @@ export interface AttributeTypes {
|
|
|
220495
220306
|
"AWS::IoTAnalytics::Datastore": IoTAnalyticsDatastoreAttributes;
|
|
220496
220307
|
"AWS::IoTAnalytics::Pipeline": IoTAnalyticsPipelineAttributes;
|
|
220497
220308
|
"AWS::IoTCoreDeviceAdvisor::SuiteDefinition": IoTCoreDeviceAdvisorSuiteDefinitionAttributes;
|
|
220498
|
-
"AWS::IoTFleetHub::Application": IoTFleetHubApplicationAttributes;
|
|
220499
220309
|
"AWS::IoTFleetWise::Campaign": IoTFleetWiseCampaignAttributes;
|
|
220500
220310
|
"AWS::IoTFleetWise::DecoderManifest": IoTFleetWiseDecoderManifestAttributes;
|
|
220501
220311
|
"AWS::IoTFleetWise::Fleet": IoTFleetWiseFleetAttributes;
|
|
@@ -220613,8 +220423,6 @@ export interface AttributeTypes {
|
|
|
220613
220423
|
"AWS::Logs::LogGroup": LogsLogGroupAttributes;
|
|
220614
220424
|
"AWS::Logs::QueryDefinition": LogsQueryDefinitionAttributes;
|
|
220615
220425
|
"AWS::LookoutEquipment::InferenceScheduler": LookoutEquipmentInferenceSchedulerAttributes;
|
|
220616
|
-
"AWS::LookoutMetrics::Alert": LookoutMetricsAlertAttributes;
|
|
220617
|
-
"AWS::LookoutMetrics::AnomalyDetector": LookoutMetricsAnomalyDetectorAttributes;
|
|
220618
220426
|
"AWS::LookoutVision::Project": LookoutVisionProjectAttributes;
|
|
220619
220427
|
"AWS::M2::Application": M2ApplicationAttributes;
|
|
220620
220428
|
"AWS::M2::Deployment": M2DeploymentAttributes;
|
|
@@ -220848,12 +220656,6 @@ export interface AttributeTypes {
|
|
|
220848
220656
|
"AWS::ResourceExplorer2::View": ResourceExplorer2ViewAttributes;
|
|
220849
220657
|
"AWS::ResourceGroups::Group": ResourceGroupsGroupAttributes;
|
|
220850
220658
|
"AWS::ResourceGroups::TagSyncTask": ResourceGroupsTagSyncTaskAttributes;
|
|
220851
|
-
"AWS::RoboMaker::Fleet": RoboMakerFleetAttributes;
|
|
220852
|
-
"AWS::RoboMaker::Robot": RoboMakerRobotAttributes;
|
|
220853
|
-
"AWS::RoboMaker::RobotApplication": RoboMakerRobotApplicationAttributes;
|
|
220854
|
-
"AWS::RoboMaker::RobotApplicationVersion": RoboMakerRobotApplicationVersionAttributes;
|
|
220855
|
-
"AWS::RoboMaker::SimulationApplication": RoboMakerSimulationApplicationAttributes;
|
|
220856
|
-
"AWS::RoboMaker::SimulationApplicationVersion": RoboMakerSimulationApplicationVersionAttributes;
|
|
220857
220659
|
"AWS::RolesAnywhere::CRL": RolesAnywhereCRLAttributes;
|
|
220858
220660
|
"AWS::RolesAnywhere::Profile": RolesAnywhereProfileAttributes;
|
|
220859
220661
|
"AWS::RolesAnywhere::TrustAnchor": RolesAnywhereTrustAnchorAttributes;
|
|
@@ -221461,6 +221263,7 @@ export declare const ResourceType: {
|
|
|
221461
221263
|
readonly ConnectUserHierarchyStructure: "AWS::Connect::UserHierarchyStructure";
|
|
221462
221264
|
readonly ConnectView: "AWS::Connect::View";
|
|
221463
221265
|
readonly ConnectViewVersion: "AWS::Connect::ViewVersion";
|
|
221266
|
+
readonly ConnectWorkspace: "AWS::Connect::Workspace";
|
|
221464
221267
|
readonly ConnectCampaignsCampaign: "AWS::ConnectCampaigns::Campaign";
|
|
221465
221268
|
readonly ConnectCampaignsV2Campaign: "AWS::ConnectCampaignsV2::Campaign";
|
|
221466
221269
|
readonly ControlTowerEnabledBaseline: "AWS::ControlTower::EnabledBaseline";
|
|
@@ -221917,7 +221720,6 @@ export declare const ResourceType: {
|
|
|
221917
221720
|
readonly IoTEventsAlarmModel: "AWS::IoTEvents::AlarmModel";
|
|
221918
221721
|
readonly IoTEventsDetectorModel: "AWS::IoTEvents::DetectorModel";
|
|
221919
221722
|
readonly IoTEventsInput: "AWS::IoTEvents::Input";
|
|
221920
|
-
readonly IoTFleetHubApplication: "AWS::IoTFleetHub::Application";
|
|
221921
221723
|
readonly IoTFleetWiseCampaign: "AWS::IoTFleetWise::Campaign";
|
|
221922
221724
|
readonly IoTFleetWiseDecoderManifest: "AWS::IoTFleetWise::DecoderManifest";
|
|
221923
221725
|
readonly IoTFleetWiseFleet: "AWS::IoTFleetWise::Fleet";
|
|
@@ -222047,8 +221849,6 @@ export declare const ResourceType: {
|
|
|
222047
221849
|
readonly LogsSubscriptionFilter: "AWS::Logs::SubscriptionFilter";
|
|
222048
221850
|
readonly LogsTransformer: "AWS::Logs::Transformer";
|
|
222049
221851
|
readonly LookoutEquipmentInferenceScheduler: "AWS::LookoutEquipment::InferenceScheduler";
|
|
222050
|
-
readonly LookoutMetricsAlert: "AWS::LookoutMetrics::Alert";
|
|
222051
|
-
readonly LookoutMetricsAnomalyDetector: "AWS::LookoutMetrics::AnomalyDetector";
|
|
222052
221852
|
readonly LookoutVisionProject: "AWS::LookoutVision::Project";
|
|
222053
221853
|
readonly M2Application: "AWS::M2::Application";
|
|
222054
221854
|
readonly M2Deployment: "AWS::M2::Deployment";
|
|
@@ -222139,6 +221939,7 @@ export declare const ResourceType: {
|
|
|
222139
221939
|
readonly NetworkManagerConnectAttachment: "AWS::NetworkManager::ConnectAttachment";
|
|
222140
221940
|
readonly NetworkManagerConnectPeer: "AWS::NetworkManager::ConnectPeer";
|
|
222141
221941
|
readonly NetworkManagerCoreNetwork: "AWS::NetworkManager::CoreNetwork";
|
|
221942
|
+
readonly NetworkManagerCoreNetworkPrefixListAssociation: "AWS::NetworkManager::CoreNetworkPrefixListAssociation";
|
|
222142
221943
|
readonly NetworkManagerCustomerGatewayAssociation: "AWS::NetworkManager::CustomerGatewayAssociation";
|
|
222143
221944
|
readonly NetworkManagerDevice: "AWS::NetworkManager::Device";
|
|
222144
221945
|
readonly NetworkManagerDirectConnectGatewayAttachment: "AWS::NetworkManager::DirectConnectGatewayAttachment";
|
|
@@ -222313,12 +222114,6 @@ export declare const ResourceType: {
|
|
|
222313
222114
|
readonly ResourceExplorer2View: "AWS::ResourceExplorer2::View";
|
|
222314
222115
|
readonly ResourceGroupsGroup: "AWS::ResourceGroups::Group";
|
|
222315
222116
|
readonly ResourceGroupsTagSyncTask: "AWS::ResourceGroups::TagSyncTask";
|
|
222316
|
-
readonly RoboMakerFleet: "AWS::RoboMaker::Fleet";
|
|
222317
|
-
readonly RoboMakerRobot: "AWS::RoboMaker::Robot";
|
|
222318
|
-
readonly RoboMakerRobotApplication: "AWS::RoboMaker::RobotApplication";
|
|
222319
|
-
readonly RoboMakerRobotApplicationVersion: "AWS::RoboMaker::RobotApplicationVersion";
|
|
222320
|
-
readonly RoboMakerSimulationApplication: "AWS::RoboMaker::SimulationApplication";
|
|
222321
|
-
readonly RoboMakerSimulationApplicationVersion: "AWS::RoboMaker::SimulationApplicationVersion";
|
|
222322
222117
|
readonly RolesAnywhereCRL: "AWS::RolesAnywhere::CRL";
|
|
222323
222118
|
readonly RolesAnywhereProfile: "AWS::RolesAnywhere::Profile";
|
|
222324
222119
|
readonly RolesAnywhereTrustAnchor: "AWS::RolesAnywhere::TrustAnchor";
|