@propulsionworks/cloudformation 0.1.41 → 0.1.43
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/out/exports/resources.generated/aws-apigatewayv2-integration.d.ts +1 -0
- package/out/exports/resources.generated/aws-arcregionswitch-plan.d.ts +17 -0
- package/out/exports/resources.generated/aws-bedrock-blueprint.d.ts +1 -1
- package/out/exports/resources.generated/aws-bedrock-dataautomationproject.d.ts +2 -2
- package/out/exports/resources.generated/aws-bedrockagentcore-gateway.d.ts +82 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-gatewaytarget.d.ts +21 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-memory.d.ts +106 -0
- package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +5 -0
- package/out/exports/resources.generated/aws-billing-billingview.d.ts +4 -0
- package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +13 -0
- package/out/exports/resources.generated/aws-datazone-environmentblueprintconfiguration.d.ts +5 -0
- package/out/exports/resources.generated/aws-datazone-projectprofile.d.ts +4 -0
- package/out/exports/resources.generated/aws-dms-dataprovider.d.ts +231 -1
- package/out/exports/resources.generated/aws-docdb-globalcluster.d.ts +111 -0
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +7 -0
- package/out/exports/resources.generated/aws-ec2-ipam.d.ts +5 -5
- package/out/exports/resources.generated/aws-ec2-ipampool.d.ts +1 -1
- package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +16 -0
- package/out/exports/resources.generated/aws-ec2-vpnconcentrator.d.ts +6 -6
- package/out/exports/resources.generated/aws-ec2-vpnconnection.d.ts +1 -1
- package/out/exports/resources.generated/aws-ecr-pulltimeupdateexclusion.d.ts +2 -2
- package/out/exports/resources.generated/aws-ecr-repositorycreationtemplate.d.ts +1 -1
- package/out/exports/resources.generated/aws-gamelift-containerfleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-gamelift-fleet.d.ts +1 -1
- package/out/exports/resources.generated/aws-mediapackagev2-originendpoint.d.ts +29 -0
- package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +10 -1
- package/out/exports/resources.generated/aws-pcs-cluster.d.ts +4 -4
- package/out/exports/resources.generated/aws-quicksight-actionconnector.d.ts +341 -0
- package/out/exports/resources.generated/aws-quicksight-custompermissions.d.ts +48 -0
- package/out/exports/resources.generated/aws-quicksight-dataset.d.ts +3 -3
- package/out/exports/resources.generated/aws-quicksight-datasource.d.ts +34 -1
- package/out/exports/resources.generated/aws-rds-dbinstance.d.ts +40 -0
- package/out/exports/resources.generated/aws-route53-hostedzone.d.ts +0 -1
- package/out/exports/resources.generated/aws-s3-storagelens.d.ts +12 -12
- package/out/exports/resources.generated/aws-sagemaker-userprofile.d.ts +1 -1
- package/out/exports/resources.generated/aws-ses-configurationset.d.ts +26 -0
- package/out/exports/resources.generated/aws-wisdom-aiagent.d.ts +228 -1
- package/out/exports/resources.generated/aws-wisdom-aiprompt.d.ts +1 -1
- package/out/exports/resources.generated/aws-wisdom-assistantassociation.d.ts +21 -3
- package/package.json +1 -1
|
@@ -73,6 +73,10 @@ export type RDSDBInstance = ResourceDefinitionWithAttributes<"AWS::RDS::DBInstan
|
|
|
73
73
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html}
|
|
74
74
|
*/
|
|
75
75
|
export type RDSDBInstanceProps = {
|
|
76
|
+
/**
|
|
77
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-rds-dbinstance.html#cfn-rds-dbinstance-additionalstoragevolumes}
|
|
78
|
+
*/
|
|
79
|
+
AdditionalStorageVolumes?: AdditionalStorageVolume[] | undefined;
|
|
76
80
|
/**
|
|
77
81
|
* The amount of storage in gibibytes (GiB) to be initially allocated for the database instance.
|
|
78
82
|
*
|
|
@@ -1343,6 +1347,42 @@ export type RDSDBInstanceAttribs = {
|
|
|
1343
1347
|
*/
|
|
1344
1348
|
SecondaryAvailabilityZone: string;
|
|
1345
1349
|
};
|
|
1350
|
+
/**
|
|
1351
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html}
|
|
1352
|
+
*/
|
|
1353
|
+
export type AdditionalStorageVolume = {
|
|
1354
|
+
/**
|
|
1355
|
+
* The amount of storage allocated for the additional storage volume, in gibibytes (GiB). The minimum is 20 GiB. The maximum is 65,536 GiB (64 TiB).
|
|
1356
|
+
* @pattern ^[0-9]*$
|
|
1357
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-allocatedstorage}
|
|
1358
|
+
*/
|
|
1359
|
+
AllocatedStorage?: string | undefined;
|
|
1360
|
+
/**
|
|
1361
|
+
* The number of I/O operations per second (IOPS) provisioned for the additional storage volume.
|
|
1362
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-iops}
|
|
1363
|
+
*/
|
|
1364
|
+
Iops?: number | undefined;
|
|
1365
|
+
/**
|
|
1366
|
+
* The upper limit in gibibytes (GiB) to which RDS can automatically scale the storage of the additional storage volume.
|
|
1367
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-maxallocatedstorage}
|
|
1368
|
+
*/
|
|
1369
|
+
MaxAllocatedStorage?: number | undefined;
|
|
1370
|
+
/**
|
|
1371
|
+
* The storage throughput value for the additional storage volume, in mebibytes per second (MiBps). This setting applies only to the General Purpose SSD gp3 storage type.
|
|
1372
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-storagethroughput}
|
|
1373
|
+
*/
|
|
1374
|
+
StorageThroughput?: number | undefined;
|
|
1375
|
+
/**
|
|
1376
|
+
* The storage type for the additional storage volume.
|
|
1377
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-storagetype}
|
|
1378
|
+
*/
|
|
1379
|
+
StorageType?: string | undefined;
|
|
1380
|
+
/**
|
|
1381
|
+
* The name of the additional storage volume.
|
|
1382
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-additionalstoragevolume.html#cfn-rds-dbinstance-additionalstoragevolume-volumename}
|
|
1383
|
+
*/
|
|
1384
|
+
VolumeName?: string | undefined;
|
|
1385
|
+
};
|
|
1346
1386
|
/**
|
|
1347
1387
|
* Information about an AWS Identity and Access Management (IAM) role that is associated with a DB instance.
|
|
1348
1388
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbinstance-dbinstancerole.html}
|
|
@@ -177,7 +177,6 @@ export type HostedZoneConfig = {
|
|
|
177
177
|
*/
|
|
178
178
|
export type HostedZoneFeatures = {
|
|
179
179
|
/**
|
|
180
|
-
* 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.
|
|
181
180
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-route53-hostedzone-hostedzonefeatures.html#cfn-route53-hostedzone-hostedzonefeatures-enableacceleratedrecovery}
|
|
182
181
|
*/
|
|
183
182
|
EnableAcceleratedRecovery?: boolean | undefined;
|
|
@@ -51,7 +51,7 @@ export type AccountLevel = {
|
|
|
51
51
|
*/
|
|
52
52
|
AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics | undefined;
|
|
53
53
|
/**
|
|
54
|
-
*
|
|
54
|
+
* This property contains the account-level details for S3 Storage Lens advanced performance metrics.
|
|
55
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-accountlevel.html#cfn-s3-storagelens-accountlevel-advancedperformancemetrics}
|
|
56
56
|
*/
|
|
57
57
|
AdvancedPerformanceMetrics?: AdvancedPerformanceMetrics | undefined;
|
|
@@ -111,12 +111,12 @@ export type AdvancedDataProtectionMetrics = {
|
|
|
111
111
|
IsEnabled?: boolean | undefined;
|
|
112
112
|
};
|
|
113
113
|
/**
|
|
114
|
-
* Advanced
|
|
114
|
+
* A property for S3 Storage Lens advanced performance metrics. Advanced performance metrics provide insights into application performance such as access patterns and network originality metrics.
|
|
115
115
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-advancedperformancemetrics.html}
|
|
116
116
|
*/
|
|
117
117
|
export type AdvancedPerformanceMetrics = {
|
|
118
118
|
/**
|
|
119
|
-
*
|
|
119
|
+
* This property indicates whether the advanced performance metrics are enabled.
|
|
120
120
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-advancedperformancemetrics.html#cfn-s3-storagelens-advancedperformancemetrics-isenabled}
|
|
121
121
|
*/
|
|
122
122
|
IsEnabled?: boolean | undefined;
|
|
@@ -153,7 +153,7 @@ export type BucketLevel = {
|
|
|
153
153
|
*/
|
|
154
154
|
AdvancedDataProtectionMetrics?: AdvancedDataProtectionMetrics | undefined;
|
|
155
155
|
/**
|
|
156
|
-
*
|
|
156
|
+
* A property for bucket-level advanced performance metrics for S3 Storage Lens.
|
|
157
157
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-bucketlevel.html#cfn-s3-storagelens-bucketlevel-advancedperformancemetrics}
|
|
158
158
|
*/
|
|
159
159
|
AdvancedPerformanceMetrics?: AdvancedPerformanceMetrics | undefined;
|
|
@@ -213,7 +213,7 @@ export type DataExport = {
|
|
|
213
213
|
*/
|
|
214
214
|
S3BucketDestination?: S3BucketDestination | undefined;
|
|
215
215
|
/**
|
|
216
|
-
*
|
|
216
|
+
* This property contains the details of the S3 table bucket where the S3 Storage Lens default metrics report will be placed. This property enables you to store your Storage Lens metrics in read-only S3 Tables.
|
|
217
217
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-dataexport.html#cfn-s3-storagelens-dataexport-storagelenstabledestination}
|
|
218
218
|
*/
|
|
219
219
|
StorageLensTableDestination?: StorageLensTableDestination | undefined;
|
|
@@ -364,7 +364,7 @@ export type StorageLensConfiguration = {
|
|
|
364
364
|
*/
|
|
365
365
|
Exclude?: BucketsAndRegions | undefined;
|
|
366
366
|
/**
|
|
367
|
-
*
|
|
367
|
+
* This property configures your S3 Storage Lens expanded prefixes metrics report.
|
|
368
368
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelensconfiguration.html#cfn-s3-storagelens-storagelensconfiguration-expandedprefixesdataexport}
|
|
369
369
|
*/
|
|
370
370
|
ExpandedPrefixesDataExport?: StorageLensExpandedPrefixesDataExport | undefined;
|
|
@@ -390,17 +390,17 @@ export type StorageLensConfiguration = {
|
|
|
390
390
|
PrefixDelimiter?: string | undefined;
|
|
391
391
|
};
|
|
392
392
|
/**
|
|
393
|
-
* Expanded Prefixes
|
|
393
|
+
* This resource specifies the properties of your S3 Storage Lens Expanded Prefixes metrics export.
|
|
394
394
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelensexpandedprefixesdataexport.html}
|
|
395
395
|
*/
|
|
396
396
|
export type StorageLensExpandedPrefixesDataExport = {
|
|
397
397
|
/**
|
|
398
|
-
*
|
|
398
|
+
* This property specifies the general purpose bucket where the S3 Storage Lens Expanded Prefixes metrics export files are located. At least one export destination must be specified.
|
|
399
399
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelensexpandedprefixesdataexport.html#cfn-s3-storagelens-storagelensexpandedprefixesdataexport-s3bucketdestination}
|
|
400
400
|
*/
|
|
401
401
|
S3BucketDestination?: S3BucketDestination | undefined;
|
|
402
402
|
/**
|
|
403
|
-
* S3
|
|
403
|
+
* This property configures S3 Storage Lens Expanded Prefixes metrics report to read-only S3 table buckets.
|
|
404
404
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelensexpandedprefixesdataexport.html#cfn-s3-storagelens-storagelensexpandedprefixesdataexport-storagelenstabledestination}
|
|
405
405
|
*/
|
|
406
406
|
StorageLensTableDestination?: StorageLensTableDestination | undefined;
|
|
@@ -433,17 +433,17 @@ export type StorageLensGroupSelectionCriteria = {
|
|
|
433
433
|
Include?: string[] | undefined;
|
|
434
434
|
};
|
|
435
435
|
/**
|
|
436
|
-
* S3
|
|
436
|
+
* This resource configures your S3 Storage Lens reports to export to read-only S3 table buckets. With this resource, you can store your Storage Lens metrics in S3 Tables that are created in a read-only S3 table bucket called aws-s3.
|
|
437
437
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelenstabledestination.html}
|
|
438
438
|
*/
|
|
439
439
|
export type StorageLensTableDestination = {
|
|
440
440
|
/**
|
|
441
|
-
*
|
|
441
|
+
* This resource configures your data encryption settings for Storage Lens metrics in read-only S3 table buckets.
|
|
442
442
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelenstabledestination.html#cfn-s3-storagelens-storagelenstabledestination-encryption}
|
|
443
443
|
*/
|
|
444
444
|
Encryption?: Encryption | undefined;
|
|
445
445
|
/**
|
|
446
|
-
*
|
|
446
|
+
* This property indicates whether the export to read-only S3 table buckets is enabled for your S3 Storage Lens configuration. When set to true, Storage Lens reports are automatically exported to tables in addition to other configured destinations.
|
|
447
447
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-storagelens-storagelenstabledestination.html#cfn-s3-storagelens-storagelenstabledestination-isenabled}
|
|
448
448
|
*/
|
|
449
449
|
IsEnabled: boolean;
|
|
@@ -460,7 +460,7 @@ export type ResourceSpec = {
|
|
|
460
460
|
/**
|
|
461
461
|
* The ARN of the image version created on the instance. To clear the value set for `SageMakerImageVersionArn` , pass `None` as the value.
|
|
462
462
|
* @maxLength 256
|
|
463
|
-
* @pattern ^arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])*/[0-9]
|
|
463
|
+
* @pattern ^(arn:aws(-[\w]+)*:sagemaker:.+:[0-9]{12}:image-version/[a-z0-9]([-.]?[a-z0-9])*/[0-9]+|None)
|
|
464
464
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-userprofile-resourcespec.html#cfn-sagemaker-userprofile-resourcespec-sagemakerimageversionarn}
|
|
465
465
|
*/
|
|
466
466
|
SageMakerImageVersionArn?: string | undefined;
|
|
@@ -173,6 +173,32 @@ export type SuppressionOptions = {
|
|
|
173
173
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-suppressionoptions.html#cfn-ses-configurationset-suppressionoptions-suppressedreasons}
|
|
174
174
|
*/
|
|
175
175
|
SuppressedReasons?: string[] | undefined;
|
|
176
|
+
/**
|
|
177
|
+
* An object that contains information about the validation options for your account.
|
|
178
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-configurationset-suppressionoptions.html#cfn-ses-configurationset-suppressionoptions-validationoptions}
|
|
179
|
+
*/
|
|
180
|
+
ValidationOptions?: {
|
|
181
|
+
/**
|
|
182
|
+
* The condition threshold settings for suppression validation.
|
|
183
|
+
*/
|
|
184
|
+
ConditionThreshold: {
|
|
185
|
+
/**
|
|
186
|
+
* Whether the condition threshold is enabled or disabled.
|
|
187
|
+
* @pattern ENABLED|DISABLED
|
|
188
|
+
*/
|
|
189
|
+
ConditionThresholdEnabled: string;
|
|
190
|
+
/**
|
|
191
|
+
* The overall confidence threshold settings.
|
|
192
|
+
*/
|
|
193
|
+
OverallConfidenceThreshold?: {
|
|
194
|
+
/**
|
|
195
|
+
* The confidence verdict threshold level.
|
|
196
|
+
* @pattern MEDIUM|HIGH|MANAGED
|
|
197
|
+
*/
|
|
198
|
+
ConfidenceVerdictThreshold: string;
|
|
199
|
+
} | undefined;
|
|
200
|
+
};
|
|
201
|
+
} | undefined;
|
|
176
202
|
};
|
|
177
203
|
/**
|
|
178
204
|
* An object that defines the tracking options for a configuration set. When you use the Amazon SES API v2 to send an email, it contains an invisible image that's used to track when recipients open your email. If your email contains links, those links are changed slightly in order to track when recipients click them.
|
|
@@ -94,11 +94,17 @@ export type AIAgentConfiguration = {
|
|
|
94
94
|
EmailOverviewAIAgentConfiguration: EmailOverviewAIAgentConfiguration;
|
|
95
95
|
} | {
|
|
96
96
|
EmailGenerativeAnswerAIAgentConfiguration: EmailGenerativeAnswerAIAgentConfiguration;
|
|
97
|
+
} | {
|
|
98
|
+
OrchestrationAIAgentConfiguration: OrchestrationAIAgentConfiguration;
|
|
99
|
+
} | {
|
|
100
|
+
NoteTakingAIAgentConfiguration: NoteTakingAIAgentConfiguration;
|
|
101
|
+
} | {
|
|
102
|
+
CaseSummarizationAIAgentConfiguration: CaseSummarizationAIAgentConfiguration;
|
|
97
103
|
};
|
|
98
104
|
/**
|
|
99
105
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-aiagenttype.html}
|
|
100
106
|
*/
|
|
101
|
-
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER";
|
|
107
|
+
export type AIAgentType = "MANUAL_SEARCH" | "ANSWER_RECOMMENDATION" | "SELF_SERVICE" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER" | "ORCHESTRATION" | "NOTE_TAKING" | "CASE_SUMMARIZATION";
|
|
102
108
|
/**
|
|
103
109
|
* The configuration for AI Agents of type `ANSWER_RECOMMENDATION` .
|
|
104
110
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-answerrecommendationaiagentconfiguration.html}
|
|
@@ -169,6 +175,26 @@ export type AssociationConfiguration = {
|
|
|
169
175
|
export type AssociationConfigurationData = {
|
|
170
176
|
KnowledgeBaseAssociationConfigurationData: KnowledgeBaseAssociationConfigurationData;
|
|
171
177
|
};
|
|
178
|
+
/**
|
|
179
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-casesummarizationaiagentconfiguration.html}
|
|
180
|
+
*/
|
|
181
|
+
export type CaseSummarizationAIAgentConfiguration = {
|
|
182
|
+
/**
|
|
183
|
+
* @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}$
|
|
184
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-casesummarizationaiagentconfiguration.html#cfn-wisdom-aiagent-casesummarizationaiagentconfiguration-casesummarizationaiguardrailid}
|
|
185
|
+
*/
|
|
186
|
+
CaseSummarizationAIGuardrailId?: string | undefined;
|
|
187
|
+
/**
|
|
188
|
+
* @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}$
|
|
189
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-casesummarizationaiagentconfiguration.html#cfn-wisdom-aiagent-casesummarizationaiagentconfiguration-casesummarizationaipromptid}
|
|
190
|
+
*/
|
|
191
|
+
CaseSummarizationAIPromptId?: string | undefined;
|
|
192
|
+
/**
|
|
193
|
+
* @minLength 1
|
|
194
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-casesummarizationaiagentconfiguration.html#cfn-wisdom-aiagent-casesummarizationaiagentconfiguration-locale}
|
|
195
|
+
*/
|
|
196
|
+
Locale?: string | undefined;
|
|
197
|
+
};
|
|
172
198
|
/**
|
|
173
199
|
* Configuration settings for the EMAIL_GENERATIVE_ANSWER AI agent including prompts, locale, and knowledge base associations.
|
|
174
200
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-emailgenerativeansweraiagentconfiguration.html}
|
|
@@ -301,6 +327,26 @@ export type ManualSearchAIAgentConfiguration = {
|
|
|
301
327
|
*/
|
|
302
328
|
Locale?: string | undefined;
|
|
303
329
|
};
|
|
330
|
+
/**
|
|
331
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-notetakingaiagentconfiguration.html}
|
|
332
|
+
*/
|
|
333
|
+
export type NoteTakingAIAgentConfiguration = {
|
|
334
|
+
/**
|
|
335
|
+
* @minLength 1
|
|
336
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-notetakingaiagentconfiguration.html#cfn-wisdom-aiagent-notetakingaiagentconfiguration-locale}
|
|
337
|
+
*/
|
|
338
|
+
Locale?: string | undefined;
|
|
339
|
+
/**
|
|
340
|
+
* @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}$
|
|
341
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-notetakingaiagentconfiguration.html#cfn-wisdom-aiagent-notetakingaiagentconfiguration-notetakingaiguardrailid}
|
|
342
|
+
*/
|
|
343
|
+
NoteTakingAIGuardrailId?: string | undefined;
|
|
344
|
+
/**
|
|
345
|
+
* @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}$
|
|
346
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-notetakingaiagentconfiguration.html#cfn-wisdom-aiagent-notetakingaiagentconfiguration-notetakingaipromptid}
|
|
347
|
+
*/
|
|
348
|
+
NoteTakingAIPromptId?: string | undefined;
|
|
349
|
+
};
|
|
304
350
|
/**
|
|
305
351
|
* A list of conditions which would be applied together with an `OR` condition.
|
|
306
352
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orcondition.html}
|
|
@@ -310,6 +356,37 @@ export type OrCondition = {
|
|
|
310
356
|
} | {
|
|
311
357
|
TagCondition: TagCondition;
|
|
312
358
|
};
|
|
359
|
+
/**
|
|
360
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orchestrationaiagentconfiguration.html}
|
|
361
|
+
*/
|
|
362
|
+
export type OrchestrationAIAgentConfiguration = {
|
|
363
|
+
/**
|
|
364
|
+
* @minLength 1
|
|
365
|
+
* @maxLength 2048
|
|
366
|
+
* @pattern ^arn:[a-z-]+?:[a-z-]+?:[a-z0-9-]*?:([0-9]{12})?:[a-zA-Z0-9-:/]+$
|
|
367
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orchestrationaiagentconfiguration.html#cfn-wisdom-aiagent-orchestrationaiagentconfiguration-connectinstancearn}
|
|
368
|
+
*/
|
|
369
|
+
ConnectInstanceArn?: string | undefined;
|
|
370
|
+
/**
|
|
371
|
+
* @minLength 1
|
|
372
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orchestrationaiagentconfiguration.html#cfn-wisdom-aiagent-orchestrationaiagentconfiguration-locale}
|
|
373
|
+
*/
|
|
374
|
+
Locale?: string | undefined;
|
|
375
|
+
/**
|
|
376
|
+
* @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}$
|
|
377
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orchestrationaiagentconfiguration.html#cfn-wisdom-aiagent-orchestrationaiagentconfiguration-orchestrationaiguardrailid}
|
|
378
|
+
*/
|
|
379
|
+
OrchestrationAIGuardrailId?: string | undefined;
|
|
380
|
+
/**
|
|
381
|
+
* @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}$
|
|
382
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orchestrationaiagentconfiguration.html#cfn-wisdom-aiagent-orchestrationaiagentconfiguration-orchestrationaipromptid}
|
|
383
|
+
*/
|
|
384
|
+
OrchestrationAIPromptId: string;
|
|
385
|
+
/**
|
|
386
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-orchestrationaiagentconfiguration.html#cfn-wisdom-aiagent-orchestrationaiagentconfiguration-toolconfigurations}
|
|
387
|
+
*/
|
|
388
|
+
ToolConfigurations?: ToolConfiguration[] | undefined;
|
|
389
|
+
};
|
|
313
390
|
/**
|
|
314
391
|
* The configuration of the self-service AI agent.
|
|
315
392
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-selfserviceaiagentconfiguration.html}
|
|
@@ -371,4 +448,154 @@ export type TagFilter = {
|
|
|
371
448
|
} | {
|
|
372
449
|
OrConditions: OrCondition[];
|
|
373
450
|
};
|
|
451
|
+
/**
|
|
452
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html}
|
|
453
|
+
*/
|
|
454
|
+
export type ToolConfiguration = {
|
|
455
|
+
/**
|
|
456
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-annotations}
|
|
457
|
+
*/
|
|
458
|
+
Annotations?: Record<string, unknown> | undefined;
|
|
459
|
+
/**
|
|
460
|
+
* @minLength 1
|
|
461
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-description}
|
|
462
|
+
*/
|
|
463
|
+
Description?: string | undefined;
|
|
464
|
+
/**
|
|
465
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-inputschema}
|
|
466
|
+
*/
|
|
467
|
+
InputSchema?: Record<string, unknown> | undefined;
|
|
468
|
+
/**
|
|
469
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-instruction}
|
|
470
|
+
*/
|
|
471
|
+
Instruction?: ToolInstruction | undefined;
|
|
472
|
+
/**
|
|
473
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-outputfilters}
|
|
474
|
+
*/
|
|
475
|
+
OutputFilters?: ToolOutputFilter[] | undefined;
|
|
476
|
+
/**
|
|
477
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-outputschema}
|
|
478
|
+
*/
|
|
479
|
+
OutputSchema?: Record<string, unknown> | undefined;
|
|
480
|
+
/**
|
|
481
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-overrideinputvalues}
|
|
482
|
+
*/
|
|
483
|
+
OverrideInputValues?: ToolOverrideInputValue[] | undefined;
|
|
484
|
+
/**
|
|
485
|
+
* @minLength 1
|
|
486
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-title}
|
|
487
|
+
*/
|
|
488
|
+
Title?: string | undefined;
|
|
489
|
+
/**
|
|
490
|
+
* @minLength 1
|
|
491
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-toolid}
|
|
492
|
+
*/
|
|
493
|
+
ToolId?: string | undefined;
|
|
494
|
+
/**
|
|
495
|
+
* @minLength 1
|
|
496
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-toolname}
|
|
497
|
+
*/
|
|
498
|
+
ToolName: string;
|
|
499
|
+
/**
|
|
500
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-tooltype}
|
|
501
|
+
*/
|
|
502
|
+
ToolType: ToolType;
|
|
503
|
+
/**
|
|
504
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolconfiguration.html#cfn-wisdom-aiagent-toolconfiguration-userinteractionconfiguration}
|
|
505
|
+
*/
|
|
506
|
+
UserInteractionConfiguration?: UserInteractionConfiguration | undefined;
|
|
507
|
+
};
|
|
508
|
+
/**
|
|
509
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolinstruction.html}
|
|
510
|
+
*/
|
|
511
|
+
export type ToolInstruction = {
|
|
512
|
+
/**
|
|
513
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolinstruction.html#cfn-wisdom-aiagent-toolinstruction-examples}
|
|
514
|
+
*/
|
|
515
|
+
Examples?: string[] | undefined;
|
|
516
|
+
/**
|
|
517
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-toolinstruction.html#cfn-wisdom-aiagent-toolinstruction-instruction}
|
|
518
|
+
*/
|
|
519
|
+
Instruction?: string | undefined;
|
|
520
|
+
};
|
|
521
|
+
/**
|
|
522
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputconfiguration.html}
|
|
523
|
+
*/
|
|
524
|
+
export type ToolOutputConfiguration = {
|
|
525
|
+
/**
|
|
526
|
+
* @minLength 1
|
|
527
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputconfiguration.html#cfn-wisdom-aiagent-tooloutputconfiguration-outputvariablenameoverride}
|
|
528
|
+
*/
|
|
529
|
+
OutputVariableNameOverride?: string | undefined;
|
|
530
|
+
/**
|
|
531
|
+
* @minLength 1
|
|
532
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputconfiguration.html#cfn-wisdom-aiagent-tooloutputconfiguration-sessiondatanamespace}
|
|
533
|
+
*/
|
|
534
|
+
SessionDataNamespace?: string | undefined;
|
|
535
|
+
};
|
|
536
|
+
/**
|
|
537
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputfilter.html}
|
|
538
|
+
*/
|
|
539
|
+
export type ToolOutputFilter = {
|
|
540
|
+
/**
|
|
541
|
+
* @minLength 1
|
|
542
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputfilter.html#cfn-wisdom-aiagent-tooloutputfilter-jsonpath}
|
|
543
|
+
*/
|
|
544
|
+
JsonPath: string;
|
|
545
|
+
/**
|
|
546
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloutputfilter.html#cfn-wisdom-aiagent-tooloutputfilter-outputconfiguration}
|
|
547
|
+
*/
|
|
548
|
+
OutputConfiguration?: ToolOutputConfiguration | undefined;
|
|
549
|
+
};
|
|
550
|
+
/**
|
|
551
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideconstantinputvalue.html}
|
|
552
|
+
*/
|
|
553
|
+
export type ToolOverrideConstantInputValue = {
|
|
554
|
+
/**
|
|
555
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideconstantinputvalue.html#cfn-wisdom-aiagent-tooloverrideconstantinputvalue-type}
|
|
556
|
+
*/
|
|
557
|
+
Type: ToolOverrideInputValueType;
|
|
558
|
+
/**
|
|
559
|
+
* @minLength 1
|
|
560
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideconstantinputvalue.html#cfn-wisdom-aiagent-tooloverrideconstantinputvalue-value}
|
|
561
|
+
*/
|
|
562
|
+
Value: string;
|
|
563
|
+
};
|
|
564
|
+
/**
|
|
565
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvalue.html}
|
|
566
|
+
*/
|
|
567
|
+
export type ToolOverrideInputValue = {
|
|
568
|
+
/**
|
|
569
|
+
* @minLength 1
|
|
570
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvalue.html#cfn-wisdom-aiagent-tooloverrideinputvalue-jsonpath}
|
|
571
|
+
*/
|
|
572
|
+
JsonPath: string;
|
|
573
|
+
/**
|
|
574
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvalue.html#cfn-wisdom-aiagent-tooloverrideinputvalue-value}
|
|
575
|
+
*/
|
|
576
|
+
Value: ToolOverrideInputValueConfiguration;
|
|
577
|
+
};
|
|
578
|
+
/**
|
|
579
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvalueconfiguration.html}
|
|
580
|
+
*/
|
|
581
|
+
export type ToolOverrideInputValueConfiguration = {
|
|
582
|
+
Constant: ToolOverrideConstantInputValue;
|
|
583
|
+
};
|
|
584
|
+
/**
|
|
585
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooloverrideinputvaluetype.html}
|
|
586
|
+
*/
|
|
587
|
+
export type ToolOverrideInputValueType = "STRING" | "NUMBER" | "JSON_STRING";
|
|
588
|
+
/**
|
|
589
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-tooltype.html}
|
|
590
|
+
*/
|
|
591
|
+
export type ToolType = "MODEL_CONTEXT_PROTOCOL" | "RETURN_TO_CONTROL" | "CONSTANT";
|
|
592
|
+
/**
|
|
593
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-userinteractionconfiguration.html}
|
|
594
|
+
*/
|
|
595
|
+
export type UserInteractionConfiguration = {
|
|
596
|
+
/**
|
|
597
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiagent-userinteractionconfiguration.html#cfn-wisdom-aiagent-userinteractionconfiguration-isuserconfirmationrequired}
|
|
598
|
+
*/
|
|
599
|
+
IsUserConfirmationRequired?: boolean | undefined;
|
|
600
|
+
};
|
|
374
601
|
//# sourceMappingURL=aws-wisdom-aiagent.d.ts.map
|
|
@@ -127,7 +127,7 @@ export type AIPromptTemplateType = "TEXT";
|
|
|
127
127
|
/**
|
|
128
128
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-aiprompttype.html}
|
|
129
129
|
*/
|
|
130
|
-
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER" | "EMAIL_QUERY_REFORMULATION";
|
|
130
|
+
export type AIPromptType = "ANSWER_GENERATION" | "INTENT_LABELING_GENERATION" | "QUERY_REFORMULATION" | "SELF_SERVICE_PRE_PROCESSING" | "SELF_SERVICE_ANSWER_GENERATION" | "EMAIL_RESPONSE" | "EMAIL_OVERVIEW" | "EMAIL_GENERATIVE_ANSWER" | "EMAIL_QUERY_REFORMULATION" | "ORCHESTRATION" | "NOTE_TAKING" | "CASE_SUMMARIZATION";
|
|
131
131
|
/**
|
|
132
132
|
* The configuration for a prompt template that supports full textual prompt configuration using a YAML prompt.
|
|
133
133
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-aiprompt-textfullaipromptedittemplateconfiguration.html}
|
|
@@ -60,14 +60,32 @@ export type WisdomAssistantAssociationAttribs = {
|
|
|
60
60
|
*/
|
|
61
61
|
export type AssociationData = {
|
|
62
62
|
/**
|
|
63
|
-
* The identifier of the knowledge base.
|
|
64
63
|
* @pattern ^[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}$
|
|
65
|
-
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-associationdata.html#cfn-wisdom-assistantassociation-associationdata-knowledgebaseid}
|
|
66
64
|
*/
|
|
67
65
|
KnowledgeBaseId: string;
|
|
66
|
+
} | {
|
|
67
|
+
ExternalBedrockKnowledgeBaseConfig: ExternalBedrockKnowledgeBaseConfig;
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
70
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-associationtype.html}
|
|
71
71
|
*/
|
|
72
|
-
export type AssociationType = "KNOWLEDGE_BASE";
|
|
72
|
+
export type AssociationType = "KNOWLEDGE_BASE" | "EXTERNAL_BEDROCK_KNOWLEDGE_BASE";
|
|
73
|
+
/**
|
|
74
|
+
* Configuration for an external Bedrock knowledge base.
|
|
75
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-externalbedrockknowledgebaseconfig.html}
|
|
76
|
+
*/
|
|
77
|
+
export type ExternalBedrockKnowledgeBaseConfig = {
|
|
78
|
+
/**
|
|
79
|
+
* The Amazon Resource Name (ARN) of the IAM role used to access the external Bedrock knowledge base.
|
|
80
|
+
* @pattern ^arn:aws:iam::[0-9]{12}:role/(?:service-role/)?[a-zA-Z0-9_+=,.@-]{1,64}$
|
|
81
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-externalbedrockknowledgebaseconfig.html#cfn-wisdom-assistantassociation-externalbedrockknowledgebaseconfig-accessrolearn}
|
|
82
|
+
*/
|
|
83
|
+
AccessRoleArn: string;
|
|
84
|
+
/**
|
|
85
|
+
* The Amazon Resource Name (ARN) of the external Bedrock knowledge base.
|
|
86
|
+
* @pattern ^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:knowledge-base/[0-9a-zA-Z]+$
|
|
87
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-externalbedrockknowledgebaseconfig.html#cfn-wisdom-assistantassociation-externalbedrockknowledgebaseconfig-bedrockknowledgebasearn}
|
|
88
|
+
*/
|
|
89
|
+
BedrockKnowledgeBaseArn: string;
|
|
90
|
+
};
|
|
73
91
|
//# sourceMappingURL=aws-wisdom-assistantassociation.d.ts.map
|