@awboost/cfn-resource-types 0.1.482 → 0.1.484
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/AWS-Athena-WorkGroup.d.ts +140 -2
- package/lib/AWS-Backup-BackupPlan.d.ts +1 -0
- package/lib/AWS-Bedrock-KnowledgeBase.d.ts +26 -1
- package/lib/AWS-Cassandra-Table.d.ts +19 -0
- package/lib/AWS-CloudFormation-StackSet.d.ts +4 -0
- package/lib/AWS-Cognito-Terms.d.ts +51 -0
- package/lib/AWS-Cognito-Terms.js +12 -0
- package/lib/AWS-Connect-EvaluationForm.d.ts +4 -4
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.d.ts +52 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicy.js +12 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.d.ts +89 -0
- package/lib/AWS-EC2-TransitGatewayMeteringPolicyEntry.js +12 -0
- package/lib/AWS-EC2-VPCEncryptionControl.d.ts +135 -0
- package/lib/AWS-EC2-VPCEncryptionControl.js +12 -0
- package/lib/AWS-ECR-PullTimeUpdateExclusion.d.ts +23 -0
- package/lib/AWS-ECR-PullTimeUpdateExclusion.js +12 -0
- package/lib/AWS-ECR-SigningConfiguration.d.ts +76 -0
- package/lib/AWS-ECR-SigningConfiguration.js +12 -0
- package/lib/AWS-ECS-ExpressGatewayService.d.ts +201 -0
- package/lib/AWS-ECS-ExpressGatewayService.js +12 -0
- package/lib/AWS-EKS-Cluster.d.ts +15 -0
- package/lib/AWS-FSx-FileSystem.d.ts +1 -0
- package/lib/AWS-FSx-StorageVirtualMachine.d.ts +1 -0
- package/lib/AWS-KinesisVideo-Stream.d.ts +15 -0
- package/lib/AWS-OpenSearchServerless-Collection.d.ts +0 -30
- package/lib/AWS-PCS-Cluster.d.ts +47 -2
- package/lib/AWS-Rbin-Rule.d.ts +1 -1
- package/lib/AWS-S3-Bucket.d.ts +1 -0
- package/lib/AWS-SageMaker-Cluster.d.ts +76 -0
- package/lib/AWS-SecretsManager-RotationSchedule.d.ts +23 -0
- package/lib/AWS-SecretsManager-Secret.d.ts +1 -0
- package/lib/AWS-Wisdom-AIAgent.d.ts +59 -1
- package/package.json +1 -1
package/lib/AWS-PCS-Cluster.d.ts
CHANGED
|
@@ -55,6 +55,10 @@ export type PCSClusterProperties = {
|
|
|
55
55
|
* The shared Slurm key for authentication, also known as the cluster secret.
|
|
56
56
|
*/
|
|
57
57
|
AuthKey?: AuthKey;
|
|
58
|
+
/**
|
|
59
|
+
* JWT authentication configuration for Slurm.
|
|
60
|
+
*/
|
|
61
|
+
JwtAuth?: JwtAuth;
|
|
58
62
|
/**
|
|
59
63
|
* The time before an idle node is scaled down.
|
|
60
64
|
* @min `1`
|
|
@@ -64,6 +68,10 @@ export type PCSClusterProperties = {
|
|
|
64
68
|
* Additional Slurm-specific configuration that directly maps to Slurm settings.
|
|
65
69
|
*/
|
|
66
70
|
SlurmCustomSettings?: SlurmCustomSetting[];
|
|
71
|
+
/**
|
|
72
|
+
* The SlurmRest configuration includes configurable settings for Slurm Rest.
|
|
73
|
+
*/
|
|
74
|
+
SlurmRest?: SlurmRest;
|
|
67
75
|
};
|
|
68
76
|
/**
|
|
69
77
|
* 1 or more tags added to the resource. Each tag consists of a tag key and tag value. The tag value is optional and can be an empty string.
|
|
@@ -102,7 +110,7 @@ export type PCSClusterAttributes = {
|
|
|
102
110
|
/**
|
|
103
111
|
* Indicates the type of endpoint running at the specific IP address.
|
|
104
112
|
*/
|
|
105
|
-
Type: "SLURMCTLD" | "SLURMDBD";
|
|
113
|
+
Type: "SLURMCTLD" | "SLURMDBD" | "SLURMRESTD";
|
|
106
114
|
}[];
|
|
107
115
|
/**
|
|
108
116
|
* The list of errors that occurred during cluster provisioning.
|
|
@@ -184,7 +192,7 @@ export type Endpoint = {
|
|
|
184
192
|
/**
|
|
185
193
|
* Indicates the type of endpoint running at the specific IP address.
|
|
186
194
|
*/
|
|
187
|
-
Type: "SLURMCTLD" | "SLURMDBD";
|
|
195
|
+
Type: "SLURMCTLD" | "SLURMDBD" | "SLURMRESTD";
|
|
188
196
|
};
|
|
189
197
|
/**
|
|
190
198
|
* Type definition for `AWS::PCS::Cluster.ErrorInfo`.
|
|
@@ -201,6 +209,32 @@ export type ErrorInfo = {
|
|
|
201
209
|
*/
|
|
202
210
|
Message?: string;
|
|
203
211
|
};
|
|
212
|
+
/**
|
|
213
|
+
* Type definition for `AWS::PCS::Cluster.JwtAuth`.
|
|
214
|
+
* JWT authentication configuration for Slurm.
|
|
215
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-jwtauth.html}
|
|
216
|
+
*/
|
|
217
|
+
export type JwtAuth = {
|
|
218
|
+
/**
|
|
219
|
+
* JWT key configuration.
|
|
220
|
+
*/
|
|
221
|
+
JwtKey?: JwtKey;
|
|
222
|
+
};
|
|
223
|
+
/**
|
|
224
|
+
* Type definition for `AWS::PCS::Cluster.JwtKey`.
|
|
225
|
+
* JWT key configuration.
|
|
226
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-jwtkey.html}
|
|
227
|
+
*/
|
|
228
|
+
export type JwtKey = {
|
|
229
|
+
/**
|
|
230
|
+
* The Amazon Resource Name (ARN) of the JWT key secret.
|
|
231
|
+
*/
|
|
232
|
+
SecretArn: string;
|
|
233
|
+
/**
|
|
234
|
+
* The version of the JWT key secret.
|
|
235
|
+
*/
|
|
236
|
+
SecretVersion: string;
|
|
237
|
+
};
|
|
204
238
|
/**
|
|
205
239
|
* Type definition for `AWS::PCS::Cluster.SlurmCustomSetting`.
|
|
206
240
|
* Additional settings that directly map to Slurm settings.
|
|
@@ -216,6 +250,17 @@ export type SlurmCustomSetting = {
|
|
|
216
250
|
*/
|
|
217
251
|
ParameterValue: string;
|
|
218
252
|
};
|
|
253
|
+
/**
|
|
254
|
+
* Type definition for `AWS::PCS::Cluster.SlurmRest`.
|
|
255
|
+
* The SlurmRest configuration includes configurable settings for Slurm Rest.
|
|
256
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-slurmrest.html}
|
|
257
|
+
*/
|
|
258
|
+
export type SlurmRest = {
|
|
259
|
+
/**
|
|
260
|
+
* The default value is `STANDARD`. A value of `STANDARD` means that Slurm Rest is enabled.
|
|
261
|
+
*/
|
|
262
|
+
Mode: "STANDARD" | "NONE";
|
|
263
|
+
};
|
|
219
264
|
/**
|
|
220
265
|
* AWS::PCS::Cluster resource creates an AWS PCS cluster.
|
|
221
266
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcs-cluster.html}
|
package/lib/AWS-Rbin-Rule.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export type RbinRuleProperties = {
|
|
|
27
27
|
/**
|
|
28
28
|
* The resource type retained by the retention rule.
|
|
29
29
|
*/
|
|
30
|
-
ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE";
|
|
30
|
+
ResourceType: "EBS_SNAPSHOT" | "EC2_IMAGE" | "EBS_VOLUME";
|
|
31
31
|
/**
|
|
32
32
|
* Information about the retention period for which the retention rule is to retain resources.
|
|
33
33
|
*/
|
package/lib/AWS-S3-Bucket.d.ts
CHANGED
|
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
|
|
8
8
|
*/
|
|
9
9
|
export type S3BucketProperties = {
|
|
10
|
+
AbacStatus?: "Enabled" | "Disabled";
|
|
10
11
|
/**
|
|
11
12
|
* Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
|
|
12
13
|
*/
|
|
@@ -151,6 +151,21 @@ export type ClusterAutoScalingConfig = {
|
|
|
151
151
|
*/
|
|
152
152
|
Mode: "Enable" | "Disable";
|
|
153
153
|
};
|
|
154
|
+
/**
|
|
155
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterCapacityRequirements`.
|
|
156
|
+
* Specifies the capacity requirements configuration for an instance group
|
|
157
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clustercapacityrequirements.html}
|
|
158
|
+
*/
|
|
159
|
+
export type ClusterCapacityRequirements = {
|
|
160
|
+
/**
|
|
161
|
+
* Options for OnDemand capacity
|
|
162
|
+
*/
|
|
163
|
+
OnDemand?: ClusterOnDemandOptions;
|
|
164
|
+
/**
|
|
165
|
+
* Options for Spot capacity
|
|
166
|
+
*/
|
|
167
|
+
Spot?: ClusterSpotOptions;
|
|
168
|
+
};
|
|
154
169
|
/**
|
|
155
170
|
* Type definition for `AWS::SageMaker::Cluster.ClusterEbsVolumeConfig`.
|
|
156
171
|
* Defines the configuration for attaching additional Amazon Elastic Block Store (EBS) volumes to the instances in the SageMaker HyperPod cluster instance group. The additional EBS volume is attached to each instance within the SageMaker HyperPod cluster instance group and mounted to /opt/sagemaker.
|
|
@@ -177,6 +192,10 @@ export type ClusterEbsVolumeConfig = {
|
|
|
177
192
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterinstancegroup.html}
|
|
178
193
|
*/
|
|
179
194
|
export type ClusterInstanceGroup = {
|
|
195
|
+
/**
|
|
196
|
+
* Specifies the capacity requirements configuration for an instance group
|
|
197
|
+
*/
|
|
198
|
+
CapacityRequirements?: ClusterCapacityRequirements;
|
|
180
199
|
/**
|
|
181
200
|
* The execution role for the instance group to assume.
|
|
182
201
|
* @minLength `20`
|
|
@@ -212,6 +231,10 @@ export type ClusterInstanceGroup = {
|
|
|
212
231
|
* The instance type of the instance group of a SageMaker HyperPod cluster.
|
|
213
232
|
*/
|
|
214
233
|
InstanceType: string;
|
|
234
|
+
/**
|
|
235
|
+
* Kubernetes configuration for cluster nodes including labels and taints.
|
|
236
|
+
*/
|
|
237
|
+
KubernetesConfig?: ClusterKubernetesConfig;
|
|
215
238
|
/**
|
|
216
239
|
* The lifecycle configuration for a SageMaker HyperPod cluster.
|
|
217
240
|
*/
|
|
@@ -252,6 +275,47 @@ export type ClusterInstanceStorageConfig = {
|
|
|
252
275
|
*/
|
|
253
276
|
EbsVolumeConfig?: ClusterEbsVolumeConfig;
|
|
254
277
|
};
|
|
278
|
+
/**
|
|
279
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesConfig`.
|
|
280
|
+
* Kubernetes configuration for cluster nodes including labels and taints.
|
|
281
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetesconfig.html}
|
|
282
|
+
*/
|
|
283
|
+
export type ClusterKubernetesConfig = {
|
|
284
|
+
/**
|
|
285
|
+
* A map of Kubernetes labels to apply to cluster nodes.
|
|
286
|
+
*/
|
|
287
|
+
Labels?: ClusterKubernetesLabels;
|
|
288
|
+
/**
|
|
289
|
+
* A list of Kubernetes taints to apply to cluster nodes. Maximum of 50 taints.
|
|
290
|
+
* @maxLength `50`
|
|
291
|
+
*/
|
|
292
|
+
Taints?: ClusterKubernetesTaint[];
|
|
293
|
+
};
|
|
294
|
+
/**
|
|
295
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesLabels`.
|
|
296
|
+
* A map of Kubernetes labels to apply to cluster nodes.
|
|
297
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkuberneteslabels.html}
|
|
298
|
+
*/
|
|
299
|
+
export type ClusterKubernetesLabels = Record<string, string>;
|
|
300
|
+
/**
|
|
301
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterKubernetesTaint`.
|
|
302
|
+
* A Kubernetes taint to apply to cluster nodes.
|
|
303
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterkubernetestaint.html}
|
|
304
|
+
*/
|
|
305
|
+
export type ClusterKubernetesTaint = {
|
|
306
|
+
/**
|
|
307
|
+
* The effect of the taint.
|
|
308
|
+
*/
|
|
309
|
+
Effect: "NoSchedule" | "PreferNoSchedule" | "NoExecute";
|
|
310
|
+
/**
|
|
311
|
+
* The key of the taint.
|
|
312
|
+
*/
|
|
313
|
+
Key: string;
|
|
314
|
+
/**
|
|
315
|
+
* The value of the taint.
|
|
316
|
+
*/
|
|
317
|
+
Value?: string;
|
|
318
|
+
};
|
|
255
319
|
/**
|
|
256
320
|
* Type definition for `AWS::SageMaker::Cluster.ClusterLifeCycleConfig`.
|
|
257
321
|
* The lifecycle configuration for a SageMaker HyperPod cluster.
|
|
@@ -272,6 +336,12 @@ export type ClusterLifeCycleConfig = {
|
|
|
272
336
|
*/
|
|
273
337
|
SourceS3Uri: string;
|
|
274
338
|
};
|
|
339
|
+
/**
|
|
340
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterOnDemandOptions`.
|
|
341
|
+
* Options for OnDemand capacity
|
|
342
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterondemandoptions.html}
|
|
343
|
+
*/
|
|
344
|
+
export type ClusterOnDemandOptions = Record<string, any>;
|
|
275
345
|
/**
|
|
276
346
|
* Type definition for `AWS::SageMaker::Cluster.ClusterOrchestratorEksConfig`.
|
|
277
347
|
* Specifies parameter(s) related to EKS as orchestrator, e.g. the EKS cluster nodes will attach to,
|
|
@@ -343,6 +413,12 @@ export type ClusterRestrictedInstanceGroup = {
|
|
|
343
413
|
*/
|
|
344
414
|
TrainingPlanArn?: string;
|
|
345
415
|
};
|
|
416
|
+
/**
|
|
417
|
+
* Type definition for `AWS::SageMaker::Cluster.ClusterSpotOptions`.
|
|
418
|
+
* Options for Spot capacity
|
|
419
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterspotoptions.html}
|
|
420
|
+
*/
|
|
421
|
+
export type ClusterSpotOptions = Record<string, any>;
|
|
346
422
|
/**
|
|
347
423
|
* Type definition for `AWS::SageMaker::Cluster.DeepHealthCheckType`.
|
|
348
424
|
* The type of deep health check(s) to be performed on the instances in the SageMaker HyperPod cluster instance group.
|
|
@@ -5,6 +5,14 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-secretsmanager-rotationschedule.html}
|
|
6
6
|
*/
|
|
7
7
|
export type SecretsManagerRotationScheduleProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The list of metadata needed to successfully rotate a managed external secret.
|
|
10
|
+
*/
|
|
11
|
+
ExternalSecretRotationMetadata?: ExternalSecretRotationMetadataItem[];
|
|
12
|
+
/**
|
|
13
|
+
* The ARN of the IAM role that is used by Secrets Manager to rotate a managed external secret.
|
|
14
|
+
*/
|
|
15
|
+
ExternalSecretRotationRoleArn?: string;
|
|
8
16
|
/**
|
|
9
17
|
* Creates a new Lambda rotation function based on one of the Secrets Manager rotation function templates. To use a rotation function that already exists, specify RotationLambdaARN instead.
|
|
10
18
|
*/
|
|
@@ -36,6 +44,21 @@ export type SecretsManagerRotationScheduleAttributes = {
|
|
|
36
44
|
*/
|
|
37
45
|
Id: string;
|
|
38
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Type definition for `AWS::SecretsManager::RotationSchedule.ExternalSecretRotationMetadataItem`.
|
|
49
|
+
* The metadata needed to successfully rotate a managed external secret. Each metadata item is a key and value pair of strings in a JSON text string.
|
|
50
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-externalsecretrotationmetadataitem.html}
|
|
51
|
+
*/
|
|
52
|
+
export type ExternalSecretRotationMetadataItem = {
|
|
53
|
+
/**
|
|
54
|
+
* The key name of the metadata item. You can specify a value that's 1 to 256 characters in length.
|
|
55
|
+
*/
|
|
56
|
+
Key: string;
|
|
57
|
+
/**
|
|
58
|
+
* The value for the metadata item. You can specify a value that's 1 to 2048 characters in length.
|
|
59
|
+
*/
|
|
60
|
+
Value: string;
|
|
61
|
+
};
|
|
39
62
|
/**
|
|
40
63
|
* Type definition for `AWS::SecretsManager::RotationSchedule.HostedRotationLambda`.
|
|
41
64
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-secretsmanager-rotationschedule-hostedrotationlambda.html}
|
|
@@ -57,6 +57,7 @@ export type SecretsManagerSecretProperties = {
|
|
|
57
57
|
+ If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
|
|
58
58
|
*/
|
|
59
59
|
Tags?: Tag[];
|
|
60
|
+
Type?: string;
|
|
60
61
|
};
|
|
61
62
|
/**
|
|
62
63
|
* Attribute type definition for `AWS::SecretsManager::Secret`.
|
|
@@ -59,12 +59,18 @@ export type AIAgentConfiguration = {
|
|
|
59
59
|
AnswerRecommendationAIAgentConfiguration: AnswerRecommendationAIAgentConfiguration;
|
|
60
60
|
} | {
|
|
61
61
|
SelfServiceAIAgentConfiguration: SelfServiceAIAgentConfiguration;
|
|
62
|
+
} | {
|
|
63
|
+
EmailResponseAIAgentConfiguration: EmailResponseAIAgentConfiguration;
|
|
64
|
+
} | {
|
|
65
|
+
EmailOverviewAIAgentConfiguration: EmailOverviewAIAgentConfiguration;
|
|
66
|
+
} | {
|
|
67
|
+
EmailGenerativeAnswerAIAgentConfiguration: EmailGenerativeAnswerAIAgentConfiguration;
|
|
62
68
|
};
|
|
63
69
|
/**
|
|
64
70
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
65
71
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
66
72
|
*/
|
|
67
|
-
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
|
73
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER";
|
|
68
74
|
/**
|
|
69
75
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
70
76
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
@@ -111,6 +117,58 @@ export type AssociationConfiguration = {
|
|
|
111
117
|
export type AssociationConfigurationData = {
|
|
112
118
|
KnowledgeBaseAssociationConfigurationData: KnowledgeBaseAssociationConfigurationData;
|
|
113
119
|
};
|
|
120
|
+
/**
|
|
121
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailGenerativeAnswerAIAgentConfiguration`.
|
|
122
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailgenerativeansweraiagentconfiguration.html}
|
|
123
|
+
*/
|
|
124
|
+
export type EmailGenerativeAnswerAIAgentConfiguration = {
|
|
125
|
+
AssociationConfigurations?: AssociationConfiguration[];
|
|
126
|
+
/**
|
|
127
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
128
|
+
*/
|
|
129
|
+
EmailGenerativeAnswerAIPromptId?: string;
|
|
130
|
+
/**
|
|
131
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
132
|
+
*/
|
|
133
|
+
EmailQueryReformulationAIPromptId?: string;
|
|
134
|
+
/**
|
|
135
|
+
* @minLength `1`
|
|
136
|
+
*/
|
|
137
|
+
Locale?: string;
|
|
138
|
+
};
|
|
139
|
+
/**
|
|
140
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailOverviewAIAgentConfiguration`.
|
|
141
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailoverviewaiagentconfiguration.html}
|
|
142
|
+
*/
|
|
143
|
+
export type EmailOverviewAIAgentConfiguration = {
|
|
144
|
+
/**
|
|
145
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
146
|
+
*/
|
|
147
|
+
EmailOverviewAIPromptId?: string;
|
|
148
|
+
/**
|
|
149
|
+
* @minLength `1`
|
|
150
|
+
*/
|
|
151
|
+
Locale?: string;
|
|
152
|
+
};
|
|
153
|
+
/**
|
|
154
|
+
* Type definition for `AWS::Wisdom::AIAgent.EmailResponseAIAgentConfiguration`.
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailresponseaiagentconfiguration.html}
|
|
156
|
+
*/
|
|
157
|
+
export type EmailResponseAIAgentConfiguration = {
|
|
158
|
+
AssociationConfigurations?: AssociationConfiguration[];
|
|
159
|
+
/**
|
|
160
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
161
|
+
*/
|
|
162
|
+
EmailQueryReformulationAIPromptId?: string;
|
|
163
|
+
/**
|
|
164
|
+
* @pattern `^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}(:[A-Z0-9_$]+){0,1}$`
|
|
165
|
+
*/
|
|
166
|
+
EmailResponseAIPromptId?: string;
|
|
167
|
+
/**
|
|
168
|
+
* @minLength `1`
|
|
169
|
+
*/
|
|
170
|
+
Locale?: string;
|
|
171
|
+
};
|
|
114
172
|
/**
|
|
115
173
|
* Type definition for `AWS::Wisdom::AIAgent.KnowledgeBaseAssociationConfigurationData`.
|
|
116
174
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-knowledgebaseassociationconfigurationdata.html}
|