@awboost/cfn-resource-types 0.1.495 → 0.1.497

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.
@@ -34,6 +34,10 @@ export type BedrockDataAutomationProjectProperties = {
34
34
  * @pattern `^[a-zA-Z0-9-_]+$`
35
35
  */
36
36
  ProjectName: string;
37
+ /**
38
+ * Type of the DataAutomationProject - Sync or Async
39
+ */
40
+ ProjectType?: "ASYNC" | "SYNC";
37
41
  /**
38
42
  * Standard output configuration
39
43
  */
@@ -112,6 +116,7 @@ export type AudioLanguageConfiguration = {
112
116
  export type AudioOverrideConfiguration = {
113
117
  LanguageConfiguration?: AudioLanguageConfiguration;
114
118
  ModalityProcessing?: ModalityProcessingConfiguration;
119
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
115
120
  };
116
121
  /**
117
122
  * Type definition for `AWS::Bedrock::DataAutomationProject.AudioStandardExtraction`.
@@ -253,6 +258,7 @@ export type DocumentOutputTextFormatType = "PLAIN_TEXT" | "MARKDOWN" | "HTML" |
253
258
  */
254
259
  export type DocumentOverrideConfiguration = {
255
260
  ModalityProcessing?: ModalityProcessingConfiguration;
261
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
256
262
  Splitter?: SplitterConfiguration;
257
263
  };
258
264
  /**
@@ -305,6 +311,7 @@ export type ImageExtractionCategoryType = "CONTENT_MODERATION" | "TEXT_DETECTION
305
311
  */
306
312
  export type ImageOverrideConfiguration = {
307
313
  ModalityProcessing?: ModalityProcessingConfiguration;
314
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
308
315
  };
309
316
  /**
310
317
  * Type definition for `AWS::Bedrock::DataAutomationProject.ImageStandardExtraction`.
@@ -373,6 +380,43 @@ export type OverrideConfiguration = {
373
380
  ModalityRouting?: ModalityRoutingConfiguration;
374
381
  Video?: VideoOverrideConfiguration;
375
382
  };
383
+ /**
384
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntitiesConfiguration`.
385
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitiesconfiguration.html}
386
+ */
387
+ export type PIIEntitiesConfiguration = {
388
+ PiiEntityTypes?: PIIEntityTypes[];
389
+ RedactionMaskMode?: PIIRedactionMaskMode;
390
+ };
391
+ /**
392
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIEntityTypes`.
393
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piientitytypes.html}
394
+ */
395
+ export type PIIEntityTypes = "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";
396
+ /**
397
+ * Type definition for `AWS::Bedrock::DataAutomationProject.PIIRedactionMaskMode`.
398
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-piiredactionmaskmode.html}
399
+ */
400
+ export type PIIRedactionMaskMode = "PII" | "ENTITY_TYPE";
401
+ /**
402
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataConfiguration`.
403
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedataconfiguration.html}
404
+ */
405
+ export type SensitiveDataConfiguration = {
406
+ DetectionMode?: SensitiveDataDetectionMode;
407
+ DetectionScope?: SensitiveDataDetectionScope[];
408
+ PiiEntitiesConfiguration?: PIIEntitiesConfiguration;
409
+ };
410
+ /**
411
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionMode`.
412
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionmode.html}
413
+ */
414
+ export type SensitiveDataDetectionMode = "DETECTION" | "DETECTION_AND_REDACTION";
415
+ /**
416
+ * Type definition for `AWS::Bedrock::DataAutomationProject.SensitiveDataDetectionScope`.
417
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-sensitivedatadetectionscope.html}
418
+ */
419
+ export type SensitiveDataDetectionScope = "STANDARD" | "CUSTOM";
376
420
  /**
377
421
  * Type definition for `AWS::Bedrock::DataAutomationProject.SpeakerLabelingConfiguration`.
378
422
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-dataautomationproject-speakerlabelingconfiguration.html}
@@ -458,6 +502,7 @@ export type VideoExtractionCategoryType = "CONTENT_MODERATION" | "TEXT_DETECTION
458
502
  */
459
503
  export type VideoOverrideConfiguration = {
460
504
  ModalityProcessing?: ModalityProcessingConfiguration;
505
+ SensitiveDataConfiguration?: SensitiveDataConfiguration;
461
506
  };
462
507
  /**
463
508
  * Type definition for `AWS::Bedrock::DataAutomationProject.VideoStandardExtraction`.
@@ -70,12 +70,42 @@ export type BedrockKnowledgeBaseAttributes = {
70
70
  */
71
71
  UpdatedAt: string;
72
72
  };
73
+ /**
74
+ * Type definition for `AWS::Bedrock::KnowledgeBase.AudioConfiguration`.
75
+ * Configure the audio configuration for multi modal ingestion.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audioconfiguration.html}
77
+ */
78
+ export type AudioConfiguration = {
79
+ /**
80
+ * Configure the audio segmentation configuration for multi modal ingestion.
81
+ */
82
+ SegmentationConfiguration: AudioSegmentationConfiguration;
83
+ };
84
+ /**
85
+ * Type definition for `AWS::Bedrock::KnowledgeBase.AudioSegmentationConfiguration`.
86
+ * Configure the audio segmentation configuration for multi modal ingestion.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-audiosegmentationconfiguration.html}
88
+ */
89
+ export type AudioSegmentationConfiguration = {
90
+ /**
91
+ * Duration in seconds to segment the multi modal media
92
+ * @min `1`
93
+ * @max `30`
94
+ */
95
+ FixedLengthDuration: number;
96
+ };
73
97
  /**
74
98
  * Type definition for `AWS::Bedrock::KnowledgeBase.BedrockEmbeddingModelConfiguration`.
75
99
  * The vector configuration details for the Bedrock embeddings model.
76
100
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-bedrockembeddingmodelconfiguration.html}
77
101
  */
78
102
  export type BedrockEmbeddingModelConfiguration = {
103
+ /**
104
+ * List of audio configurations for multi modal ingestion.
105
+ * @minLength `1`
106
+ * @maxLength `1`
107
+ */
108
+ Audio?: AudioConfiguration[];
79
109
  /**
80
110
  * The dimensions details for the vector configuration used on the Bedrock embeddings model.
81
111
  * @min `0`
@@ -86,6 +116,12 @@ export type BedrockEmbeddingModelConfiguration = {
86
116
  * The data type for the vectors when using a model to convert text into vector embeddings.
87
117
  */
88
118
  EmbeddingDataType?: "FLOAT32" | "BINARY";
119
+ /**
120
+ * List of video configurations for multi modal ingestion.
121
+ * @minLength `1`
122
+ * @maxLength `1`
123
+ */
124
+ Video?: VideoConfiguration[];
89
125
  };
90
126
  /**
91
127
  * Type definition for `AWS::Bedrock::KnowledgeBase.CuratedQuery`.
@@ -928,6 +964,30 @@ export type VectorKnowledgeBaseConfiguration = {
928
964
  */
929
965
  SupplementalDataStorageConfiguration?: SupplementalDataStorageConfiguration;
930
966
  };
967
+ /**
968
+ * Type definition for `AWS::Bedrock::KnowledgeBase.VideoConfiguration`.
969
+ * Configure the video configuration for multi modal ingestion.
970
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videoconfiguration.html}
971
+ */
972
+ export type VideoConfiguration = {
973
+ /**
974
+ * Configure the video segmentation configuration for multi modal ingestion.
975
+ */
976
+ SegmentationConfiguration: VideoSegmentationConfiguration;
977
+ };
978
+ /**
979
+ * Type definition for `AWS::Bedrock::KnowledgeBase.VideoSegmentationConfiguration`.
980
+ * Configure the video segmentation configuration for multi modal ingestion.
981
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-knowledgebase-videosegmentationconfiguration.html}
982
+ */
983
+ export type VideoSegmentationConfiguration = {
984
+ /**
985
+ * Duration in seconds to segment the multi modal media
986
+ * @min `1`
987
+ * @max `30`
988
+ */
989
+ FixedLengthDuration: number;
990
+ };
931
991
  /**
932
992
  * Definition of AWS::Bedrock::KnowledgeBase Resource Type
933
993
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrock-knowledgebase.html}
@@ -33,6 +33,7 @@ export type CleanRoomsAnalysisTemplateProperties = {
33
33
  Schema?: AnalysisSchema;
34
34
  Source: AnalysisSource;
35
35
  SourceMetadata?: AnalysisSourceMetadata;
36
+ SyntheticDataParameters?: SyntheticDataParameters;
36
37
  /**
37
38
  * An arbitrary set of tags (key-value pairs) for this cleanrooms analysis template.
38
39
  */
@@ -148,6 +149,17 @@ export type AnalysisTemplateArtifacts = {
148
149
  */
149
150
  RoleArn: string;
150
151
  };
152
+ /**
153
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.ColumnClassificationDetails`.
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-columnclassificationdetails.html}
155
+ */
156
+ export type ColumnClassificationDetails = {
157
+ /**
158
+ * @minLength `5`
159
+ * @maxLength `1000`
160
+ */
161
+ ColumnMapping: SyntheticDataColumnProperties[];
162
+ };
151
163
  /**
152
164
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.ErrorMessageConfiguration`.
153
165
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-errormessageconfiguration.html}
@@ -162,6 +174,23 @@ export type ErrorMessageConfiguration = {
162
174
  export type Hash = {
163
175
  Sha256?: string;
164
176
  };
177
+ /**
178
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.MLSyntheticDataParameters`.
179
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-mlsyntheticdataparameters.html}
180
+ */
181
+ export type MLSyntheticDataParameters = {
182
+ ColumnClassification: ColumnClassificationDetails;
183
+ /**
184
+ * @min `0.0001`
185
+ * @max `10`
186
+ */
187
+ Epsilon: number;
188
+ /**
189
+ * @min `0.5`
190
+ * @max `1`
191
+ */
192
+ MaxMembershipInferenceAttackScore: number;
193
+ };
165
194
  /**
166
195
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.S3Location`.
167
196
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-s3location.html}
@@ -174,6 +203,26 @@ export type S3Location = {
174
203
  Bucket: string;
175
204
  Key: string;
176
205
  };
206
+ /**
207
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataColumnProperties`.
208
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdatacolumnproperties.html}
209
+ */
210
+ export type SyntheticDataColumnProperties = {
211
+ /**
212
+ * @maxLength `128`
213
+ * @pattern `^[a-z0-9_](([a-z0-9_]+-)*([a-z0-9_]+))?$`
214
+ */
215
+ ColumnName: string;
216
+ ColumnType: "CATEGORICAL" | "NUMERICAL";
217
+ IsPredictiveValue: boolean;
218
+ };
219
+ /**
220
+ * Type definition for `AWS::CleanRooms::AnalysisTemplate.SyntheticDataParameters`.
221
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-syntheticdataparameters.html}
222
+ */
223
+ export type SyntheticDataParameters = {
224
+ MlSyntheticDataParameters: MLSyntheticDataParameters;
225
+ };
177
226
  /**
178
227
  * Type definition for `AWS::CleanRooms::AnalysisTemplate.Tag`.
179
228
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-analysistemplate-tag.html}
@@ -141,6 +141,7 @@ export type MLMemberAbilities = {
141
141
  export type MLPaymentConfig = {
142
142
  ModelInference?: ModelInferencePaymentConfig;
143
143
  ModelTraining?: ModelTrainingPaymentConfig;
144
+ SyntheticDataGeneration?: SyntheticDataGenerationPaymentConfig;
144
145
  };
145
146
  /**
146
147
  * Type definition for `AWS::CleanRooms::Collaboration.ModelInferencePaymentConfig`.
@@ -177,6 +178,13 @@ export type QueryComputePaymentConfig = {
177
178
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-supporteds3region.html}
178
179
  */
179
180
  export type SupportedS3Region = "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";
181
+ /**
182
+ * Type definition for `AWS::CleanRooms::Collaboration.SyntheticDataGenerationPaymentConfig`.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-syntheticdatagenerationpaymentconfig.html}
184
+ */
185
+ export type SyntheticDataGenerationPaymentConfig = {
186
+ IsResponsible: boolean;
187
+ };
180
188
  /**
181
189
  * Type definition for `AWS::CleanRooms::Collaboration.Tag`.
182
190
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cleanrooms-collaboration-tag.html}
@@ -11,6 +11,7 @@ export type CloudFrontAnycastIpListProperties = {
11
11
  * The number of IP addresses in the Anycast static IP list.
12
12
  */
13
13
  IpCount: number;
14
+ IpamCidrConfigs?: IpamCidrConfig[];
14
15
  /**
15
16
  * The name of the Anycast static IP list.
16
17
  * @minLength `1`
@@ -49,6 +50,12 @@ export type CloudFrontAnycastIpListAttributes = {
49
50
  * The number of IP addresses in the Anycast static IP list.
50
51
  */
51
52
  IpCount: number;
53
+ IpamCidrConfigResults: {
54
+ AnycastIp: string;
55
+ Cidr: string;
56
+ IpamPoolArn: string;
57
+ Status: string;
58
+ }[];
52
59
  /**
53
60
  * The last time the Anycast static IP list was modified.
54
61
  */
@@ -67,6 +74,12 @@ export type CloudFrontAnycastIpListAttributes = {
67
74
  };
68
75
  ETag: string;
69
76
  Id: string;
77
+ IpamCidrConfigResults: {
78
+ AnycastIp: string;
79
+ Cidr: string;
80
+ IpamPoolArn: string;
81
+ Status: string;
82
+ }[];
70
83
  };
71
84
  /**
72
85
  * Type definition for `AWS::CloudFront::AnycastIpList.AnycastIpList`.
@@ -91,6 +104,7 @@ export type AnycastIpList = {
91
104
  * The number of IP addresses in the Anycast static IP list.
92
105
  */
93
106
  IpCount: number;
107
+ IpamCidrConfigResults?: IpamCidrConfigResult[];
94
108
  /**
95
109
  * The last time the Anycast static IP list was modified.
96
110
  */
@@ -112,6 +126,24 @@ export type AnycastIpList = {
112
126
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipaddresstype.html}
113
127
  */
114
128
  export type IpAddressType = "ipv4" | "dualstack";
129
+ /**
130
+ * Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfig`.
131
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfig.html}
132
+ */
133
+ export type IpamCidrConfig = {
134
+ Cidr: string;
135
+ IpamPoolArn: string;
136
+ };
137
+ /**
138
+ * Type definition for `AWS::CloudFront::AnycastIpList.IpamCidrConfigResult`.
139
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-anycastiplist-ipamcidrconfigresult.html}
140
+ */
141
+ export type IpamCidrConfigResult = {
142
+ AnycastIp?: string;
143
+ Cidr?: string;
144
+ IpamPoolArn?: string;
145
+ Status?: string;
146
+ };
115
147
  /**
116
148
  * Type definition for `AWS::CloudFront::AnycastIpList.Tag`.
117
149
  * A complex type that contains ``Tag`` key and ``Tag`` value.
@@ -0,0 +1,326 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::Connect::Workspace
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
6
+ */
7
+ export type ConnectWorkspaceProperties = {
8
+ /**
9
+ * The resource ARNs associated with the workspace
10
+ */
11
+ Associations?: string[];
12
+ /**
13
+ * The description of the workspace
14
+ * @minLength `0`
15
+ * @maxLength `500`
16
+ * @pattern `^[\P{C}
17
+ ]*$`
18
+ */
19
+ Description?: string;
20
+ /**
21
+ * The identifier of the Amazon Connect instance.
22
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]*$`
23
+ */
24
+ InstanceArn: string;
25
+ /**
26
+ * The media items for the workspace
27
+ * @maxLength `4`
28
+ */
29
+ Media?: MediaItem[];
30
+ /**
31
+ * The name of the workspace.
32
+ * @minLength `1`
33
+ * @maxLength `127`
34
+ * @pattern `.*\S.*`
35
+ */
36
+ Name: string;
37
+ /**
38
+ * The pages associated with the workspace
39
+ */
40
+ Pages?: WorkspacePage[];
41
+ /**
42
+ * An array of key-value pairs to apply to this resource.
43
+ * @maxLength `50`
44
+ */
45
+ Tags?: Tag[];
46
+ /**
47
+ * The theme configuration for the workspace
48
+ */
49
+ Theme?: WorkspaceTheme;
50
+ /**
51
+ * The title of the workspace
52
+ * @minLength `0`
53
+ * @maxLength `127`
54
+ * @pattern `^[\P{C}]*$`
55
+ */
56
+ Title?: string;
57
+ /**
58
+ * The visibility of the workspace. Will always be set to ASSIGNED oninitial creation.
59
+ */
60
+ Visibility?: Visibility;
61
+ };
62
+ /**
63
+ * Attribute type definition for `AWS::Connect::Workspace`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html#aws-resource-connect-workspace-return-values}
65
+ */
66
+ export type ConnectWorkspaceAttributes = {
67
+ /**
68
+ * The Amazon Resource Name (ARN) for the workspace.
69
+ * @pattern `^arn:aws[-a-z0-9]*:connect:[-a-z0-9]*:[0-9]{12}:instance/[-a-zA-Z0-9]/‍*workspace/[-a-zA-Z0-9]*$`
70
+ */
71
+ Arn: string;
72
+ /**
73
+ * The identifier of the workspace.
74
+ * @pattern `^.{0,256}$`
75
+ */
76
+ Id: string;
77
+ };
78
+ /**
79
+ * Type definition for `AWS::Connect::Workspace.FontFamily`.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-fontfamily.html}
81
+ */
82
+ export type FontFamily = {
83
+ Default?: WorkspaceFontFamily;
84
+ };
85
+ /**
86
+ * Type definition for `AWS::Connect::Workspace.MediaItem`.
87
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediaitem.html}
88
+ */
89
+ export type MediaItem = {
90
+ /**
91
+ * @minLength `1`
92
+ * @maxLength `533333`
93
+ * @pattern `.*\S.*`
94
+ */
95
+ Source?: string;
96
+ /**
97
+ * The type of media
98
+ */
99
+ Type: MediaType;
100
+ };
101
+ /**
102
+ * Type definition for `AWS::Connect::Workspace.MediaType`.
103
+ * The type of media
104
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-mediatype.html}
105
+ */
106
+ export type MediaType = "IMAGE_LOGO_LIGHT_FAVICON" | "IMAGE_LOGO_DARK_FAVICON" | "IMAGE_LOGO_LIGHT_HORIZONTAL" | "IMAGE_LOGO_DARK_HORIZONTAL";
107
+ /**
108
+ * Type definition for `AWS::Connect::Workspace.PaletteCanvas`.
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettecanvas.html}
110
+ */
111
+ export type PaletteCanvas = {
112
+ /**
113
+ * @minLength `1`
114
+ * @maxLength `127`
115
+ * @pattern `.*\S.*`
116
+ */
117
+ ActiveBackground?: string;
118
+ /**
119
+ * @minLength `1`
120
+ * @maxLength `127`
121
+ * @pattern `.*\S.*`
122
+ */
123
+ ContainerBackground?: string;
124
+ /**
125
+ * @minLength `1`
126
+ * @maxLength `127`
127
+ * @pattern `.*\S.*`
128
+ */
129
+ PageBackground?: string;
130
+ };
131
+ /**
132
+ * Type definition for `AWS::Connect::Workspace.PaletteHeader`.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteheader.html}
134
+ */
135
+ export type PaletteHeader = {
136
+ /**
137
+ * @minLength `1`
138
+ * @maxLength `127`
139
+ * @pattern `.*\S.*`
140
+ */
141
+ Background?: string;
142
+ InvertActionsColors?: boolean;
143
+ /**
144
+ * @minLength `1`
145
+ * @maxLength `127`
146
+ * @pattern `.*\S.*`
147
+ */
148
+ Text?: string;
149
+ /**
150
+ * @minLength `1`
151
+ * @maxLength `127`
152
+ * @pattern `.*\S.*`
153
+ */
154
+ TextHover?: string;
155
+ };
156
+ /**
157
+ * Type definition for `AWS::Connect::Workspace.PaletteNavigation`.
158
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-palettenavigation.html}
159
+ */
160
+ export type PaletteNavigation = {
161
+ /**
162
+ * @minLength `1`
163
+ * @maxLength `127`
164
+ * @pattern `.*\S.*`
165
+ */
166
+ Background?: string;
167
+ InvertActionsColors?: boolean;
168
+ /**
169
+ * @minLength `1`
170
+ * @maxLength `127`
171
+ * @pattern `.*\S.*`
172
+ */
173
+ Text?: string;
174
+ /**
175
+ * @minLength `1`
176
+ * @maxLength `127`
177
+ * @pattern `.*\S.*`
178
+ */
179
+ TextActive?: string;
180
+ /**
181
+ * @minLength `1`
182
+ * @maxLength `127`
183
+ * @pattern `.*\S.*`
184
+ */
185
+ TextBackgroundActive?: string;
186
+ /**
187
+ * @minLength `1`
188
+ * @maxLength `127`
189
+ * @pattern `.*\S.*`
190
+ */
191
+ TextBackgroundHover?: string;
192
+ /**
193
+ * @minLength `1`
194
+ * @maxLength `127`
195
+ * @pattern `.*\S.*`
196
+ */
197
+ TextHover?: string;
198
+ };
199
+ /**
200
+ * Type definition for `AWS::Connect::Workspace.PalettePrimary`.
201
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-paletteprimary.html}
202
+ */
203
+ export type PalettePrimary = {
204
+ /**
205
+ * @minLength `1`
206
+ * @maxLength `127`
207
+ * @pattern `.*\S.*`
208
+ */
209
+ Active?: string;
210
+ /**
211
+ * @minLength `1`
212
+ * @maxLength `127`
213
+ * @pattern `.*\S.*`
214
+ */
215
+ ContrastText?: string;
216
+ /**
217
+ * @minLength `1`
218
+ * @maxLength `127`
219
+ * @pattern `.*\S.*`
220
+ */
221
+ Default?: string;
222
+ };
223
+ /**
224
+ * Type definition for `AWS::Connect::Workspace.Tag`.
225
+ * A key-value pair to associate with a resource.
226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-tag.html}
227
+ */
228
+ export type Tag = {
229
+ /**
230
+ * 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 -.
231
+ * @minLength `1`
232
+ * @maxLength `128`
233
+ */
234
+ Key: string;
235
+ /**
236
+ * 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 -.
237
+ * @minLength `0`
238
+ * @maxLength `256`
239
+ */
240
+ Value: string;
241
+ };
242
+ /**
243
+ * Type definition for `AWS::Connect::Workspace.Visibility`.
244
+ * The visibility of the Connect workspace
245
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-visibility.html}
246
+ */
247
+ export type Visibility = "ALL" | "ASSIGNED" | "NONE";
248
+ /**
249
+ * Type definition for `AWS::Connect::Workspace.WorkspaceFontFamily`.
250
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacefontfamily.html}
251
+ */
252
+ export type WorkspaceFontFamily = "ARIAL" | "COURIER_NEW" | "GEORGIA" | "TIMES_NEW_ROMAN" | "TREBUCHET" | "VERDANA";
253
+ /**
254
+ * Type definition for `AWS::Connect::Workspace.WorkspacePage`.
255
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacepage.html}
256
+ */
257
+ export type WorkspacePage = {
258
+ /**
259
+ * The input data for the page.
260
+ * @minLength `0`
261
+ * @maxLength `4096`
262
+ */
263
+ InputData?: string;
264
+ /**
265
+ * The page identifier.
266
+ * @minLength `1`
267
+ * @maxLength `25`
268
+ * @pattern `^(?!\.$)(?!\.\.$)[\p{L}\p{Z}\p{N}\-_.:=@'|]+$`
269
+ */
270
+ Page: string;
271
+ /**
272
+ * The Amazon Resource Name (ARN) of the resource associated with the page.
273
+ * @maxLength `2048`
274
+ */
275
+ ResourceArn: string;
276
+ /**
277
+ * The slug for the page.
278
+ * @minLength `0`
279
+ * @maxLength `63`
280
+ * @pattern `^$|^[\p{L}\p{Z}\p{N}\-_.:=@'|]{3,}$`
281
+ */
282
+ Slug?: string;
283
+ };
284
+ /**
285
+ * Type definition for `AWS::Connect::Workspace.WorkspaceTheme`.
286
+ * The theme configuration for the Connect workspace
287
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacetheme.html}
288
+ */
289
+ export type WorkspaceTheme = {
290
+ Dark?: WorkspaceThemeConfig;
291
+ Light?: WorkspaceThemeConfig;
292
+ };
293
+ /**
294
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemeConfig`.
295
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemeconfig.html}
296
+ */
297
+ export type WorkspaceThemeConfig = {
298
+ Palette?: WorkspaceThemePalette;
299
+ Typography?: WorkspaceThemeTypography;
300
+ };
301
+ /**
302
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemePalette`.
303
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemepalette.html}
304
+ */
305
+ export type WorkspaceThemePalette = {
306
+ Canvas?: PaletteCanvas;
307
+ Header?: PaletteHeader;
308
+ Navigation?: PaletteNavigation;
309
+ Primary?: PalettePrimary;
310
+ };
311
+ /**
312
+ * Type definition for `AWS::Connect::Workspace.WorkspaceThemeTypography`.
313
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connect-workspace-workspacethemetypography.html}
314
+ */
315
+ export type WorkspaceThemeTypography = {
316
+ FontFamily?: FontFamily;
317
+ };
318
+ /**
319
+ * Resource Type definition for AWS::Connect::Workspace
320
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
321
+ */
322
+ export declare class ConnectWorkspace extends $Resource<"AWS::Connect::Workspace", ConnectWorkspaceProperties, ConnectWorkspaceAttributes> {
323
+ static readonly Type = "AWS::Connect::Workspace";
324
+ constructor(logicalId: string, properties: ConnectWorkspaceProperties, options?: $ResourceOptions);
325
+ }
326
+ //# sourceMappingURL=AWS-Connect-Workspace.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::Connect::Workspace
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connect-workspace.html}
5
+ */
6
+ export class ConnectWorkspace extends $Resource {
7
+ static Type = "AWS::Connect::Workspace";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, ConnectWorkspace.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-Connect-Workspace.js.map
@@ -551,6 +551,12 @@ export type TelephonyOutboundConfig = {
551
551
  * @maxLength `100`
552
552
  */
553
553
  ConnectSourcePhoneNumber?: string;
554
+ /**
555
+ * Maximum ring time for outbound calls in seconds
556
+ * @min `15`
557
+ * @max `60`
558
+ */
559
+ RingTimeout?: number;
554
560
  };
555
561
  /**
556
562
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.TelephonyOutboundMode`.
@@ -75,6 +75,10 @@ export type DSQLClusterAttributes = {
75
75
  * The status of the cluster.
76
76
  */
77
77
  Status: string;
78
+ /**
79
+ * The DSQL cluster VPC endpoint.
80
+ */
81
+ VpcEndpoint: string;
78
82
  /**
79
83
  * The VPC endpoint service name.
80
84
  */
@@ -272,6 +272,11 @@ export type ConnectionPropertiesInput = {
272
272
  * S3 Properties Input
273
273
  */
274
274
  S3Properties: S3PropertiesInput;
275
+ } | {
276
+ /**
277
+ * MLflow Properties Input
278
+ */
279
+ MlflowProperties: MlflowPropertiesInput;
275
280
  };
276
281
  /**
277
282
  * Type definition for `AWS::DataZone::Connection.CredentialMap`.
@@ -406,6 +411,17 @@ export type LineageSyncSchedule = {
406
411
  */
407
412
  Schedule?: string;
408
413
  };
414
+ /**
415
+ * Type definition for `AWS::DataZone::Connection.MlflowPropertiesInput`.
416
+ * MLflow Properties Input
417
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datazone-connection-mlflowpropertiesinput.html}
418
+ */
419
+ export type MlflowPropertiesInput = {
420
+ /**
421
+ * The ARN of the MLflow tracking server
422
+ */
423
+ TrackingServerArn?: string;
424
+ };
409
425
  /**
410
426
  * Type definition for `AWS::DataZone::Connection.OAuth2ClientApplication`.
411
427
  * OAuth2 Client Application
@@ -599,7 +615,7 @@ export type S3PropertiesInput = {
599
615
  export type SparkEmrPropertiesInput = {
600
616
  /**
601
617
  * @maxLength `2048`
602
- * @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless):.*`
618
+ * @pattern `^arn:aws(-(cn|us-gov|iso(-[bef])?))?:(elasticmapreduce|emr-serverless|emr-containers):.*`
603
619
  */
604
620
  ComputeArn?: string;
605
621
  /**
@@ -617,6 +633,10 @@ export type SparkEmrPropertiesInput = {
617
633
  * @pattern `^s3://.+$`
618
634
  */
619
635
  LogUri?: string;
636
+ /**
637
+ * @maxLength `2048`
638
+ */
639
+ ManagedEndpointArn?: string;
620
640
  /**
621
641
  * @maxLength `256`
622
642
  * @pattern `^[\S]*$`
@@ -15,6 +15,10 @@ export type DevOpsAgentAssociationProperties = {
15
15
  * The configuration that directs how AgentSpace interacts with the given service
16
16
  */
17
17
  Configuration: ServiceConfiguration;
18
+ /**
19
+ * Set of linked association IDs for parent-child relationships
20
+ */
21
+ LinkedAssociationIds?: string[];
18
22
  /**
19
23
  * The identifier for the associated service
20
24
  * @minLength `1`
@@ -167,6 +167,7 @@ export type InstanceRequirementsRequest = {
167
167
  NetworkBandwidthGbps?: NetworkBandwidthGbpsRequest;
168
168
  NetworkInterfaceCount?: NetworkInterfaceCountRequest;
169
169
  OnDemandMaxPricePercentageOverLowestPrice?: number;
170
+ RequireEncryptionInTransit?: boolean;
170
171
  RequireHibernateSupport?: boolean;
171
172
  SpotMaxPricePercentageOverLowestPrice?: number;
172
173
  TotalLocalStorageGB?: TotalLocalStorageGBRequest;
@@ -67,6 +67,24 @@ export type ECSExpressGatewayServiceAttributes = {
67
67
  TaskRoleArn: string;
68
68
  }[];
69
69
  CreatedAt: string;
70
+ ECSManagedResourceArns: {
71
+ AutoScaling: {
72
+ ApplicationAutoScalingPolicies: string[];
73
+ ScalableTarget: string;
74
+ };
75
+ IngressPath: {
76
+ CertificateArn: string;
77
+ ListenerArn: string;
78
+ ListenerRuleArn: string;
79
+ LoadBalancerArn: string;
80
+ LoadBalancerSecurityGroups: string[];
81
+ TargetGroupArns: string[];
82
+ };
83
+ LogGroups: string[];
84
+ MetricAlarms: string[];
85
+ ServiceSecurityGroups: string[];
86
+ };
87
+ Endpoint: string;
70
88
  ServiceArn: string;
71
89
  Status: {
72
90
  StatusCode: ExpressGatewayServiceStatusCode;
@@ -1,43 +1,37 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource type definition for `AWS::FSx::DataRepositoryAssociation`.
5
- * 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.
6
- 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).
4
+ * Resource Type definition for AWS::FSx::DataRepositoryAssociation
7
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
8
6
  */
9
7
  export type FSxDataRepositoryAssociationProperties = {
10
8
  /**
11
- * 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``.
9
+ * 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.
12
10
  */
13
11
  BatchImportMetaDataOnCreate?: boolean;
14
12
  /**
15
- * 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.
13
+ * 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.
16
14
  */
17
15
  DataRepositoryPath: string;
18
16
  /**
19
- * The ID of the file system on which the data repository association is configured.
17
+ * The globally unique ID of the file system, assigned by Amazon FSx.
20
18
  */
21
19
  FileSystemId: string;
22
20
  /**
23
- * A path on the Amazon FSx for Lustre file system that points to a high-level directory (such as ``/ns1/``) or subdirectory (such as ``/ns1/subdir/``) that will be mapped 1-1 with ``DataRepositoryPath``. The leading forward slash in the name is required. Two data repository associations cannot have overlapping file system paths. For example, if a data repository is associated with file system path ``/ns1/``, then you cannot link another data repository with file system path ``/ns1/ns2``.
24
- 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.
25
- 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.
26
- */
21
+ * 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.
22
+ */
27
23
  FileSystemPath: string;
28
24
  /**
29
- * 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 or cache.
30
- The default chunk size is 1,024 MiB (1 GiB) and can go as high as 512,000 MiB (500 GiB). Amazon S3 objects have a maximum size of 5 TB.
31
- */
25
+ * 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.
26
+ */
32
27
  ImportedFileChunkSize?: number;
33
28
  /**
34
29
  * 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.
35
30
  */
36
31
  S3?: S3;
37
32
  /**
38
- * An array of key-value pairs to apply to this resource.
39
- For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html).
40
- */
33
+ * A list of Tag values, with a maximum of 50 elements.
34
+ */
41
35
  Tags?: Tag[];
42
36
  };
43
37
  /**
@@ -45,43 +39,35 @@ export type FSxDataRepositoryAssociationProperties = {
45
39
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html#aws-resource-fsx-datarepositoryassociation-return-values}
46
40
  */
47
41
  export type FSxDataRepositoryAssociationAttributes = {
42
+ /**
43
+ * The system-generated, unique ID of the data repository association.
44
+ */
48
45
  AssociationId: string;
46
+ /**
47
+ * 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.
48
+ */
49
49
  ResourceARN: string;
50
50
  };
51
51
  /**
52
52
  * Type definition for `AWS::FSx::DataRepositoryAssociation.AutoExportPolicy`.
53
- * Describes a data repository association's automatic export policy. The ``AutoExportPolicy`` defines the types of updated objects on the file system that will be automatically exported to the data repository. As you create, modify, or delete files, Amazon FSx for Lustre automatically exports the defined changes asynchronously once your application finishes modifying the file.
54
- The ``AutoExportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
53
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
55
54
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoexportpolicy.html}
56
55
  */
57
56
  export type AutoExportPolicy = {
58
57
  /**
59
- * The ``AutoExportPolicy`` can have the following event values:
60
- + ``NEW`` - New files and directories are automatically exported to the data repository as they are added to the file system.
61
- + ``CHANGED`` - Changes to files and directories on the file system are automatically exported to the data repository.
62
- + ``DELETED`` - Files and directories are automatically deleted on the data repository when they are deleted on the file system.
63
-
64
- You can define any combination of event types for your ``AutoExportPolicy``.
65
- * @maxLength `3`
66
- */
58
+ * @maxLength `3`
59
+ */
67
60
  Events: EventType[];
68
61
  };
69
62
  /**
70
63
  * Type definition for `AWS::FSx::DataRepositoryAssociation.AutoImportPolicy`.
71
- * Describes the data repository association's automatic import policy. The AutoImportPolicy defines how Amazon FSx keeps your file metadata and directory listings up to date by importing changes to your Amazon FSx for Lustre file system as you modify objects in a linked S3 bucket.
72
- The ``AutoImportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
64
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
73
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-autoimportpolicy.html}
74
66
  */
75
67
  export type AutoImportPolicy = {
76
68
  /**
77
- * The ``AutoImportPolicy`` can have the following event values:
78
- + ``NEW`` - Amazon FSx automatically imports metadata of files added to the linked S3 bucket that do not currently exist in the FSx file system.
79
- + ``CHANGED`` - Amazon FSx automatically updates file metadata and invalidates existing file content on the file system as files change in the data repository.
80
- + ``DELETED`` - Amazon FSx automatically deletes files on the file system as corresponding files are deleted in the data repository.
81
-
82
- You can define any combination of event types for your ``AutoImportPolicy``.
83
- * @maxLength `3`
84
- */
69
+ * @maxLength `3`
70
+ */
85
71
  Events: EventType[];
86
72
  };
87
73
  /**
@@ -96,39 +82,35 @@ export type EventType = "NEW" | "CHANGED" | "DELETED";
96
82
  */
97
83
  export type S3 = {
98
84
  /**
99
- * Describes a data repository association's automatic export policy. The ``AutoExportPolicy`` defines the types of updated objects on the file system that will be automatically exported to the data repository. As you create, modify, or delete files, Amazon FSx for Lustre automatically exports the defined changes asynchronously once your application finishes modifying the file.
100
- The ``AutoExportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
101
- */
85
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically exported from your file system to the linked S3 bucket.
86
+ */
102
87
  AutoExportPolicy?: AutoExportPolicy;
103
88
  /**
104
- * Describes the data repository association's automatic import policy. The AutoImportPolicy defines how Amazon FSx keeps your file metadata and directory listings up to date by importing changes to your Amazon FSx for Lustre file system as you modify objects in a linked S3 bucket.
105
- The ``AutoImportPolicy`` is only supported on Amazon FSx for Lustre file systems with a data repository association.
106
- */
89
+ * Specifies the type of updated objects (new, changed, deleted) that will be automatically imported from the linked S3 bucket to your file system.
90
+ */
107
91
  AutoImportPolicy?: AutoImportPolicy;
108
92
  };
109
93
  /**
110
94
  * Type definition for `AWS::FSx::DataRepositoryAssociation.Tag`.
111
- * Specifies a key-value pair for a resource tag.
95
+ * A key-value pair to associate with a resource.
112
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-datarepositoryassociation-tag.html}
113
97
  */
114
98
  export type Tag = {
115
99
  /**
116
- * A value that specifies the ``TagKey``, the name of the tag. Tag keys must be unique for the resource to which they are attached.
100
+ * 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 -.
117
101
  * @minLength `1`
118
102
  * @maxLength `128`
119
103
  */
120
104
  Key: string;
121
105
  /**
122
- * A value that specifies the ``TagValue``, the value assigned to the corresponding tag key. Tag values can be null and don't have to be unique in a tag set. For example, you can have a key-value pair in a tag set of ``finances : April`` and also of ``payroll : April``.
106
+ * 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 -.
123
107
  * @minLength `0`
124
108
  * @maxLength `256`
125
109
  */
126
110
  Value: string;
127
111
  };
128
112
  /**
129
- * Resource type definition for `AWS::FSx::DataRepositoryAssociation`.
130
- * 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.
131
- 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).
113
+ * Resource Type definition for AWS::FSx::DataRepositoryAssociation
132
114
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
133
115
  */
134
116
  export declare class FSxDataRepositoryAssociation extends $Resource<"AWS::FSx::DataRepositoryAssociation", FSxDataRepositoryAssociationProperties, FSxDataRepositoryAssociationAttributes> {
@@ -1,8 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource type definition for `AWS::FSx::DataRepositoryAssociation`.
4
- * 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.
5
- 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).
3
+ * Resource Type definition for AWS::FSx::DataRepositoryAssociation
6
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-fsx-datarepositoryassociation.html}
7
5
  */
8
6
  export class FSxDataRepositoryAssociation extends $Resource {
@@ -29,6 +29,10 @@ export type NetworkManagerConnectAttachmentProperties = {
29
29
  * The attachment to move from one segment to another.
30
30
  */
31
31
  ProposedSegmentChange?: ProposedSegmentChange;
32
+ /**
33
+ * Routing policy label
34
+ */
35
+ RoutingPolicyLabel?: string;
32
36
  /**
33
37
  * Tags for the attachment.
34
38
  */
@@ -0,0 +1,30 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
6
+ */
7
+ export type NetworkManagerCoreNetworkPrefixListAssociationProperties = {
8
+ /**
9
+ * The ID of the core network.
10
+ */
11
+ CoreNetworkId: string;
12
+ /**
13
+ * The alias of the prefix list
14
+ */
15
+ PrefixListAlias: string;
16
+ /**
17
+ * The Amazon Resource Name (ARN) of the prefix list.
18
+ * @pattern `^arn:[a-z0-9-]+:ec2:[a-z]+-[a-z]+-[0-9]:([0-9]{12}):prefix-list/pl-[a-z0-9]+$`
19
+ */
20
+ PrefixListArn: string;
21
+ };
22
+ /**
23
+ * Resource Type definition for AWS::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
24
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
25
+ */
26
+ export declare class NetworkManagerCoreNetworkPrefixListAssociation extends $Resource<"AWS::NetworkManager::CoreNetworkPrefixListAssociation", NetworkManagerCoreNetworkPrefixListAssociationProperties, Record<string, never>> {
27
+ static readonly Type = "AWS::NetworkManager::CoreNetworkPrefixListAssociation";
28
+ constructor(logicalId: string, properties: NetworkManagerCoreNetworkPrefixListAssociationProperties, options?: $ResourceOptions);
29
+ }
30
+ //# sourceMappingURL=AWS-NetworkManager-CoreNetworkPrefixListAssociation.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::NetworkManager::CoreNetworkPrefixListAssociation which associates a prefix list with a core network.
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkmanager-corenetworkprefixlistassociation.html}
5
+ */
6
+ export class NetworkManagerCoreNetworkPrefixListAssociation extends $Resource {
7
+ static Type = "AWS::NetworkManager::CoreNetworkPrefixListAssociation";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, NetworkManagerCoreNetworkPrefixListAssociation.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-NetworkManager-CoreNetworkPrefixListAssociation.js.map
@@ -25,6 +25,10 @@ export type NetworkManagerDirectConnectGatewayAttachmentProperties = {
25
25
  * The attachment to move from one segment to another.
26
26
  */
27
27
  ProposedSegmentChange?: ProposedSegmentChange;
28
+ /**
29
+ * Routing policy label
30
+ */
31
+ RoutingPolicyLabel?: string;
28
32
  /**
29
33
  * Tags for the attachment.
30
34
  */
@@ -21,6 +21,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentProperties = {
21
21
  * The attachment to move from one segment to another.
22
22
  */
23
23
  ProposedSegmentChange?: ProposedSegmentChange;
24
+ /**
25
+ * Routing policy label
26
+ */
27
+ RoutingPolicyLabel?: string;
24
28
  /**
25
29
  * Tags for the attachment.
26
30
  */
@@ -21,6 +21,10 @@ export type NetworkManagerTransitGatewayRouteTableAttachmentProperties = {
21
21
  * The attachment to move from one segment to another.
22
22
  */
23
23
  ProposedSegmentChange?: ProposedSegmentChange;
24
+ /**
25
+ * Routing policy label
26
+ */
27
+ RoutingPolicyLabel?: string;
24
28
  /**
25
29
  * An array of key-value pairs to apply to this resource.
26
30
  */
@@ -21,6 +21,10 @@ export type NetworkManagerVpcAttachmentProperties = {
21
21
  * The attachment to move from one segment to another.
22
22
  */
23
23
  ProposedSegmentChange?: ProposedSegmentChange;
24
+ /**
25
+ * Routing policy label
26
+ */
27
+ RoutingPolicyLabel?: string;
24
28
  /**
25
29
  * Subnet Arn list
26
30
  */
@@ -10,6 +10,7 @@ export type PaymentCryptographyKeyProperties = {
10
10
  Exportable: boolean;
11
11
  KeyAttributes: KeyAttributes;
12
12
  KeyCheckValueAlgorithm?: KeyCheckValueAlgorithm;
13
+ ReplicationRegions?: string[];
13
14
  /**
14
15
  * @minLength `0`
15
16
  * @maxLength `200`
@@ -35,6 +36,13 @@ export type PaymentCryptographyKeyAttributes = {
35
36
  * Defines the state of a key
36
37
  */
37
38
  KeyState: KeyState;
39
+ ReplicationStatus: Record<string, {
40
+ /**
41
+ * Defines the replication state of a key
42
+ */
43
+ Status: KeyReplicationState;
44
+ StatusMessage: string;
45
+ }>;
38
46
  };
39
47
  /**
40
48
  * Type definition for `AWS::PaymentCryptography::Key.DeriveKeyUsage`.
@@ -87,6 +95,12 @@ export type KeyModesOfUse = {
87
95
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyorigin.html}
88
96
  */
89
97
  export type KeyOrigin = "EXTERNAL" | "AWS_PAYMENT_CRYPTOGRAPHY";
98
+ /**
99
+ * Type definition for `AWS::PaymentCryptography::Key.KeyReplicationState`.
100
+ * Defines the replication state of a key
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyreplicationstate.html}
102
+ */
103
+ export type KeyReplicationState = "IN_PROGRESS" | "DELETE_IN_PROGRESS" | "FAILED" | "SYNCHRONIZED";
90
104
  /**
91
105
  * Type definition for `AWS::PaymentCryptography::Key.KeyState`.
92
106
  * Defines the state of a key
@@ -98,6 +112,22 @@ export type KeyState = "CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "DELETE_PENDIN
98
112
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-keyusage.html}
99
113
  */
100
114
  export type KeyUsage = "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";
115
+ /**
116
+ * Type definition for `AWS::PaymentCryptography::Key.ReplicationStatus`.
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatus.html}
118
+ */
119
+ export type ReplicationStatus = Record<string, ReplicationStatusType>;
120
+ /**
121
+ * Type definition for `AWS::PaymentCryptography::Key.ReplicationStatusType`.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-replicationstatustype.html}
123
+ */
124
+ export type ReplicationStatusType = {
125
+ /**
126
+ * Defines the replication state of a key
127
+ */
128
+ Status: KeyReplicationState;
129
+ StatusMessage?: string;
130
+ };
101
131
  /**
102
132
  * Type definition for `AWS::PaymentCryptography::Key.Tag`.
103
133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-paymentcryptography-key-tag.html}
@@ -26,6 +26,7 @@ export type Route53HostedZoneProperties = {
26
26
  If you don't want to specify a comment, omit the ``HostedZoneConfig`` and ``Comment`` elements.
27
27
  */
28
28
  HostedZoneConfig?: HostedZoneConfig;
29
+ HostedZoneFeatures?: HostedZoneFeatures;
29
30
  /**
30
31
  * Adds, edits, or deletes tags for a health check or a hosted zone.
31
32
  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*.
@@ -74,6 +75,16 @@ export type HostedZoneConfig = {
74
75
  */
75
76
  Comment?: string;
76
77
  };
78
+ /**
79
+ * Type definition for `AWS::Route53::HostedZone.HostedZoneFeatures`.
80
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonefeatures.html}
81
+ */
82
+ export type HostedZoneFeatures = {
83
+ /**
84
+ * 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.
85
+ */
86
+ EnableAcceleratedRecovery?: boolean;
87
+ };
77
88
  /**
78
89
  * Type definition for `AWS::Route53::HostedZone.HostedZoneTag`.
79
90
  * A complex type that contains information about a tag that you want to add or edit for the specified health check or hosted zone.
@@ -19,6 +19,10 @@ export type S3VectorsIndexProperties = {
19
19
  * The distance metric to be used for similarity search.
20
20
  */
21
21
  DistanceMetric: DistanceMetric;
22
+ /**
23
+ * The encryption configuration for the index.
24
+ */
25
+ EncryptionConfiguration?: EncryptionConfiguration;
22
26
  /**
23
27
  * The name of the vector index to create.
24
28
  * @minLength `3`
@@ -66,6 +70,24 @@ export type DataType = "float32";
66
70
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-distancemetric.html}
67
71
  */
68
72
  export type DistanceMetric = "cosine" | "euclidean";
73
+ /**
74
+ * Type definition for `AWS::S3Vectors::Index.EncryptionConfiguration`.
75
+ * The encryption configuration for the index.
76
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3vectors-index-encryptionconfiguration.html}
77
+ */
78
+ export type EncryptionConfiguration = {
79
+ /**
80
+ * 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
81
+ * @minLength `1`
82
+ * @maxLength `2048`
83
+ * @pattern `^(arn:aws[-a-z0-9]*:kms:[-a-z0-9]*:[0-9]{12}:key/.+)$`
84
+ */
85
+ KmsKeyArn?: string;
86
+ /**
87
+ * Defines the server-side encryption type for index encryption configuration. Defaults to the parent vector bucket's encryption settings when unspecified.
88
+ */
89
+ SseType?: "AES256" | "aws:kms";
90
+ };
69
91
  /**
70
92
  * Type definition for `AWS::S3Vectors::Index.MetadataConfiguration`.
71
93
  * The metadata configuration for the vector index.
@@ -141,6 +141,11 @@ export type TransferConnectorAttributes = {
141
141
  * @pattern `^c-([0-9a-f]{17})$`
142
142
  */
143
143
  ConnectorId: string;
144
+ /**
145
+ * Detailed error message when Connector in ERRORED status
146
+ * @maxLength `2048`
147
+ */
148
+ ErrorMessage: string;
144
149
  /**
145
150
  * The list of egress IP addresses of this connector. These IP addresses are assigned automatically when you create the connector.
146
151
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.495",
3
+ "version": "0.1.497",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },