@awboost/cfn-resource-types 0.1.271 → 0.1.273
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-Batch-ConsumableResource.d.ts +59 -0
- package/lib/AWS-Batch-ConsumableResource.js +12 -0
- package/lib/AWS-Batch-JobDefinition.d.ts +21 -0
- package/lib/AWS-Bedrock-Flow.d.ts +3 -3
- package/lib/AWS-Bedrock-FlowVersion.d.ts +5 -5
- package/lib/AWS-Bedrock-Prompt.d.ts +29 -2
- package/lib/AWS-Bedrock-PromptVersion.d.ts +50 -2
- package/lib/AWS-DataZone-Domain.d.ts +9 -0
- package/lib/AWS-ECR-RepositoryCreationTemplate.d.ts +27 -29
- package/lib/AWS-ECR-RepositoryCreationTemplate.js +2 -1
- package/lib/AWS-ECS-Cluster.d.ts +7 -5
- package/lib/AWS-IoTSiteWise-Gateway.d.ts +0 -4
- package/lib/AWS-PCAConnectorAD-Connector.d.ts +7 -4
- package/lib/AWS-PCAConnectorAD-Connector.js +2 -1
- package/lib/AWS-QuickSight-Analysis.d.ts +17 -9
- package/lib/AWS-QuickSight-Dashboard.d.ts +19 -157
- package/lib/AWS-QuickSight-Template.d.ts +7 -155
- package/lib/AWS-RDS-GlobalCluster.d.ts +13 -2
- package/lib/AWS-Wisdom-AIAgent.d.ts +1 -17
- package/lib/AWS-Wisdom-AIPrompt.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,59 @@
|
|
|
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 schema for AWS::Batch::ConsumableResource
|
|
5
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
6
|
+
*/
|
|
7
|
+
export type BatchConsumableResourceProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* Name of ConsumableResource.
|
|
10
|
+
* @pattern ``
|
|
11
|
+
*/
|
|
12
|
+
ConsumableResourceName?: string;
|
|
13
|
+
/**
|
|
14
|
+
* Type of Consumable Resource.
|
|
15
|
+
*/
|
|
16
|
+
ResourceType: ResourceType;
|
|
17
|
+
/**
|
|
18
|
+
* A key-value pair to associate with a resource.
|
|
19
|
+
*/
|
|
20
|
+
Tags?: Record<string, string>;
|
|
21
|
+
/**
|
|
22
|
+
* Total Quantity of ConsumableResource.
|
|
23
|
+
*/
|
|
24
|
+
TotalQuantity: number;
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* Attribute type definition for `AWS::Batch::ConsumableResource`.
|
|
28
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html#aws-resource-batch-consumableresource-return-values}
|
|
29
|
+
*/
|
|
30
|
+
export type BatchConsumableResourceAttributes = {
|
|
31
|
+
/**
|
|
32
|
+
* Available Quantity of ConsumableResource.
|
|
33
|
+
*/
|
|
34
|
+
AvailableQuantity: number;
|
|
35
|
+
/**
|
|
36
|
+
* ARN of the Consumable Resource.
|
|
37
|
+
*/
|
|
38
|
+
ConsumableResourceArn: string;
|
|
39
|
+
CreatedAt: number;
|
|
40
|
+
/**
|
|
41
|
+
* In-use Quantity of ConsumableResource.
|
|
42
|
+
*/
|
|
43
|
+
InUseQuantity: number;
|
|
44
|
+
};
|
|
45
|
+
/**
|
|
46
|
+
* Type definition for `AWS::Batch::ConsumableResource.ResourceType`.
|
|
47
|
+
* Type of Consumable Resource.
|
|
48
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-consumableresource-resourcetype.html}
|
|
49
|
+
*/
|
|
50
|
+
export type ResourceType = "REPLENISHABLE" | "NON_REPLENISHABLE";
|
|
51
|
+
/**
|
|
52
|
+
* Resource Type schema for AWS::Batch::ConsumableResource
|
|
53
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
54
|
+
*/
|
|
55
|
+
export declare class BatchConsumableResource extends $Resource<"AWS::Batch::ConsumableResource", BatchConsumableResourceProperties, BatchConsumableResourceAttributes> {
|
|
56
|
+
static readonly Type = "AWS::Batch::ConsumableResource";
|
|
57
|
+
constructor(logicalId: string, properties: BatchConsumableResourceProperties, options?: $ResourceOptions);
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=AWS-Batch-ConsumableResource.d.ts.map
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
|
+
/**
|
|
3
|
+
* Resource Type schema for AWS::Batch::ConsumableResource
|
|
4
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-consumableresource.html}
|
|
5
|
+
*/
|
|
6
|
+
export class BatchConsumableResource extends $Resource {
|
|
7
|
+
static Type = "AWS::Batch::ConsumableResource";
|
|
8
|
+
constructor(logicalId, properties, options) {
|
|
9
|
+
super(logicalId, BatchConsumableResource.Type, properties, options);
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=AWS-Batch-ConsumableResource.js.map
|
|
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobdefinition.html}
|
|
6
6
|
*/
|
|
7
7
|
export type BatchJobDefinitionProperties = {
|
|
8
|
+
ConsumableResourceProperties?: ConsumableResourceProperties;
|
|
8
9
|
ContainerProperties?: ContainerProperties;
|
|
9
10
|
EcsProperties?: EcsProperties;
|
|
10
11
|
EksProperties?: EksProperties;
|
|
@@ -25,6 +26,25 @@ export type BatchJobDefinitionProperties = {
|
|
|
25
26
|
Timeout?: JobTimeout;
|
|
26
27
|
Type: string;
|
|
27
28
|
};
|
|
29
|
+
/**
|
|
30
|
+
* Type definition for `AWS::Batch::JobDefinition.ConsumableResourceProperties`.
|
|
31
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourceproperties.html}
|
|
32
|
+
*/
|
|
33
|
+
export type ConsumableResourceProperties = {
|
|
34
|
+
ConsumableResourceList: ConsumableResourceRequirement[];
|
|
35
|
+
};
|
|
36
|
+
/**
|
|
37
|
+
* Type definition for `AWS::Batch::JobDefinition.ConsumableResourceRequirement`.
|
|
38
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-consumableresourcerequirement.html}
|
|
39
|
+
*/
|
|
40
|
+
export type ConsumableResourceRequirement = {
|
|
41
|
+
/**
|
|
42
|
+
* The ARN of the consumable resource the job definition should consume.
|
|
43
|
+
* @pattern `arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}`
|
|
44
|
+
*/
|
|
45
|
+
ConsumableResource: string;
|
|
46
|
+
Quantity: number;
|
|
47
|
+
};
|
|
28
48
|
/**
|
|
29
49
|
* Type definition for `AWS::Batch::JobDefinition.ContainerProperties`.
|
|
30
50
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-containerproperties.html}
|
|
@@ -375,6 +395,7 @@ export type NodeProperties = {
|
|
|
375
395
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-noderangeproperty.html}
|
|
376
396
|
*/
|
|
377
397
|
export type NodeRangeProperty = {
|
|
398
|
+
ConsumableResourceProperties?: ConsumableResourceProperties;
|
|
378
399
|
Container?: MultiNodeContainerProperties;
|
|
379
400
|
EcsProperties?: MultiNodeEcsProperties;
|
|
380
401
|
EksProperties?: EksProperties;
|
|
@@ -246,12 +246,12 @@ export type FlowDataConnectionConfiguration = {
|
|
|
246
246
|
export type FlowDefinition = {
|
|
247
247
|
/**
|
|
248
248
|
* List of connections
|
|
249
|
-
* @maxLength `
|
|
249
|
+
* @maxLength `100`
|
|
250
250
|
*/
|
|
251
251
|
Connections?: FlowConnection[];
|
|
252
252
|
/**
|
|
253
253
|
* List of nodes in a flow
|
|
254
|
-
* @maxLength `
|
|
254
|
+
* @maxLength `40`
|
|
255
255
|
*/
|
|
256
256
|
Nodes?: FlowNode[];
|
|
257
257
|
};
|
|
@@ -743,7 +743,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
743
743
|
/**
|
|
744
744
|
* List of input variables
|
|
745
745
|
* @minLength `0`
|
|
746
|
-
* @maxLength `
|
|
746
|
+
* @maxLength `20`
|
|
747
747
|
*/
|
|
748
748
|
InputVariables?: PromptInputVariable[];
|
|
749
749
|
/**
|
|
@@ -39,7 +39,7 @@ export type BedrockFlowVersionAttributes = {
|
|
|
39
39
|
Definition: {
|
|
40
40
|
/**
|
|
41
41
|
* List of connections
|
|
42
|
-
* @maxLength `
|
|
42
|
+
* @maxLength `100`
|
|
43
43
|
*/
|
|
44
44
|
Connections: {
|
|
45
45
|
/**
|
|
@@ -68,7 +68,7 @@ export type BedrockFlowVersionAttributes = {
|
|
|
68
68
|
}[];
|
|
69
69
|
/**
|
|
70
70
|
* List of nodes in a flow
|
|
71
|
-
* @maxLength `
|
|
71
|
+
* @maxLength `40`
|
|
72
72
|
*/
|
|
73
73
|
Nodes: {
|
|
74
74
|
/**
|
|
@@ -287,12 +287,12 @@ export type FlowDataConnectionConfiguration = {
|
|
|
287
287
|
export type FlowDefinition = {
|
|
288
288
|
/**
|
|
289
289
|
* List of connections
|
|
290
|
-
* @maxLength `
|
|
290
|
+
* @maxLength `100`
|
|
291
291
|
*/
|
|
292
292
|
Connections?: FlowConnection[];
|
|
293
293
|
/**
|
|
294
294
|
* List of nodes in a flow
|
|
295
|
-
* @maxLength `
|
|
295
|
+
* @maxLength `40`
|
|
296
296
|
*/
|
|
297
297
|
Nodes?: FlowNode[];
|
|
298
298
|
};
|
|
@@ -741,7 +741,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
741
741
|
/**
|
|
742
742
|
* List of input variables
|
|
743
743
|
* @minLength `0`
|
|
744
|
-
* @maxLength `
|
|
744
|
+
* @maxLength `20`
|
|
745
745
|
*/
|
|
746
746
|
InputVariables?: PromptInputVariable[];
|
|
747
747
|
/**
|
|
@@ -116,7 +116,7 @@ export type ChatPromptTemplateConfiguration = {
|
|
|
116
116
|
/**
|
|
117
117
|
* List of input variables
|
|
118
118
|
* @minLength `0`
|
|
119
|
-
* @maxLength `
|
|
119
|
+
* @maxLength `20`
|
|
120
120
|
*/
|
|
121
121
|
InputVariables?: PromptInputVariable[];
|
|
122
122
|
/**
|
|
@@ -218,6 +218,27 @@ export type PromptInputVariable = {
|
|
|
218
218
|
*/
|
|
219
219
|
Name?: string;
|
|
220
220
|
};
|
|
221
|
+
/**
|
|
222
|
+
* Type definition for `AWS::Bedrock::Prompt.PromptMetadataEntry`.
|
|
223
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-prompt-promptmetadataentry.html}
|
|
225
|
+
*/
|
|
226
|
+
export type PromptMetadataEntry = {
|
|
227
|
+
/**
|
|
228
|
+
* The key of a metadata tag for a prompt variant.
|
|
229
|
+
* @minLength `1`
|
|
230
|
+
* @maxLength `128`
|
|
231
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
232
|
+
*/
|
|
233
|
+
Key: string;
|
|
234
|
+
/**
|
|
235
|
+
* The value of a metadata tag for a prompt variant.
|
|
236
|
+
* @minLength `1`
|
|
237
|
+
* @maxLength `1024`
|
|
238
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
239
|
+
*/
|
|
240
|
+
Value: string;
|
|
241
|
+
};
|
|
221
242
|
/**
|
|
222
243
|
* Type definition for `AWS::Bedrock::Prompt.PromptModelInferenceConfiguration`.
|
|
223
244
|
* Prompt model inference configuration
|
|
@@ -283,6 +304,12 @@ export type PromptVariant = {
|
|
|
283
304
|
AdditionalModelRequestFields?: AdditionalModelRequestFields;
|
|
284
305
|
GenAiResource?: PromptGenAiResource;
|
|
285
306
|
InferenceConfiguration?: PromptInferenceConfiguration;
|
|
307
|
+
/**
|
|
308
|
+
* List of metadata to associate with the prompt variant.
|
|
309
|
+
* @minLength `0`
|
|
310
|
+
* @maxLength `50`
|
|
311
|
+
*/
|
|
312
|
+
Metadata?: PromptMetadataEntry[];
|
|
286
313
|
/**
|
|
287
314
|
* ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
|
|
288
315
|
* @minLength `1`
|
|
@@ -354,7 +381,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
354
381
|
/**
|
|
355
382
|
* List of input variables
|
|
356
383
|
* @minLength `0`
|
|
357
|
-
* @maxLength `
|
|
384
|
+
* @maxLength `20`
|
|
358
385
|
*/
|
|
359
386
|
InputVariables?: PromptInputVariable[];
|
|
360
387
|
/**
|
|
@@ -119,6 +119,27 @@ export type BedrockPromptVersionAttributes = {
|
|
|
119
119
|
TopP: number;
|
|
120
120
|
};
|
|
121
121
|
};
|
|
122
|
+
/**
|
|
123
|
+
* List of metadata to associate with the prompt variant.
|
|
124
|
+
* @minLength `0`
|
|
125
|
+
* @maxLength `50`
|
|
126
|
+
*/
|
|
127
|
+
Metadata: {
|
|
128
|
+
/**
|
|
129
|
+
* The key of a metadata tag for a prompt variant.
|
|
130
|
+
* @minLength `1`
|
|
131
|
+
* @maxLength `128`
|
|
132
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
133
|
+
*/
|
|
134
|
+
Key: string;
|
|
135
|
+
/**
|
|
136
|
+
* The value of a metadata tag for a prompt variant.
|
|
137
|
+
* @minLength `1`
|
|
138
|
+
* @maxLength `1024`
|
|
139
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
140
|
+
*/
|
|
141
|
+
Value: string;
|
|
142
|
+
}[];
|
|
122
143
|
/**
|
|
123
144
|
* ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
|
|
124
145
|
* @minLength `1`
|
|
@@ -192,7 +213,7 @@ export type ChatPromptTemplateConfiguration = {
|
|
|
192
213
|
/**
|
|
193
214
|
* List of input variables
|
|
194
215
|
* @minLength `0`
|
|
195
|
-
* @maxLength `
|
|
216
|
+
* @maxLength `20`
|
|
196
217
|
*/
|
|
197
218
|
InputVariables?: PromptInputVariable[];
|
|
198
219
|
/**
|
|
@@ -294,6 +315,27 @@ export type PromptInputVariable = {
|
|
|
294
315
|
*/
|
|
295
316
|
Name?: string;
|
|
296
317
|
};
|
|
318
|
+
/**
|
|
319
|
+
* Type definition for `AWS::Bedrock::PromptVersion.PromptMetadataEntry`.
|
|
320
|
+
* Contains a key-value pair that defines a metadata tag and value to attach to a prompt variant.
|
|
321
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-promptversion-promptmetadataentry.html}
|
|
322
|
+
*/
|
|
323
|
+
export type PromptMetadataEntry = {
|
|
324
|
+
/**
|
|
325
|
+
* The key of a metadata tag for a prompt variant.
|
|
326
|
+
* @minLength `1`
|
|
327
|
+
* @maxLength `128`
|
|
328
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
329
|
+
*/
|
|
330
|
+
Key: string;
|
|
331
|
+
/**
|
|
332
|
+
* The value of a metadata tag for a prompt variant.
|
|
333
|
+
* @minLength `1`
|
|
334
|
+
* @maxLength `1024`
|
|
335
|
+
* @pattern `^[a-zA-Z0-9\s._:/=+@-]*$`
|
|
336
|
+
*/
|
|
337
|
+
Value: string;
|
|
338
|
+
};
|
|
297
339
|
/**
|
|
298
340
|
* Type definition for `AWS::Bedrock::PromptVersion.PromptModelInferenceConfiguration`.
|
|
299
341
|
* Prompt model inference configuration
|
|
@@ -359,6 +401,12 @@ export type PromptVariant = {
|
|
|
359
401
|
AdditionalModelRequestFields?: AdditionalModelRequestFields;
|
|
360
402
|
GenAiResource?: PromptGenAiResource;
|
|
361
403
|
InferenceConfiguration?: PromptInferenceConfiguration;
|
|
404
|
+
/**
|
|
405
|
+
* List of metadata to associate with the prompt variant.
|
|
406
|
+
* @minLength `0`
|
|
407
|
+
* @maxLength `50`
|
|
408
|
+
*/
|
|
409
|
+
Metadata?: PromptMetadataEntry[];
|
|
362
410
|
/**
|
|
363
411
|
* ARN or Id of a Bedrock Foundational Model or Inference Profile, or the ARN of a imported model, or a provisioned throughput ARN for custom models.
|
|
364
412
|
* @minLength `1`
|
|
@@ -430,7 +478,7 @@ export type TextPromptTemplateConfiguration = {
|
|
|
430
478
|
/**
|
|
431
479
|
* List of input variables
|
|
432
480
|
* @minLength `0`
|
|
433
|
-
* @maxLength `
|
|
481
|
+
* @maxLength `20`
|
|
434
482
|
*/
|
|
435
483
|
InputVariables?: PromptInputVariable[];
|
|
436
484
|
/**
|
|
@@ -15,6 +15,10 @@ export type DataZoneDomainProperties = {
|
|
|
15
15
|
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
16
16
|
*/
|
|
17
17
|
DomainExecutionRole: string;
|
|
18
|
+
/**
|
|
19
|
+
* The version of the domain.
|
|
20
|
+
*/
|
|
21
|
+
DomainVersion?: "V1" | "V2";
|
|
18
22
|
/**
|
|
19
23
|
* The identifier of the AWS Key Management Service (KMS) key that is used to encrypt the Amazon DataZone domain, metadata, and reporting data.
|
|
20
24
|
* @minLength `1`
|
|
@@ -26,6 +30,11 @@ export type DataZoneDomainProperties = {
|
|
|
26
30
|
* The name of the Amazon DataZone domain.
|
|
27
31
|
*/
|
|
28
32
|
Name: string;
|
|
33
|
+
/**
|
|
34
|
+
* The service role of the domain that is created.
|
|
35
|
+
* @pattern `^arn:aws[^:]*:iam::\d{12}:(role|role/service-role)/[\w+=,.@-]*$`
|
|
36
|
+
*/
|
|
37
|
+
ServiceRole?: string;
|
|
29
38
|
/**
|
|
30
39
|
* The single-sign on configuration of the Amazon DataZone domain.
|
|
31
40
|
*/
|
|
@@ -1,55 +1,54 @@
|
|
|
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
|
-
* AWS::ECR::RepositoryCreationTemplate
|
|
4
|
+
* Resource type definition for `AWS::ECR::RepositoryCreationTemplate`.
|
|
5
|
+
* The details of the repository creation template associated with the request.
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html}
|
|
6
7
|
*/
|
|
7
8
|
export type ECRRepositoryCreationTemplateProperties = {
|
|
8
9
|
/**
|
|
9
|
-
* A list of enumerable Strings representing the repository creation scenarios that
|
|
10
|
+
* A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The two supported scenarios are PULL_THROUGH_CACHE and REPLICATION
|
|
10
11
|
*/
|
|
11
12
|
AppliedFor: AppliedForItem[];
|
|
12
13
|
/**
|
|
13
|
-
* The ARN of the role to be assumed by ECR.
|
|
14
|
+
* The ARN of the role to be assumed by Amazon ECR. Amazon ECR will assume your supplied role when the customRoleArn is specified. When this field isn't specified, Amazon ECR will use the service-linked role for the repository creation template.
|
|
14
15
|
* @maxLength `2048`
|
|
15
16
|
* @pattern `^arn:aws[-a-z0-9]*:iam::[0-9]{12}:role/[A-Za-z0-9+=,-.@_]*$`
|
|
16
17
|
*/
|
|
17
18
|
CustomRoleArn?: string;
|
|
18
19
|
/**
|
|
19
|
-
* The description
|
|
20
|
+
* The description associated with the repository creation template.
|
|
20
21
|
* @minLength `0`
|
|
21
22
|
* @maxLength `256`
|
|
22
23
|
*/
|
|
23
24
|
Description?: string;
|
|
24
25
|
/**
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
|
28
|
-
*/
|
|
26
|
+
* The encryption configuration associated with the repository creation template.
|
|
27
|
+
*/
|
|
29
28
|
EncryptionConfiguration?: EncryptionConfiguration;
|
|
30
29
|
/**
|
|
31
|
-
* The
|
|
30
|
+
* The tag mutability setting for the repository. If this parameter is omitted, the default setting of MUTABLE will be used which will allow image tags to be overwritten. If IMMUTABLE is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
|
|
32
31
|
*/
|
|
33
32
|
ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
|
|
34
33
|
/**
|
|
35
|
-
* The
|
|
34
|
+
* The lifecycle policy to use for repositories created using the template.
|
|
36
35
|
* @minLength `100`
|
|
37
36
|
* @maxLength `30720`
|
|
38
37
|
*/
|
|
39
38
|
LifecyclePolicy?: string;
|
|
40
39
|
/**
|
|
41
|
-
* The prefix
|
|
40
|
+
* The repository namespace prefix associated with the repository creation template.
|
|
42
41
|
* @minLength `1`
|
|
43
42
|
* @maxLength `256`
|
|
44
43
|
* @pattern `^((?:[a-z0-9]+(?:[._-][a-z0-9]+)/*)*[a-z0-9]+(?:[._-][a-z0-9]+)/*?|ROOT)$`
|
|
45
44
|
*/
|
|
46
45
|
Prefix: string;
|
|
47
46
|
/**
|
|
48
|
-
*
|
|
47
|
+
* he repository policy to apply to repositories created using the template. A repository policy is a permissions policy associated with a repository to control access permissions.
|
|
49
48
|
*/
|
|
50
49
|
RepositoryPolicy?: string;
|
|
51
50
|
/**
|
|
52
|
-
*
|
|
51
|
+
* The metadata to apply to the repository to help you categorize and organize. Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
53
52
|
* @maxLength `50`
|
|
54
53
|
*/
|
|
55
54
|
ResourceTags?: Tag[];
|
|
@@ -59,13 +58,7 @@ export type ECRRepositoryCreationTemplateProperties = {
|
|
|
59
58
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html#aws-resource-ecr-repositorycreationtemplate-return-values}
|
|
60
59
|
*/
|
|
61
60
|
export type ECRRepositoryCreationTemplateAttributes = {
|
|
62
|
-
/**
|
|
63
|
-
* Create timestamp of the template.
|
|
64
|
-
*/
|
|
65
61
|
CreatedAt: string;
|
|
66
|
-
/**
|
|
67
|
-
* Update timestamp of the template.
|
|
68
|
-
*/
|
|
69
62
|
UpdatedAt: string;
|
|
70
63
|
};
|
|
71
64
|
/**
|
|
@@ -76,18 +69,22 @@ export type ECRRepositoryCreationTemplateAttributes = {
|
|
|
76
69
|
export type AppliedForItem = "REPLICATION" | "PULL_THROUGH_CACHE";
|
|
77
70
|
/**
|
|
78
71
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.EncryptionConfiguration`.
|
|
79
|
-
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
80
|
-
|
|
81
|
-
For more information, see https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html
|
|
72
|
+
* The encryption configuration for the repository. This determines how the contents of your repository are encrypted at rest.
|
|
73
|
+
By default, when no encryption configuration is set or the ``AES256`` encryption type is used, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts your data at rest using an AES256 encryption algorithm. This does not require any action on your part.
|
|
74
|
+
For more control over the encryption of the contents of your repository, you can use server-side encryption with KMSlong key stored in KMSlong (KMS) to encrypt your images. For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
82
75
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptionconfiguration.html}
|
|
83
76
|
*/
|
|
84
77
|
export type EncryptionConfiguration = {
|
|
85
78
|
/**
|
|
86
|
-
|
|
87
|
-
|
|
79
|
+
* The encryption type to use.
|
|
80
|
+
If you use the ``KMS`` encryption type, the contents of the repository will be encrypted using server-side encryption with KMSlong key stored in KMS. When you use KMS to encrypt your data, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you already created.
|
|
81
|
+
If you use the ``KMS_DSSE`` encryption type, the contents of the repository will be encrypted with two layers of encryption using server-side encryption with the KMS Management Service key stored in KMS. Similar to the ``KMS`` encryption type, you can either use the default AWS managed KMS key for Amazon ECR, or specify your own KMS key, which you've already created.
|
|
82
|
+
If you use the ``AES256`` encryption type, Amazon ECR uses server-side encryption with Amazon S3-managed encryption keys which encrypts the images in the repository using an AES256 encryption algorithm.
|
|
83
|
+
For more information, see [Amazon ECR encryption at rest](https://docs.aws.amazon.com/AmazonECR/latest/userguide/encryption-at-rest.html) in the *Amazon Elastic Container Registry User Guide*.
|
|
84
|
+
*/
|
|
88
85
|
EncryptionType: EncryptionType;
|
|
89
86
|
/**
|
|
90
|
-
* If you use the KMS
|
|
87
|
+
* If you use the ``KMS`` encryption type, specify the KMS key to use for encryption. The alias, key ID, or full ARN of the KMS key can be specified. The key must exist in the same Region as the repository. If no key is specified, the default AWS managed KMS key for Amazon ECR will be used.
|
|
91
88
|
* @minLength `1`
|
|
92
89
|
* @maxLength `2048`
|
|
93
90
|
*/
|
|
@@ -101,25 +98,26 @@ export type EncryptionConfiguration = {
|
|
|
101
98
|
export type EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
|
102
99
|
/**
|
|
103
100
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
|
|
104
|
-
*
|
|
101
|
+
* The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
|
|
105
102
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-tag.html}
|
|
106
103
|
*/
|
|
107
104
|
export type Tag = {
|
|
108
105
|
/**
|
|
109
|
-
*
|
|
106
|
+
* One part of a key-value pair that make up a tag. A ``key`` is a general label that acts like a category for more specific tag values.
|
|
110
107
|
* @minLength `1`
|
|
111
108
|
* @maxLength `128`
|
|
112
109
|
*/
|
|
113
110
|
Key: string;
|
|
114
111
|
/**
|
|
115
|
-
*
|
|
112
|
+
* A ``value`` acts as a descriptor within a tag category (key).
|
|
116
113
|
* @minLength `0`
|
|
117
114
|
* @maxLength `256`
|
|
118
115
|
*/
|
|
119
116
|
Value: string;
|
|
120
117
|
};
|
|
121
118
|
/**
|
|
122
|
-
* AWS::ECR::RepositoryCreationTemplate
|
|
119
|
+
* Resource type definition for `AWS::ECR::RepositoryCreationTemplate`.
|
|
120
|
+
* The details of the repository creation template associated with the request.
|
|
123
121
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html}
|
|
124
122
|
*/
|
|
125
123
|
export declare class ECRRepositoryCreationTemplate extends $Resource<"AWS::ECR::RepositoryCreationTemplate", ECRRepositoryCreationTemplateProperties, ECRRepositoryCreationTemplateAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* AWS::ECR::RepositoryCreationTemplate
|
|
3
|
+
* Resource type definition for `AWS::ECR::RepositoryCreationTemplate`.
|
|
4
|
+
* The details of the repository creation template associated with the request.
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html}
|
|
5
6
|
*/
|
|
6
7
|
export class ECRRepositoryCreationTemplate extends $Resource {
|
package/lib/AWS-ECS-Cluster.d.ts
CHANGED
|
@@ -169,12 +169,14 @@ export type ExecuteCommandLogConfiguration = {
|
|
|
169
169
|
*/
|
|
170
170
|
export type ManagedStorageConfiguration = {
|
|
171
171
|
/**
|
|
172
|
-
|
|
173
|
-
|
|
172
|
+
* Specify the KMSlong key ID for the Fargate ephemeral storage.
|
|
173
|
+
The key must be a single Region key.
|
|
174
|
+
*/
|
|
174
175
|
FargateEphemeralStorageKmsKeyId?: string;
|
|
175
176
|
/**
|
|
176
|
-
|
|
177
|
-
|
|
177
|
+
* Specify a KMSlong key ID to encrypt the managed storage.
|
|
178
|
+
The key must be a single Region key.
|
|
179
|
+
*/
|
|
178
180
|
KmsKeyId?: string;
|
|
179
181
|
};
|
|
180
182
|
/**
|
|
@@ -185,7 +187,7 @@ export type ManagedStorageConfiguration = {
|
|
|
185
187
|
*/
|
|
186
188
|
export type ServiceConnectDefaults = {
|
|
187
189
|
/**
|
|
188
|
-
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include
|
|
190
|
+
* The namespace name or full Amazon Resource Name (ARN) of the CMAPlong namespace that's used when you create a service and don't specify a Service Connect configuration. The namespace name can include up to 1024 characters. The name is case-sensitive. The name can't include greater than (>), less than (<), double quotation marks ("), or slash (/).
|
|
189
191
|
If you enter an existing namespace name or ARN, then that namespace will be used. Any namespace type is supported. The namespace must be in this account and this AWS Region.
|
|
190
192
|
If you enter a new name, a CMAPlong namespace will be created. Amazon ECS creates a CMAP namespace with the "API calls" method of instance discovery only. This instance discovery method is the "HTTP" namespace type in the CLIlong. Other types of instance discovery aren't used by Service Connect.
|
|
191
193
|
If you update the cluster with an empty string ``""`` for the namespace name, the cluster configuration for Service Connect is removed. Note that the namespace will remain in CMAP and must be deleted separately.
|
|
@@ -57,10 +57,6 @@ export type GatewayCapabilitySummary = {
|
|
|
57
57
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-gateway-gatewayplatform.html}
|
|
58
58
|
*/
|
|
59
59
|
export type GatewayPlatform = {
|
|
60
|
-
/**
|
|
61
|
-
* A gateway that runs on AWS IoT Greengrass V1.
|
|
62
|
-
*/
|
|
63
|
-
Greengrass?: any;
|
|
64
60
|
/**
|
|
65
61
|
* A gateway that runs on AWS IoT Greengrass V2.
|
|
66
62
|
*/
|
|
@@ -1,14 +1,15 @@
|
|
|
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
|
-
*
|
|
4
|
+
* Resource type definition for `AWS::PCAConnectorAD::Connector`.
|
|
5
|
+
* Represents a Connector that connects AWS PrivateCA and your directory
|
|
5
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html}
|
|
6
7
|
*/
|
|
7
8
|
export type PCAConnectorADConnectorProperties = {
|
|
8
9
|
/**
|
|
9
10
|
* @minLength `5`
|
|
10
11
|
* @maxLength `200`
|
|
11
|
-
* @pattern `^arn:[\w-]+:acm-pca:[\w-]+:[0-9]+:certificate-authority
|
|
12
|
+
* @pattern `^arn:[\w-]+:acm-pca:[\w-]+:[0-9]+:certificate-authority\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
12
13
|
*/
|
|
13
14
|
CertificateAuthorityArn: string;
|
|
14
15
|
/**
|
|
@@ -26,7 +27,7 @@ export type PCAConnectorADConnectorAttributes = {
|
|
|
26
27
|
/**
|
|
27
28
|
* @minLength `5`
|
|
28
29
|
* @maxLength `200`
|
|
29
|
-
* @pattern `^arn:[\w-]+:pca-connector-ad:[\w-]+:[0-9]+:connector
|
|
30
|
+
* @pattern `^arn:[\w-]+:pca-connector-ad:[\w-]+:[0-9]+:connector\/[0-9a-f]{8}(-[0-9a-f]{4}){3}-[0-9a-f]{12}$`
|
|
30
31
|
*/
|
|
31
32
|
ConnectorArn: string;
|
|
32
33
|
};
|
|
@@ -40,6 +41,7 @@ export type Tags = Record<string, string>;
|
|
|
40
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcaconnectorad-connector-vpcinformation.html}
|
|
41
42
|
*/
|
|
42
43
|
export type VpcInformation = {
|
|
44
|
+
IpAddressType?: "IPV4" | "DUALSTACK";
|
|
43
45
|
/**
|
|
44
46
|
* @minLength `1`
|
|
45
47
|
* @maxLength `5`
|
|
@@ -47,7 +49,8 @@ export type VpcInformation = {
|
|
|
47
49
|
SecurityGroupIds: string[];
|
|
48
50
|
};
|
|
49
51
|
/**
|
|
50
|
-
*
|
|
52
|
+
* Resource type definition for `AWS::PCAConnectorAD::Connector`.
|
|
53
|
+
* Represents a Connector that connects AWS PrivateCA and your directory
|
|
51
54
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html}
|
|
52
55
|
*/
|
|
53
56
|
export declare class PCAConnectorADConnector extends $Resource<"AWS::PCAConnectorAD::Connector", PCAConnectorADConnectorProperties, PCAConnectorADConnectorAttributes> {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Resource type definition for `AWS::PCAConnectorAD::Connector`.
|
|
4
|
+
* Represents a Connector that connects AWS PrivateCA and your directory
|
|
4
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-pcaconnectorad-connector.html}
|
|
5
6
|
*/
|
|
6
7
|
export class PCAConnectorADConnector extends $Resource {
|
|
@@ -1426,6 +1426,11 @@ export type CustomValuesConfiguration = {
|
|
|
1426
1426
|
CustomValues: CustomParameterValues;
|
|
1427
1427
|
IncludeNullValue?: boolean;
|
|
1428
1428
|
};
|
|
1429
|
+
/**
|
|
1430
|
+
* Type definition for `AWS::QuickSight::Analysis.DashboardBehavior`.
|
|
1431
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-dashboardbehavior.html}
|
|
1432
|
+
*/
|
|
1433
|
+
export type DashboardBehavior = "ENABLED" | "DISABLED";
|
|
1429
1434
|
/**
|
|
1430
1435
|
* Type definition for `AWS::QuickSight::Analysis.DataBarsOptions`.
|
|
1431
1436
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-databarsoptions.html}
|
|
@@ -3217,7 +3222,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3217
3222
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-geospatiallayermapconfiguration.html}
|
|
3218
3223
|
*/
|
|
3219
3224
|
export type GeospatialLayerMapConfiguration = {
|
|
3220
|
-
Interactions?:
|
|
3225
|
+
Interactions?: VisualInteractionOptions;
|
|
3221
3226
|
Legend?: LegendOptions;
|
|
3222
3227
|
MapLayers?: GeospatialLayerItem[];
|
|
3223
3228
|
MapState?: GeospatialMapState;
|
|
@@ -3287,7 +3292,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3287
3292
|
*/
|
|
3288
3293
|
export type GeospatialMapConfiguration = {
|
|
3289
3294
|
FieldWells?: GeospatialMapFieldWells;
|
|
3290
|
-
Interactions?:
|
|
3295
|
+
Interactions?: VisualInteractionOptions;
|
|
3291
3296
|
Legend?: LegendOptions;
|
|
3292
3297
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3293
3298
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -3825,7 +3830,7 @@ export type ImageInteractionOptions = {
|
|
|
3825
3830
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-imagemenuoption.html}
|
|
3826
3831
|
*/
|
|
3827
3832
|
export type ImageMenuOption = {
|
|
3828
|
-
AvailabilityStatus?:
|
|
3833
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
3829
3834
|
};
|
|
3830
3835
|
/**
|
|
3831
3836
|
* Type definition for `AWS::QuickSight::Analysis.ImageStaticFile`.
|
|
@@ -4672,7 +4677,7 @@ export type NumberFormatConfiguration = {
|
|
|
4672
4677
|
* Type definition for `AWS::QuickSight::Analysis.NumberScale`.
|
|
4673
4678
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numberscale.html}
|
|
4674
4679
|
*/
|
|
4675
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4680
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
4676
4681
|
/**
|
|
4677
4682
|
* Type definition for `AWS::QuickSight::Analysis.NumericalAggregationFunction`.
|
|
4678
4683
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-numericalaggregationfunction.html}
|
|
@@ -6480,11 +6485,6 @@ export type ShapeConditionalFormat = {
|
|
|
6480
6485
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-sheet.html}
|
|
6481
6486
|
*/
|
|
6482
6487
|
export type Sheet = {
|
|
6483
|
-
/**
|
|
6484
|
-
* @minLength `0`
|
|
6485
|
-
* @maxLength `10`
|
|
6486
|
-
*/
|
|
6487
|
-
Images?: SheetImage[];
|
|
6488
6488
|
/**
|
|
6489
6489
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6490
6490
|
console.</p>
|
|
@@ -7907,6 +7907,14 @@ export type VisualCustomActionOperation = {
|
|
|
7907
7907
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualcustomactiontrigger.html}
|
|
7908
7908
|
*/
|
|
7909
7909
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
7910
|
+
/**
|
|
7911
|
+
* Type definition for `AWS::QuickSight::Analysis.VisualInteractionOptions`.
|
|
7912
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualinteractionoptions.html}
|
|
7913
|
+
*/
|
|
7914
|
+
export type VisualInteractionOptions = {
|
|
7915
|
+
ContextMenuOption?: any;
|
|
7916
|
+
VisualMenuOption?: any;
|
|
7917
|
+
};
|
|
7910
7918
|
/**
|
|
7911
7919
|
* Type definition for `AWS::QuickSight::Analysis.VisualPalette`.
|
|
7912
7920
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-visualpalette.html}
|
|
@@ -142,154 +142,6 @@ export type QuickSightDashboardAttributes = {
|
|
|
142
142
|
* @maxLength `20`
|
|
143
143
|
*/
|
|
144
144
|
Sheets: {
|
|
145
|
-
/**
|
|
146
|
-
* @minLength `0`
|
|
147
|
-
* @maxLength `10`
|
|
148
|
-
*/
|
|
149
|
-
Images: {
|
|
150
|
-
/**
|
|
151
|
-
* @minLength `0`
|
|
152
|
-
* @maxLength `10`
|
|
153
|
-
*/
|
|
154
|
-
Actions: {
|
|
155
|
-
/**
|
|
156
|
-
* @minLength `1`
|
|
157
|
-
* @maxLength `2`
|
|
158
|
-
*/
|
|
159
|
-
ActionOperations: {
|
|
160
|
-
NavigationOperation: {
|
|
161
|
-
LocalNavigationConfiguration: {
|
|
162
|
-
/**
|
|
163
|
-
* @minLength `1`
|
|
164
|
-
* @maxLength `512`
|
|
165
|
-
* @pattern `^[\w\-]+$`
|
|
166
|
-
*/
|
|
167
|
-
TargetSheetId: string;
|
|
168
|
-
};
|
|
169
|
-
};
|
|
170
|
-
SetParametersOperation: {
|
|
171
|
-
/**
|
|
172
|
-
* @minLength `1`
|
|
173
|
-
* @maxLength `200`
|
|
174
|
-
*/
|
|
175
|
-
ParameterValueConfigurations: {
|
|
176
|
-
/**
|
|
177
|
-
* @minLength `1`
|
|
178
|
-
* @maxLength `2048`
|
|
179
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
|
180
|
-
*/
|
|
181
|
-
DestinationParameterName: string;
|
|
182
|
-
Value: {
|
|
183
|
-
CustomValuesConfiguration: {
|
|
184
|
-
CustomValues: {
|
|
185
|
-
/**
|
|
186
|
-
* @minLength `0`
|
|
187
|
-
* @maxLength `50000`
|
|
188
|
-
*/
|
|
189
|
-
DateTimeValues: string[];
|
|
190
|
-
/**
|
|
191
|
-
* @minLength `0`
|
|
192
|
-
* @maxLength `50000`
|
|
193
|
-
*/
|
|
194
|
-
DecimalValues: number[];
|
|
195
|
-
/**
|
|
196
|
-
* @minLength `0`
|
|
197
|
-
* @maxLength `50000`
|
|
198
|
-
*/
|
|
199
|
-
IntegerValues: number[];
|
|
200
|
-
/**
|
|
201
|
-
* @minLength `0`
|
|
202
|
-
* @maxLength `50000`
|
|
203
|
-
*/
|
|
204
|
-
StringValues: string[];
|
|
205
|
-
};
|
|
206
|
-
IncludeNullValue: boolean;
|
|
207
|
-
};
|
|
208
|
-
SelectAllValueOptions: SelectAllValueOptions;
|
|
209
|
-
SourceColumn: {
|
|
210
|
-
/**
|
|
211
|
-
* @minLength `1`
|
|
212
|
-
* @maxLength `127`
|
|
213
|
-
*/
|
|
214
|
-
ColumnName: string;
|
|
215
|
-
/**
|
|
216
|
-
* @minLength `1`
|
|
217
|
-
* @maxLength `2048`
|
|
218
|
-
*/
|
|
219
|
-
DataSetIdentifier: string;
|
|
220
|
-
};
|
|
221
|
-
/**
|
|
222
|
-
* @minLength `1`
|
|
223
|
-
* @maxLength `512`
|
|
224
|
-
*/
|
|
225
|
-
SourceField: string;
|
|
226
|
-
SourceParameterName: string;
|
|
227
|
-
};
|
|
228
|
-
}[];
|
|
229
|
-
};
|
|
230
|
-
URLOperation: {
|
|
231
|
-
URLTarget: URLTargetConfiguration;
|
|
232
|
-
/**
|
|
233
|
-
* @minLength `1`
|
|
234
|
-
* @maxLength `2048`
|
|
235
|
-
*/
|
|
236
|
-
URLTemplate: string;
|
|
237
|
-
};
|
|
238
|
-
}[];
|
|
239
|
-
/**
|
|
240
|
-
* @minLength `1`
|
|
241
|
-
* @maxLength `512`
|
|
242
|
-
* @pattern `^[\w\-]+$`
|
|
243
|
-
*/
|
|
244
|
-
CustomActionId: string;
|
|
245
|
-
/**
|
|
246
|
-
* @minLength `1`
|
|
247
|
-
* @maxLength `256`
|
|
248
|
-
*/
|
|
249
|
-
Name: string;
|
|
250
|
-
Status: WidgetStatus;
|
|
251
|
-
Trigger: ImageCustomActionTrigger;
|
|
252
|
-
}[];
|
|
253
|
-
/**
|
|
254
|
-
* @minLength `1`
|
|
255
|
-
* @maxLength `1024`
|
|
256
|
-
*/
|
|
257
|
-
ImageContentAltText: string;
|
|
258
|
-
Interactions: {
|
|
259
|
-
ImageMenuOption: {
|
|
260
|
-
AvailabilityStatus: DashboardBehavior;
|
|
261
|
-
};
|
|
262
|
-
};
|
|
263
|
-
Scaling: {
|
|
264
|
-
ScalingType: SheetImageScalingType;
|
|
265
|
-
};
|
|
266
|
-
/**
|
|
267
|
-
* @minLength `1`
|
|
268
|
-
* @maxLength `512`
|
|
269
|
-
* @pattern `^[\w\-]+$`
|
|
270
|
-
*/
|
|
271
|
-
SheetImageId: string;
|
|
272
|
-
Source: {
|
|
273
|
-
SheetImageStaticFileSource: {
|
|
274
|
-
/**
|
|
275
|
-
* @minLength `1`
|
|
276
|
-
* @maxLength `512`
|
|
277
|
-
* @pattern `^[\w\-]+$`
|
|
278
|
-
*/
|
|
279
|
-
StaticFileId: string;
|
|
280
|
-
};
|
|
281
|
-
};
|
|
282
|
-
Tooltip: {
|
|
283
|
-
TooltipText: {
|
|
284
|
-
/**
|
|
285
|
-
* @minLength `1`
|
|
286
|
-
* @maxLength `1024`
|
|
287
|
-
*/
|
|
288
|
-
PlainText: string;
|
|
289
|
-
};
|
|
290
|
-
Visibility: Visibility;
|
|
291
|
-
};
|
|
292
|
-
}[];
|
|
293
145
|
/**
|
|
294
146
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
295
147
|
console.</p>
|
|
@@ -1636,7 +1488,7 @@ export type DashboardPublishOptions = {
|
|
|
1636
1488
|
*/
|
|
1637
1489
|
SheetLayoutElementMaximizationOption?: SheetLayoutElementMaximizationOption;
|
|
1638
1490
|
VisualAxisSortOption?: VisualAxisSortOption;
|
|
1639
|
-
VisualMenuOption?:
|
|
1491
|
+
VisualMenuOption?: VisualMenuOption;
|
|
1640
1492
|
/**
|
|
1641
1493
|
* <p>The visual publish options of a visual in a dashboard</p>
|
|
1642
1494
|
*/
|
|
@@ -3620,7 +3472,7 @@ export type GeospatialLayerJoinDefinition = {
|
|
|
3620
3472
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallayermapconfiguration.html}
|
|
3621
3473
|
*/
|
|
3622
3474
|
export type GeospatialLayerMapConfiguration = {
|
|
3623
|
-
Interactions?:
|
|
3475
|
+
Interactions?: VisualInteractionOptions;
|
|
3624
3476
|
Legend?: LegendOptions;
|
|
3625
3477
|
MapLayers?: GeospatialLayerItem[];
|
|
3626
3478
|
MapState?: GeospatialMapState;
|
|
@@ -3690,7 +3542,7 @@ export type GeospatialMapAggregatedFieldWells = {
|
|
|
3690
3542
|
*/
|
|
3691
3543
|
export type GeospatialMapConfiguration = {
|
|
3692
3544
|
FieldWells?: GeospatialMapFieldWells;
|
|
3693
|
-
Interactions?:
|
|
3545
|
+
Interactions?: VisualInteractionOptions;
|
|
3694
3546
|
Legend?: LegendOptions;
|
|
3695
3547
|
MapStyleOptions?: GeospatialMapStyleOptions;
|
|
3696
3548
|
PointStyleOptions?: GeospatialPointStyleOptions;
|
|
@@ -5086,7 +4938,7 @@ export type NumberFormatConfiguration = {
|
|
|
5086
4938
|
* Type definition for `AWS::QuickSight::Dashboard.NumberScale`.
|
|
5087
4939
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numberscale.html}
|
|
5088
4940
|
*/
|
|
5089
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4941
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
5090
4942
|
/**
|
|
5091
4943
|
* Type definition for `AWS::QuickSight::Dashboard.NumericalAggregationFunction`.
|
|
5092
4944
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-numericalaggregationfunction.html}
|
|
@@ -6882,11 +6734,6 @@ export type ShapeConditionalFormat = {
|
|
|
6882
6734
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-sheet.html}
|
|
6883
6735
|
*/
|
|
6884
6736
|
export type Sheet = {
|
|
6885
|
-
/**
|
|
6886
|
-
* @minLength `0`
|
|
6887
|
-
* @maxLength `10`
|
|
6888
|
-
*/
|
|
6889
|
-
Images?: SheetImage[];
|
|
6890
6737
|
/**
|
|
6891
6738
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6892
6739
|
console.</p>
|
|
@@ -8332,6 +8179,21 @@ export type VisualCustomActionOperation = {
|
|
|
8332
8179
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualcustomactiontrigger.html}
|
|
8333
8180
|
*/
|
|
8334
8181
|
export type VisualCustomActionTrigger = "DATA_POINT_CLICK" | "DATA_POINT_MENU";
|
|
8182
|
+
/**
|
|
8183
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualInteractionOptions`.
|
|
8184
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualinteractionoptions.html}
|
|
8185
|
+
*/
|
|
8186
|
+
export type VisualInteractionOptions = {
|
|
8187
|
+
ContextMenuOption?: any;
|
|
8188
|
+
VisualMenuOption?: VisualMenuOption;
|
|
8189
|
+
};
|
|
8190
|
+
/**
|
|
8191
|
+
* Type definition for `AWS::QuickSight::Dashboard.VisualMenuOption`.
|
|
8192
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualmenuoption.html}
|
|
8193
|
+
*/
|
|
8194
|
+
export type VisualMenuOption = {
|
|
8195
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
8196
|
+
};
|
|
8335
8197
|
/**
|
|
8336
8198
|
* Type definition for `AWS::QuickSight::Dashboard.VisualPalette`.
|
|
8337
8199
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-visualpalette.html}
|
|
@@ -166,154 +166,6 @@ export type QuickSightTemplateAttributes = {
|
|
|
166
166
|
* @maxLength `20`
|
|
167
167
|
*/
|
|
168
168
|
Sheets: {
|
|
169
|
-
/**
|
|
170
|
-
* @minLength `0`
|
|
171
|
-
* @maxLength `10`
|
|
172
|
-
*/
|
|
173
|
-
Images: {
|
|
174
|
-
/**
|
|
175
|
-
* @minLength `0`
|
|
176
|
-
* @maxLength `10`
|
|
177
|
-
*/
|
|
178
|
-
Actions: {
|
|
179
|
-
/**
|
|
180
|
-
* @minLength `1`
|
|
181
|
-
* @maxLength `2`
|
|
182
|
-
*/
|
|
183
|
-
ActionOperations: {
|
|
184
|
-
NavigationOperation: {
|
|
185
|
-
LocalNavigationConfiguration: {
|
|
186
|
-
/**
|
|
187
|
-
* @minLength `1`
|
|
188
|
-
* @maxLength `512`
|
|
189
|
-
* @pattern `^[\w\-]+$`
|
|
190
|
-
*/
|
|
191
|
-
TargetSheetId: string;
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
SetParametersOperation: {
|
|
195
|
-
/**
|
|
196
|
-
* @minLength `1`
|
|
197
|
-
* @maxLength `200`
|
|
198
|
-
*/
|
|
199
|
-
ParameterValueConfigurations: {
|
|
200
|
-
/**
|
|
201
|
-
* @minLength `1`
|
|
202
|
-
* @maxLength `2048`
|
|
203
|
-
* @pattern `^[a-zA-Z0-9]+$`
|
|
204
|
-
*/
|
|
205
|
-
DestinationParameterName: string;
|
|
206
|
-
Value: {
|
|
207
|
-
CustomValuesConfiguration: {
|
|
208
|
-
CustomValues: {
|
|
209
|
-
/**
|
|
210
|
-
* @minLength `0`
|
|
211
|
-
* @maxLength `50000`
|
|
212
|
-
*/
|
|
213
|
-
DateTimeValues: string[];
|
|
214
|
-
/**
|
|
215
|
-
* @minLength `0`
|
|
216
|
-
* @maxLength `50000`
|
|
217
|
-
*/
|
|
218
|
-
DecimalValues: number[];
|
|
219
|
-
/**
|
|
220
|
-
* @minLength `0`
|
|
221
|
-
* @maxLength `50000`
|
|
222
|
-
*/
|
|
223
|
-
IntegerValues: number[];
|
|
224
|
-
/**
|
|
225
|
-
* @minLength `0`
|
|
226
|
-
* @maxLength `50000`
|
|
227
|
-
*/
|
|
228
|
-
StringValues: string[];
|
|
229
|
-
};
|
|
230
|
-
IncludeNullValue: boolean;
|
|
231
|
-
};
|
|
232
|
-
SelectAllValueOptions: SelectAllValueOptions;
|
|
233
|
-
SourceColumn: {
|
|
234
|
-
/**
|
|
235
|
-
* @minLength `1`
|
|
236
|
-
* @maxLength `127`
|
|
237
|
-
*/
|
|
238
|
-
ColumnName: string;
|
|
239
|
-
/**
|
|
240
|
-
* @minLength `1`
|
|
241
|
-
* @maxLength `2048`
|
|
242
|
-
*/
|
|
243
|
-
DataSetIdentifier: string;
|
|
244
|
-
};
|
|
245
|
-
/**
|
|
246
|
-
* @minLength `1`
|
|
247
|
-
* @maxLength `512`
|
|
248
|
-
*/
|
|
249
|
-
SourceField: string;
|
|
250
|
-
SourceParameterName: string;
|
|
251
|
-
};
|
|
252
|
-
}[];
|
|
253
|
-
};
|
|
254
|
-
URLOperation: {
|
|
255
|
-
URLTarget: URLTargetConfiguration;
|
|
256
|
-
/**
|
|
257
|
-
* @minLength `1`
|
|
258
|
-
* @maxLength `2048`
|
|
259
|
-
*/
|
|
260
|
-
URLTemplate: string;
|
|
261
|
-
};
|
|
262
|
-
}[];
|
|
263
|
-
/**
|
|
264
|
-
* @minLength `1`
|
|
265
|
-
* @maxLength `512`
|
|
266
|
-
* @pattern `^[\w\-]+$`
|
|
267
|
-
*/
|
|
268
|
-
CustomActionId: string;
|
|
269
|
-
/**
|
|
270
|
-
* @minLength `1`
|
|
271
|
-
* @maxLength `256`
|
|
272
|
-
*/
|
|
273
|
-
Name: string;
|
|
274
|
-
Status: WidgetStatus;
|
|
275
|
-
Trigger: ImageCustomActionTrigger;
|
|
276
|
-
}[];
|
|
277
|
-
/**
|
|
278
|
-
* @minLength `1`
|
|
279
|
-
* @maxLength `1024`
|
|
280
|
-
*/
|
|
281
|
-
ImageContentAltText: string;
|
|
282
|
-
Interactions: {
|
|
283
|
-
ImageMenuOption: {
|
|
284
|
-
AvailabilityStatus: any;
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
|
-
Scaling: {
|
|
288
|
-
ScalingType: SheetImageScalingType;
|
|
289
|
-
};
|
|
290
|
-
/**
|
|
291
|
-
* @minLength `1`
|
|
292
|
-
* @maxLength `512`
|
|
293
|
-
* @pattern `^[\w\-]+$`
|
|
294
|
-
*/
|
|
295
|
-
SheetImageId: string;
|
|
296
|
-
Source: {
|
|
297
|
-
SheetImageStaticFileSource: {
|
|
298
|
-
/**
|
|
299
|
-
* @minLength `1`
|
|
300
|
-
* @maxLength `512`
|
|
301
|
-
* @pattern `^[\w\-]+$`
|
|
302
|
-
*/
|
|
303
|
-
StaticFileId: string;
|
|
304
|
-
};
|
|
305
|
-
};
|
|
306
|
-
Tooltip: {
|
|
307
|
-
TooltipText: {
|
|
308
|
-
/**
|
|
309
|
-
* @minLength `1`
|
|
310
|
-
* @maxLength `1024`
|
|
311
|
-
*/
|
|
312
|
-
PlainText: string;
|
|
313
|
-
};
|
|
314
|
-
Visibility: any;
|
|
315
|
-
};
|
|
316
|
-
}[];
|
|
317
169
|
/**
|
|
318
170
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
319
171
|
console.</p>
|
|
@@ -1632,6 +1484,11 @@ export type CustomValuesConfiguration = {
|
|
|
1632
1484
|
CustomValues: CustomParameterValues;
|
|
1633
1485
|
IncludeNullValue?: boolean;
|
|
1634
1486
|
};
|
|
1487
|
+
/**
|
|
1488
|
+
* Type definition for `AWS::QuickSight::Template.DashboardBehavior`.
|
|
1489
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-dashboardbehavior.html}
|
|
1490
|
+
*/
|
|
1491
|
+
export type DashboardBehavior = "ENABLED" | "DISABLED";
|
|
1635
1492
|
/**
|
|
1636
1493
|
* Type definition for `AWS::QuickSight::Template.DataBarsOptions`.
|
|
1637
1494
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-databarsoptions.html}
|
|
@@ -3702,7 +3559,7 @@ export type ImageInteractionOptions = {
|
|
|
3702
3559
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-imagemenuoption.html}
|
|
3703
3560
|
*/
|
|
3704
3561
|
export type ImageMenuOption = {
|
|
3705
|
-
AvailabilityStatus?:
|
|
3562
|
+
AvailabilityStatus?: DashboardBehavior;
|
|
3706
3563
|
};
|
|
3707
3564
|
/**
|
|
3708
3565
|
* Type definition for `AWS::QuickSight::Template.InnerFilter`.
|
|
@@ -4456,7 +4313,7 @@ export type NumberFormatConfiguration = {
|
|
|
4456
4313
|
* Type definition for `AWS::QuickSight::Template.NumberScale`.
|
|
4457
4314
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-numberscale.html}
|
|
4458
4315
|
*/
|
|
4459
|
-
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS";
|
|
4316
|
+
export type NumberScale = "NONE" | "AUTO" | "THOUSANDS" | "MILLIONS" | "BILLIONS" | "TRILLIONS" | "LAKHS" | "CRORES";
|
|
4460
4317
|
/**
|
|
4461
4318
|
* Type definition for `AWS::QuickSight::Template.NumericalAggregationFunction`.
|
|
4462
4319
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-numericalaggregationfunction.html}
|
|
@@ -6233,11 +6090,6 @@ export type ShapeConditionalFormat = {
|
|
|
6233
6090
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-sheet.html}
|
|
6234
6091
|
*/
|
|
6235
6092
|
export type Sheet = {
|
|
6236
|
-
/**
|
|
6237
|
-
* @minLength `0`
|
|
6238
|
-
* @maxLength `10`
|
|
6239
|
-
*/
|
|
6240
|
-
Images?: SheetImage[];
|
|
6241
6093
|
/**
|
|
6242
6094
|
* <p>The name of a sheet. This name is displayed on the sheet's tab in the Amazon QuickSight
|
|
6243
6095
|
console.</p>
|
|
@@ -29,7 +29,6 @@ export type RDSGlobalClusterProperties = {
|
|
|
29
29
|
* @pattern `^[a-zA-Z]{1}(?:-?[a-zA-Z0-9]){0,62}$`
|
|
30
30
|
*/
|
|
31
31
|
GlobalClusterIdentifier?: string;
|
|
32
|
-
GlobalEndpoint?: GlobalEndpoint;
|
|
33
32
|
/**
|
|
34
33
|
* The Amazon Resource Name (ARN) to use as the primary cluster of the global database. This parameter is optional. This parameter is stored as a lowercase string.
|
|
35
34
|
*/
|
|
@@ -45,6 +44,18 @@ export type RDSGlobalClusterProperties = {
|
|
|
45
44
|
*/
|
|
46
45
|
Tags?: Tag[];
|
|
47
46
|
};
|
|
47
|
+
/**
|
|
48
|
+
* Attribute type definition for `AWS::RDS::GlobalCluster`.
|
|
49
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html#aws-resource-rds-globalcluster-return-values}
|
|
50
|
+
*/
|
|
51
|
+
export type RDSGlobalClusterAttributes = {
|
|
52
|
+
GlobalEndpoint: {
|
|
53
|
+
/**
|
|
54
|
+
* The writer endpoint for the global database cluster. This endpoint always points to the writer DB instance in the current primary cluster.
|
|
55
|
+
*/
|
|
56
|
+
Address: string;
|
|
57
|
+
};
|
|
58
|
+
};
|
|
48
59
|
/**
|
|
49
60
|
* Type definition for `AWS::RDS::GlobalCluster.GlobalEndpoint`.
|
|
50
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-globalcluster-globalendpoint.html}
|
|
@@ -78,7 +89,7 @@ export type Tag = {
|
|
|
78
89
|
* Resource Type definition for AWS::RDS::GlobalCluster
|
|
79
90
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-globalcluster.html}
|
|
80
91
|
*/
|
|
81
|
-
export declare class RDSGlobalCluster extends $Resource<"AWS::RDS::GlobalCluster", RDSGlobalClusterProperties,
|
|
92
|
+
export declare class RDSGlobalCluster extends $Resource<"AWS::RDS::GlobalCluster", RDSGlobalClusterProperties, RDSGlobalClusterAttributes> {
|
|
82
93
|
static readonly Type = "AWS::RDS::GlobalCluster";
|
|
83
94
|
constructor(logicalId: string, properties: RDSGlobalClusterProperties, options?: $ResourceOptions);
|
|
84
95
|
}
|
|
@@ -59,14 +59,12 @@ export type AIAgentConfiguration = {
|
|
|
59
59
|
AnswerRecommendationAIAgentConfiguration: AnswerRecommendationAIAgentConfiguration;
|
|
60
60
|
} | {
|
|
61
61
|
SelfServiceAIAgentConfiguration: SelfServiceAIAgentConfiguration;
|
|
62
|
-
} | {
|
|
63
|
-
SessionSummarizationAIAgentConfiguration: SessionSummarizationAIAgentConfiguration;
|
|
64
62
|
};
|
|
65
63
|
/**
|
|
66
64
|
* Type definition for `AWS::Wisdom::AIAgent.AIAgentType`.
|
|
67
65
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
68
66
|
*/
|
|
69
|
-
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE"
|
|
67
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE";
|
|
70
68
|
/**
|
|
71
69
|
* Type definition for `AWS::Wisdom::AIAgent.AnswerRecommendationAIAgentConfiguration`.
|
|
72
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
@@ -178,20 +176,6 @@ export type SelfServiceAIAgentConfiguration = {
|
|
|
178
176
|
*/
|
|
179
177
|
SelfServicePreProcessingAIPromptId?: string;
|
|
180
178
|
};
|
|
181
|
-
/**
|
|
182
|
-
* Type definition for `AWS::Wisdom::AIAgent.SessionSummarizationAIAgentConfiguration`.
|
|
183
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-sessionsummarizationaiagentconfiguration.html}
|
|
184
|
-
*/
|
|
185
|
-
export type SessionSummarizationAIAgentConfiguration = {
|
|
186
|
-
/**
|
|
187
|
-
* @minLength `1`
|
|
188
|
-
*/
|
|
189
|
-
Locale?: string;
|
|
190
|
-
/**
|
|
191
|
-
* @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}$`
|
|
192
|
-
*/
|
|
193
|
-
SessionSummarizationAIPromptId?: string;
|
|
194
|
-
};
|
|
195
179
|
/**
|
|
196
180
|
* Type definition for `AWS::Wisdom::AIAgent.TagCondition`.
|
|
197
181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tagcondition.html}
|
|
@@ -72,7 +72,7 @@ export type AIPromptTemplateType = "TEXT";
|
|
|
72
72
|
* Type definition for `AWS::Wisdom::AIPrompt.AIPromptType`.
|
|
73
73
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttype.html}
|
|
74
74
|
*/
|
|
75
|
-
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION"
|
|
75
|
+
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION";
|
|
76
76
|
/**
|
|
77
77
|
* Type definition for `AWS::Wisdom::AIPrompt.Tags`.
|
|
78
78
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-tags.html}
|