@propulsionworks/cloudformation 0.1.41 → 0.1.42
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-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-dms-dataprovider.d.ts +231 -1
- package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +4 -0
- package/out/exports/resources.generated/aws-ec2-ipam.d.ts +5 -5
- package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +8 -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-observabilityadmin-telemetrypipelines.d.ts +10 -1
- package/out/exports/resources.generated/aws-pcs-cluster.d.ts +2 -2
- package/out/exports/resources.generated/aws-s3-storagelens.d.ts +12 -12
- package/out/exports/resources.generated/aws-wisdom-aiprompt.d.ts +1 -1
- package/out/exports/resources.generated/aws-wisdom-assistantassociation.d.ts +18 -3
- package/package.json +1 -1
|
@@ -37,6 +37,7 @@ export type ApiGatewayV2IntegrationProps = {
|
|
|
37
37
|
ContentHandlingStrategy?: string | undefined;
|
|
38
38
|
/**
|
|
39
39
|
* Specifies the credentials required for the integration, if any. For AWS integrations, three options are available. To specify an IAM Role for API Gateway to assume, use the role's Amazon Resource Name (ARN). To require that the caller's identity be passed through from the request, specify the string `arn:aws:iam::*:user/*` . To use resource-based permissions on supported AWS services, don't specify this parameter.
|
|
40
|
+
* @pattern arn:(aws|aws-cn|aws-us-gov):iam::[0-9]*:(role|user|group)\/.*
|
|
40
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html#cfn-apigatewayv2-integration-credentialsarn}
|
|
41
42
|
*/
|
|
42
43
|
CredentialsArn?: string | undefined;
|
|
@@ -57,6 +57,7 @@ export type ARCRegionSwitchPlanProps = {
|
|
|
57
57
|
*/
|
|
58
58
|
Regions: string[];
|
|
59
59
|
/**
|
|
60
|
+
* The report configuration for a plan.
|
|
60
61
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arcregionswitch-plan.html#cfn-arcregionswitch-plan-reportconfiguration}
|
|
61
62
|
*/
|
|
62
63
|
ReportConfiguration?: ReportConfiguration | undefined;
|
|
@@ -235,39 +236,47 @@ export type CustomActionLambdaConfiguration = {
|
|
|
235
236
|
Ungraceful?: LambdaUngraceful | undefined;
|
|
236
237
|
};
|
|
237
238
|
/**
|
|
239
|
+
* Configuration for Amazon DocumentDB global clusters used in a Region switch plan.
|
|
238
240
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html}
|
|
239
241
|
*/
|
|
240
242
|
export type DocumentDbConfiguration = {
|
|
241
243
|
/**
|
|
244
|
+
* The behavior for a global cluster, that is, only allow switchover or also allow failover.
|
|
242
245
|
* @default "switchoverOnly"
|
|
243
246
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-behavior}
|
|
244
247
|
*/
|
|
245
248
|
Behavior: DocumentDbDefaultBehavior;
|
|
246
249
|
/**
|
|
250
|
+
* The cross account role for the configuration.
|
|
247
251
|
* @pattern ^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$
|
|
248
252
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-crossaccountrole}
|
|
249
253
|
*/
|
|
250
254
|
CrossAccountRole?: string | undefined;
|
|
251
255
|
/**
|
|
256
|
+
* The database cluster Amazon Resource Names (ARNs) for a DocumentDB global cluster.
|
|
252
257
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-databaseclusterarns}
|
|
253
258
|
*/
|
|
254
259
|
DatabaseClusterArns: string[];
|
|
255
260
|
/**
|
|
261
|
+
* The external ID (secret key) for the configuration.
|
|
256
262
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-externalid}
|
|
257
263
|
*/
|
|
258
264
|
ExternalId?: string | undefined;
|
|
259
265
|
/**
|
|
266
|
+
* The global cluster identifier for a DocumentDB global cluster.
|
|
260
267
|
* @pattern ^[A-Za-z][0-9A-Za-z-:._]*$
|
|
261
268
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-globalclusteridentifier}
|
|
262
269
|
*/
|
|
263
270
|
GlobalClusterIdentifier: string;
|
|
264
271
|
/**
|
|
272
|
+
* The timeout value specified for the configuration.
|
|
265
273
|
* @min 1
|
|
266
274
|
* @default 60
|
|
267
275
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-timeoutminutes}
|
|
268
276
|
*/
|
|
269
277
|
TimeoutMinutes?: number | undefined;
|
|
270
278
|
/**
|
|
279
|
+
* The settings for ungraceful execution.
|
|
271
280
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-ungraceful}
|
|
272
281
|
*/
|
|
273
282
|
Ungraceful?: DocumentDbUngraceful | undefined;
|
|
@@ -277,10 +286,12 @@ export type DocumentDbConfiguration = {
|
|
|
277
286
|
*/
|
|
278
287
|
export type DocumentDbDefaultBehavior = "switchoverOnly" | "failover";
|
|
279
288
|
/**
|
|
289
|
+
* Configuration for handling failures when performing operations on DocumentDB global clusters.
|
|
280
290
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbungraceful.html}
|
|
281
291
|
*/
|
|
282
292
|
export type DocumentDbUngraceful = {
|
|
283
293
|
/**
|
|
294
|
+
* The settings for ungraceful execution.
|
|
284
295
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbungraceful.html#cfn-arcregionswitch-plan-documentdbungraceful-ungraceful}
|
|
285
296
|
*/
|
|
286
297
|
Ungraceful?: DocumentDbUngracefulBehavior | undefined;
|
|
@@ -711,15 +722,18 @@ export type RegionSwitchPlanConfiguration = {
|
|
|
711
722
|
*/
|
|
712
723
|
export type RegionToRunIn = "activatingRegion" | "deactivatingRegion";
|
|
713
724
|
/**
|
|
725
|
+
* Configuration for automatic report generation for plan executions. When configured, Region switch automatically generates a report after each plan execution that includes execution events, plan configuration, and CloudWatch alarm states.
|
|
714
726
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportconfiguration.html}
|
|
715
727
|
*/
|
|
716
728
|
export type ReportConfiguration = {
|
|
717
729
|
/**
|
|
730
|
+
* The output configuration for the report.
|
|
718
731
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportconfiguration.html#cfn-arcregionswitch-plan-reportconfiguration-reportoutput}
|
|
719
732
|
*/
|
|
720
733
|
ReportOutput?: ReportOutputConfiguration[] | undefined;
|
|
721
734
|
};
|
|
722
735
|
/**
|
|
736
|
+
* Configuration for report output destinations used in a Region switch plan.
|
|
723
737
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportoutputconfiguration.html}
|
|
724
738
|
*/
|
|
725
739
|
export type ReportOutputConfiguration = {
|
|
@@ -792,15 +806,18 @@ export type Route53ResourceRecordSet = {
|
|
|
792
806
|
*/
|
|
793
807
|
export type RoutingControlStateChange = "On" | "Off";
|
|
794
808
|
/**
|
|
809
|
+
* Configuration for delivering generated reports to an Amazon S3 bucket.
|
|
795
810
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html}
|
|
796
811
|
*/
|
|
797
812
|
export type S3ReportOutputConfiguration = {
|
|
798
813
|
/**
|
|
814
|
+
* The AWS account ID that owns the S3 bucket. Required to ensure the bucket is still owned by the same expected owner at generation time.
|
|
799
815
|
* @pattern ^\d{12}$
|
|
800
816
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html#cfn-arcregionswitch-plan-s3reportoutputconfiguration-bucketowner}
|
|
801
817
|
*/
|
|
802
818
|
BucketOwner?: string | undefined;
|
|
803
819
|
/**
|
|
820
|
+
* The S3 bucket name and optional prefix where reports are stored. Format: bucket-name or bucket-name/prefix.
|
|
804
821
|
* @minLength 3
|
|
805
822
|
* @maxLength 512
|
|
806
823
|
* @pattern ^(?:s3://)?[a-z0-9][a-z0-9-]{1,61}[a-z0-9](?:/[^/ ][^/]*)*/?$
|
|
@@ -95,6 +95,10 @@ export type BedrockAgentCoreMemoryAttribs = {
|
|
|
95
95
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html}
|
|
96
96
|
*/
|
|
97
97
|
export type CustomConfigurationInput = {
|
|
98
|
+
/**
|
|
99
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html#cfn-bedrockagentcore-memory-customconfigurationinput-episodicoverride}
|
|
100
|
+
*/
|
|
101
|
+
EpisodicOverride?: EpisodicOverride | undefined;
|
|
98
102
|
/**
|
|
99
103
|
* The custom configuration input.
|
|
100
104
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-customconfigurationinput.html#cfn-bedrockagentcore-memory-customconfigurationinput-selfmanagedconfiguration}
|
|
@@ -142,6 +146,104 @@ export type CustomMemoryStrategy = {
|
|
|
142
146
|
*/
|
|
143
147
|
Namespaces?: string[] | undefined;
|
|
144
148
|
};
|
|
149
|
+
/**
|
|
150
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicmemorystrategy.html}
|
|
151
|
+
*/
|
|
152
|
+
export type EpisodicMemoryStrategy = {
|
|
153
|
+
/**
|
|
154
|
+
* Description of the Memory resource
|
|
155
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicmemorystrategy.html#cfn-bedrockagentcore-memory-episodicmemorystrategy-description}
|
|
156
|
+
*/
|
|
157
|
+
Description?: string | undefined;
|
|
158
|
+
/**
|
|
159
|
+
* Name of the Memory resource
|
|
160
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicmemorystrategy.html#cfn-bedrockagentcore-memory-episodicmemorystrategy-name}
|
|
161
|
+
*/
|
|
162
|
+
Name: string;
|
|
163
|
+
/**
|
|
164
|
+
* List of namespaces for memory strategy
|
|
165
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicmemorystrategy.html#cfn-bedrockagentcore-memory-episodicmemorystrategy-namespaces}
|
|
166
|
+
*/
|
|
167
|
+
Namespaces?: string[] | undefined;
|
|
168
|
+
/**
|
|
169
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicmemorystrategy.html#cfn-bedrockagentcore-memory-episodicmemorystrategy-reflectionconfiguration}
|
|
170
|
+
*/
|
|
171
|
+
ReflectionConfiguration?: EpisodicReflectionConfigurationInput | undefined;
|
|
172
|
+
};
|
|
173
|
+
/**
|
|
174
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverride.html}
|
|
175
|
+
*/
|
|
176
|
+
export type EpisodicOverride = {
|
|
177
|
+
/**
|
|
178
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverride.html#cfn-bedrockagentcore-memory-episodicoverride-consolidation}
|
|
179
|
+
*/
|
|
180
|
+
Consolidation?: EpisodicOverrideConsolidationConfigurationInput | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverride.html#cfn-bedrockagentcore-memory-episodicoverride-extraction}
|
|
183
|
+
*/
|
|
184
|
+
Extraction?: EpisodicOverrideExtractionConfigurationInput | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverride.html#cfn-bedrockagentcore-memory-episodicoverride-reflection}
|
|
187
|
+
*/
|
|
188
|
+
Reflection?: EpisodicOverrideReflectionConfigurationInput | undefined;
|
|
189
|
+
};
|
|
190
|
+
/**
|
|
191
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideconsolidationconfigurationinput.html}
|
|
192
|
+
*/
|
|
193
|
+
export type EpisodicOverrideConsolidationConfigurationInput = {
|
|
194
|
+
/**
|
|
195
|
+
* Text prompt for model instructions
|
|
196
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-episodicoverrideconsolidationconfigurationinput-appendtoprompt}
|
|
197
|
+
*/
|
|
198
|
+
AppendToPrompt: string;
|
|
199
|
+
/**
|
|
200
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideconsolidationconfigurationinput.html#cfn-bedrockagentcore-memory-episodicoverrideconsolidationconfigurationinput-modelid}
|
|
201
|
+
*/
|
|
202
|
+
ModelId: string;
|
|
203
|
+
};
|
|
204
|
+
/**
|
|
205
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideextractionconfigurationinput.html}
|
|
206
|
+
*/
|
|
207
|
+
export type EpisodicOverrideExtractionConfigurationInput = {
|
|
208
|
+
/**
|
|
209
|
+
* Text prompt for model instructions
|
|
210
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideextractionconfigurationinput.html#cfn-bedrockagentcore-memory-episodicoverrideextractionconfigurationinput-appendtoprompt}
|
|
211
|
+
*/
|
|
212
|
+
AppendToPrompt: string;
|
|
213
|
+
/**
|
|
214
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverrideextractionconfigurationinput.html#cfn-bedrockagentcore-memory-episodicoverrideextractionconfigurationinput-modelid}
|
|
215
|
+
*/
|
|
216
|
+
ModelId: string;
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput.html}
|
|
220
|
+
*/
|
|
221
|
+
export type EpisodicOverrideReflectionConfigurationInput = {
|
|
222
|
+
/**
|
|
223
|
+
* Text prompt for model instructions
|
|
224
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput.html#cfn-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput-appendtoprompt}
|
|
225
|
+
*/
|
|
226
|
+
AppendToPrompt: string;
|
|
227
|
+
/**
|
|
228
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput.html#cfn-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput-modelid}
|
|
229
|
+
*/
|
|
230
|
+
ModelId: string;
|
|
231
|
+
/**
|
|
232
|
+
* List of namespaces for memory strategy
|
|
233
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput.html#cfn-bedrockagentcore-memory-episodicoverridereflectionconfigurationinput-namespaces}
|
|
234
|
+
*/
|
|
235
|
+
Namespaces?: string[] | undefined;
|
|
236
|
+
};
|
|
237
|
+
/**
|
|
238
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicreflectionconfigurationinput.html}
|
|
239
|
+
*/
|
|
240
|
+
export type EpisodicReflectionConfigurationInput = {
|
|
241
|
+
/**
|
|
242
|
+
* List of namespaces for memory strategy
|
|
243
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-episodicreflectionconfigurationinput.html#cfn-bedrockagentcore-memory-episodicreflectionconfigurationinput-namespaces}
|
|
244
|
+
*/
|
|
245
|
+
Namespaces: string[];
|
|
246
|
+
};
|
|
145
247
|
/**
|
|
146
248
|
* The memory invocation configuration input.
|
|
147
249
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-invocationconfigurationinput.html}
|
|
@@ -174,6 +276,10 @@ export type MemoryStrategy = {
|
|
|
174
276
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html#cfn-bedrockagentcore-memory-memorystrategy-custommemorystrategy}
|
|
175
277
|
*/
|
|
176
278
|
CustomMemoryStrategy?: CustomMemoryStrategy | undefined;
|
|
279
|
+
/**
|
|
280
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html#cfn-bedrockagentcore-memory-memorystrategy-episodicmemorystrategy}
|
|
281
|
+
*/
|
|
282
|
+
EpisodicMemoryStrategy?: EpisodicMemoryStrategy | undefined;
|
|
177
283
|
/**
|
|
178
284
|
* The memory strategy.
|
|
179
285
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-memory-memorystrategy.html#cfn-bedrockagentcore-memory-memorystrategy-semanticmemorystrategy}
|
|
@@ -101,6 +101,11 @@ export type BedrockAgentCoreRuntimeAttribs = {
|
|
|
101
101
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-createdat}
|
|
102
102
|
*/
|
|
103
103
|
CreatedAt: string;
|
|
104
|
+
/**
|
|
105
|
+
* The reason for failure if the agent is in a failed state.
|
|
106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-failurereason}
|
|
107
|
+
*/
|
|
108
|
+
FailureReason: string;
|
|
104
109
|
/**
|
|
105
110
|
* The time at which the runtime was last updated.
|
|
106
111
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-bedrockagentcore-runtime.html#cfn-bedrockagentcore-runtime-lastupdatedat}
|
|
@@ -26,6 +26,10 @@ export type BillingBillingViewProps = {
|
|
|
26
26
|
Key?: string | undefined;
|
|
27
27
|
Values?: string[] | undefined;
|
|
28
28
|
} | undefined;
|
|
29
|
+
TimeRange?: {
|
|
30
|
+
BeginDateInclusive?: string | undefined;
|
|
31
|
+
EndDateInclusive?: string | undefined;
|
|
32
|
+
} | undefined;
|
|
29
33
|
} | undefined;
|
|
30
34
|
/**
|
|
31
35
|
* The description of the billing view.
|
|
@@ -357,6 +357,10 @@ export type CustomOriginConfig = {
|
|
|
357
357
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originkeepalivetimeout}
|
|
358
358
|
*/
|
|
359
359
|
OriginKeepaliveTimeout?: number | undefined;
|
|
360
|
+
/**
|
|
361
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-customoriginconfig.html#cfn-cloudfront-distribution-customoriginconfig-originmtlsconfig}
|
|
362
|
+
*/
|
|
363
|
+
OriginMtlsConfig?: OriginMtlsConfig | undefined;
|
|
360
364
|
/**
|
|
361
365
|
* Specifies the protocol (HTTP or HTTPS) that CloudFront uses to connect to the origin. Valid values are:
|
|
362
366
|
*
|
|
@@ -1203,6 +1207,15 @@ export type OriginGroups = {
|
|
|
1203
1207
|
*/
|
|
1204
1208
|
Quantity: number;
|
|
1205
1209
|
};
|
|
1210
|
+
/**
|
|
1211
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-originmtlsconfig.html}
|
|
1212
|
+
*/
|
|
1213
|
+
export type OriginMtlsConfig = {
|
|
1214
|
+
/**
|
|
1215
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudfront-distribution-originmtlsconfig.html#cfn-cloudfront-distribution-originmtlsconfig-clientcertificatearn}
|
|
1216
|
+
*/
|
|
1217
|
+
ClientCertificateArn: string;
|
|
1218
|
+
};
|
|
1206
1219
|
/**
|
|
1207
1220
|
* CloudFront Origin Shield.
|
|
1208
1221
|
*
|
|
@@ -34,7 +34,7 @@ export type DMSDataProviderProps = {
|
|
|
34
34
|
* The type of database engine for the data provider. Valid values include `"aurora"` , `"aurora-postgresql"` , `"mysql"` , `"oracle"` , `"postgres"` , `"sqlserver"` , `redshift` , `mariadb` , `mongodb` , `db2` , `db2-zos` , `docdb` , and `sybase` . A value of `"aurora"` represents Amazon Aurora MySQL-Compatible Edition.
|
|
35
35
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dms-dataprovider.html#cfn-dms-dataprovider-engine}
|
|
36
36
|
*/
|
|
37
|
-
Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb" | "db2" | "db2_zos";
|
|
37
|
+
Engine: "aurora" | "aurora_postgresql" | "mysql" | "oracle" | "postgres" | "sqlserver" | "redshift" | "mariadb" | "mongodb" | "docdb" | "db2" | "db2_zos" | "sybase";
|
|
38
38
|
/**
|
|
39
39
|
* The property describes the exact settings which can be modified
|
|
40
40
|
* @default false
|
|
@@ -150,6 +150,17 @@ export type DMSDataProviderProps = {
|
|
|
150
150
|
Port: number;
|
|
151
151
|
ServerName: string;
|
|
152
152
|
} | undefined;
|
|
153
|
+
/**
|
|
154
|
+
* SybaseAseSettings property identifier.
|
|
155
|
+
*/
|
|
156
|
+
SybaseAseSettings?: {
|
|
157
|
+
CertificateArn?: string | undefined;
|
|
158
|
+
DatabaseName?: string | undefined;
|
|
159
|
+
EncryptPassword?: boolean | undefined;
|
|
160
|
+
Port: number;
|
|
161
|
+
ServerName: string;
|
|
162
|
+
SslMode: SybaseSslModeValue;
|
|
163
|
+
} | undefined;
|
|
153
164
|
} | {
|
|
154
165
|
/**
|
|
155
166
|
* DocDbSettings property identifier.
|
|
@@ -255,6 +266,17 @@ export type DMSDataProviderProps = {
|
|
|
255
266
|
Port: number;
|
|
256
267
|
ServerName: string;
|
|
257
268
|
} | undefined;
|
|
269
|
+
/**
|
|
270
|
+
* SybaseAseSettings property identifier.
|
|
271
|
+
*/
|
|
272
|
+
SybaseAseSettings?: {
|
|
273
|
+
CertificateArn?: string | undefined;
|
|
274
|
+
DatabaseName?: string | undefined;
|
|
275
|
+
EncryptPassword?: boolean | undefined;
|
|
276
|
+
Port: number;
|
|
277
|
+
ServerName: string;
|
|
278
|
+
SslMode: SybaseSslModeValue;
|
|
279
|
+
} | undefined;
|
|
258
280
|
} | {
|
|
259
281
|
/**
|
|
260
282
|
* DocDbSettings property identifier.
|
|
@@ -360,6 +382,17 @@ export type DMSDataProviderProps = {
|
|
|
360
382
|
Port: number;
|
|
361
383
|
ServerName: string;
|
|
362
384
|
} | undefined;
|
|
385
|
+
/**
|
|
386
|
+
* SybaseAseSettings property identifier.
|
|
387
|
+
*/
|
|
388
|
+
SybaseAseSettings?: {
|
|
389
|
+
CertificateArn?: string | undefined;
|
|
390
|
+
DatabaseName?: string | undefined;
|
|
391
|
+
EncryptPassword?: boolean | undefined;
|
|
392
|
+
Port: number;
|
|
393
|
+
ServerName: string;
|
|
394
|
+
SslMode: SybaseSslModeValue;
|
|
395
|
+
} | undefined;
|
|
363
396
|
} | {
|
|
364
397
|
/**
|
|
365
398
|
* DocDbSettings property identifier.
|
|
@@ -465,6 +498,17 @@ export type DMSDataProviderProps = {
|
|
|
465
498
|
Port: number;
|
|
466
499
|
ServerName: string;
|
|
467
500
|
} | undefined;
|
|
501
|
+
/**
|
|
502
|
+
* SybaseAseSettings property identifier.
|
|
503
|
+
*/
|
|
504
|
+
SybaseAseSettings?: {
|
|
505
|
+
CertificateArn?: string | undefined;
|
|
506
|
+
DatabaseName?: string | undefined;
|
|
507
|
+
EncryptPassword?: boolean | undefined;
|
|
508
|
+
Port: number;
|
|
509
|
+
ServerName: string;
|
|
510
|
+
SslMode: SybaseSslModeValue;
|
|
511
|
+
} | undefined;
|
|
468
512
|
} | {
|
|
469
513
|
/**
|
|
470
514
|
* DocDbSettings property identifier.
|
|
@@ -570,6 +614,17 @@ export type DMSDataProviderProps = {
|
|
|
570
614
|
Port: number;
|
|
571
615
|
ServerName: string;
|
|
572
616
|
};
|
|
617
|
+
/**
|
|
618
|
+
* SybaseAseSettings property identifier.
|
|
619
|
+
*/
|
|
620
|
+
SybaseAseSettings?: {
|
|
621
|
+
CertificateArn?: string | undefined;
|
|
622
|
+
DatabaseName?: string | undefined;
|
|
623
|
+
EncryptPassword?: boolean | undefined;
|
|
624
|
+
Port: number;
|
|
625
|
+
ServerName: string;
|
|
626
|
+
SslMode: SybaseSslModeValue;
|
|
627
|
+
} | undefined;
|
|
573
628
|
} | {
|
|
574
629
|
/**
|
|
575
630
|
* DocDbSettings property identifier.
|
|
@@ -675,6 +730,17 @@ export type DMSDataProviderProps = {
|
|
|
675
730
|
Port: number;
|
|
676
731
|
ServerName: string;
|
|
677
732
|
} | undefined;
|
|
733
|
+
/**
|
|
734
|
+
* SybaseAseSettings property identifier.
|
|
735
|
+
*/
|
|
736
|
+
SybaseAseSettings?: {
|
|
737
|
+
CertificateArn?: string | undefined;
|
|
738
|
+
DatabaseName?: string | undefined;
|
|
739
|
+
EncryptPassword?: boolean | undefined;
|
|
740
|
+
Port: number;
|
|
741
|
+
ServerName: string;
|
|
742
|
+
SslMode: SybaseSslModeValue;
|
|
743
|
+
} | undefined;
|
|
678
744
|
} | {
|
|
679
745
|
/**
|
|
680
746
|
* DocDbSettings property identifier.
|
|
@@ -780,6 +846,17 @@ export type DMSDataProviderProps = {
|
|
|
780
846
|
Port: number;
|
|
781
847
|
ServerName: string;
|
|
782
848
|
} | undefined;
|
|
849
|
+
/**
|
|
850
|
+
* SybaseAseSettings property identifier.
|
|
851
|
+
*/
|
|
852
|
+
SybaseAseSettings?: {
|
|
853
|
+
CertificateArn?: string | undefined;
|
|
854
|
+
DatabaseName?: string | undefined;
|
|
855
|
+
EncryptPassword?: boolean | undefined;
|
|
856
|
+
Port: number;
|
|
857
|
+
ServerName: string;
|
|
858
|
+
SslMode: SybaseSslModeValue;
|
|
859
|
+
} | undefined;
|
|
783
860
|
} | {
|
|
784
861
|
/**
|
|
785
862
|
* DocDbSettings property identifier.
|
|
@@ -885,6 +962,17 @@ export type DMSDataProviderProps = {
|
|
|
885
962
|
Port: number;
|
|
886
963
|
ServerName: string;
|
|
887
964
|
} | undefined;
|
|
965
|
+
/**
|
|
966
|
+
* SybaseAseSettings property identifier.
|
|
967
|
+
*/
|
|
968
|
+
SybaseAseSettings?: {
|
|
969
|
+
CertificateArn?: string | undefined;
|
|
970
|
+
DatabaseName?: string | undefined;
|
|
971
|
+
EncryptPassword?: boolean | undefined;
|
|
972
|
+
Port: number;
|
|
973
|
+
ServerName: string;
|
|
974
|
+
SslMode: SybaseSslModeValue;
|
|
975
|
+
} | undefined;
|
|
888
976
|
} | {
|
|
889
977
|
/**
|
|
890
978
|
* DocDbSettings property identifier.
|
|
@@ -990,6 +1078,17 @@ export type DMSDataProviderProps = {
|
|
|
990
1078
|
Port: number;
|
|
991
1079
|
ServerName: string;
|
|
992
1080
|
} | undefined;
|
|
1081
|
+
/**
|
|
1082
|
+
* SybaseAseSettings property identifier.
|
|
1083
|
+
*/
|
|
1084
|
+
SybaseAseSettings?: {
|
|
1085
|
+
CertificateArn?: string | undefined;
|
|
1086
|
+
DatabaseName?: string | undefined;
|
|
1087
|
+
EncryptPassword?: boolean | undefined;
|
|
1088
|
+
Port: number;
|
|
1089
|
+
ServerName: string;
|
|
1090
|
+
SslMode: SybaseSslModeValue;
|
|
1091
|
+
} | undefined;
|
|
993
1092
|
} | {
|
|
994
1093
|
/**
|
|
995
1094
|
* DocDbSettings property identifier.
|
|
@@ -1095,6 +1194,133 @@ export type DMSDataProviderProps = {
|
|
|
1095
1194
|
Port: number;
|
|
1096
1195
|
ServerName: string;
|
|
1097
1196
|
} | undefined;
|
|
1197
|
+
/**
|
|
1198
|
+
* SybaseAseSettings property identifier.
|
|
1199
|
+
*/
|
|
1200
|
+
SybaseAseSettings?: {
|
|
1201
|
+
CertificateArn?: string | undefined;
|
|
1202
|
+
DatabaseName?: string | undefined;
|
|
1203
|
+
EncryptPassword?: boolean | undefined;
|
|
1204
|
+
Port: number;
|
|
1205
|
+
ServerName: string;
|
|
1206
|
+
SslMode: SybaseSslModeValue;
|
|
1207
|
+
} | undefined;
|
|
1208
|
+
} | {
|
|
1209
|
+
/**
|
|
1210
|
+
* DocDbSettings property identifier.
|
|
1211
|
+
*/
|
|
1212
|
+
DocDbSettings?: {
|
|
1213
|
+
CertificateArn?: string | undefined;
|
|
1214
|
+
DatabaseName: string;
|
|
1215
|
+
Port: number;
|
|
1216
|
+
ServerName: string;
|
|
1217
|
+
SslMode?: MongoDbSslModeValue | undefined;
|
|
1218
|
+
} | undefined;
|
|
1219
|
+
/**
|
|
1220
|
+
* IbmDb2LuwSettings property identifier.
|
|
1221
|
+
*/
|
|
1222
|
+
IbmDb2LuwSettings?: {
|
|
1223
|
+
CertificateArn?: string | undefined;
|
|
1224
|
+
DatabaseName: string;
|
|
1225
|
+
Port: number;
|
|
1226
|
+
ServerName: string;
|
|
1227
|
+
SslMode: Db2SslModeValue;
|
|
1228
|
+
} | undefined;
|
|
1229
|
+
/**
|
|
1230
|
+
* IbmDb2zOsSettings property identifier.
|
|
1231
|
+
*/
|
|
1232
|
+
IbmDb2zOsSettings?: {
|
|
1233
|
+
CertificateArn?: string | undefined;
|
|
1234
|
+
DatabaseName: string;
|
|
1235
|
+
Port: number;
|
|
1236
|
+
ServerName: string;
|
|
1237
|
+
SslMode: Db2SslModeValue;
|
|
1238
|
+
} | undefined;
|
|
1239
|
+
/**
|
|
1240
|
+
* MariaDbSettings property identifier.
|
|
1241
|
+
*/
|
|
1242
|
+
MariaDbSettings?: {
|
|
1243
|
+
CertificateArn?: string | undefined;
|
|
1244
|
+
Port: number;
|
|
1245
|
+
ServerName: string;
|
|
1246
|
+
SslMode: DmsSslModeValue;
|
|
1247
|
+
} | undefined;
|
|
1248
|
+
/**
|
|
1249
|
+
* MicrosoftSqlServerSettings property identifier.
|
|
1250
|
+
*/
|
|
1251
|
+
MicrosoftSqlServerSettings?: {
|
|
1252
|
+
CertificateArn?: string | undefined;
|
|
1253
|
+
DatabaseName: string;
|
|
1254
|
+
Port: number;
|
|
1255
|
+
ServerName: string;
|
|
1256
|
+
SslMode: DmsSslModeValue;
|
|
1257
|
+
} | undefined;
|
|
1258
|
+
/**
|
|
1259
|
+
* MongoDbSettings property identifier.
|
|
1260
|
+
*/
|
|
1261
|
+
MongoDbSettings?: {
|
|
1262
|
+
AuthMechanism?: MongoDbAuthMechanism | undefined;
|
|
1263
|
+
AuthSource?: string | undefined;
|
|
1264
|
+
AuthType?: MongoDbAuthType | undefined;
|
|
1265
|
+
CertificateArn?: string | undefined;
|
|
1266
|
+
DatabaseName?: string | undefined;
|
|
1267
|
+
Port: number;
|
|
1268
|
+
ServerName: string;
|
|
1269
|
+
SslMode?: MongoDbSslModeValue | undefined;
|
|
1270
|
+
} | undefined;
|
|
1271
|
+
/**
|
|
1272
|
+
* MySqlSettings property identifier.
|
|
1273
|
+
*/
|
|
1274
|
+
MySqlSettings?: {
|
|
1275
|
+
CertificateArn?: string | undefined;
|
|
1276
|
+
Port: number;
|
|
1277
|
+
ServerName: string;
|
|
1278
|
+
SslMode: DmsSslModeValue;
|
|
1279
|
+
} | undefined;
|
|
1280
|
+
/**
|
|
1281
|
+
* OracleSettings property identifier.
|
|
1282
|
+
*/
|
|
1283
|
+
OracleSettings?: {
|
|
1284
|
+
AsmServer?: string | undefined;
|
|
1285
|
+
CertificateArn?: string | undefined;
|
|
1286
|
+
DatabaseName: string;
|
|
1287
|
+
Port: number;
|
|
1288
|
+
SecretsManagerOracleAsmAccessRoleArn?: string | undefined;
|
|
1289
|
+
SecretsManagerOracleAsmSecretId?: string | undefined;
|
|
1290
|
+
SecretsManagerSecurityDbEncryptionAccessRoleArn?: string | undefined;
|
|
1291
|
+
SecretsManagerSecurityDbEncryptionSecretId?: string | undefined;
|
|
1292
|
+
ServerName: string;
|
|
1293
|
+
SslMode: DmsSslModeValue;
|
|
1294
|
+
} | undefined;
|
|
1295
|
+
/**
|
|
1296
|
+
* PostgreSqlSettings property identifier.
|
|
1297
|
+
*/
|
|
1298
|
+
PostgreSqlSettings?: {
|
|
1299
|
+
CertificateArn?: string | undefined;
|
|
1300
|
+
DatabaseName: string;
|
|
1301
|
+
Port: number;
|
|
1302
|
+
ServerName: string;
|
|
1303
|
+
SslMode: DmsSslModeValue;
|
|
1304
|
+
} | undefined;
|
|
1305
|
+
/**
|
|
1306
|
+
* RedshiftSettings property identifier.
|
|
1307
|
+
*/
|
|
1308
|
+
RedshiftSettings?: {
|
|
1309
|
+
DatabaseName: string;
|
|
1310
|
+
Port: number;
|
|
1311
|
+
ServerName: string;
|
|
1312
|
+
} | undefined;
|
|
1313
|
+
/**
|
|
1314
|
+
* SybaseAseSettings property identifier.
|
|
1315
|
+
*/
|
|
1316
|
+
SybaseAseSettings: {
|
|
1317
|
+
CertificateArn?: string | undefined;
|
|
1318
|
+
DatabaseName?: string | undefined;
|
|
1319
|
+
EncryptPassword?: boolean | undefined;
|
|
1320
|
+
Port: number;
|
|
1321
|
+
ServerName: string;
|
|
1322
|
+
SslMode: SybaseSslModeValue;
|
|
1323
|
+
};
|
|
1098
1324
|
} | undefined;
|
|
1099
1325
|
/**
|
|
1100
1326
|
* An array of key-value pairs to apply to this resource.
|
|
@@ -1141,4 +1367,8 @@ export type MongoDbAuthType = "no" | "password";
|
|
|
1141
1367
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-mongodbsslmodevalue.html}
|
|
1142
1368
|
*/
|
|
1143
1369
|
export type MongoDbSslModeValue = "none" | "require" | "verify-full";
|
|
1370
|
+
/**
|
|
1371
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dms-dataprovider-sybasesslmodevalue.html}
|
|
1372
|
+
*/
|
|
1373
|
+
export type SybaseSslModeValue = "none" | "require" | "verify-ca";
|
|
1144
1374
|
//# sourceMappingURL=aws-dms-dataprovider.d.ts.map
|
|
@@ -346,6 +346,10 @@ export type FleetLaunchTemplateOverridesRequest = {
|
|
|
346
346
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzone}
|
|
347
347
|
*/
|
|
348
348
|
AvailabilityZone?: string | undefined;
|
|
349
|
+
/**
|
|
350
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest.html#cfn-ec2-ec2fleet-fleetlaunchtemplateoverridesrequest-availabilityzoneid}
|
|
351
|
+
*/
|
|
352
|
+
AvailabilityZoneId?: string | undefined;
|
|
349
353
|
/**
|
|
350
354
|
* The block device mappings, which define the EBS volumes and instance store volumes to attach to the instance at launch.
|
|
351
355
|
*
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
* IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com
|
|
3
|
+
* IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide* .
|
|
4
4
|
*
|
|
5
|
-
* There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com
|
|
5
|
+
* There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com/vpc/latest/ipam/iam-ipam-policy-examples.html) in the *Amazon VPC IPAM User Guide* .
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html}
|
|
7
7
|
*/
|
|
8
8
|
export type EC2IPAM = ResourceDefinitionWithAttributes<"AWS::EC2::IPAM", EC2IPAMProps, EC2IPAMAttribs>;
|
|
9
9
|
/**
|
|
10
|
-
* IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com
|
|
10
|
+
* IPAM is a VPC feature that you can use to automate your IP address management workflows including assigning, tracking, troubleshooting, and auditing IP addresses across AWS Regions and accounts throughout your AWS Organization. For more information, see [What is IPAM?](https://docs.aws.amazon.com/vpc/latest/ipam/what-is-it-ipam.html) in the *Amazon VPC IPAM User Guide* .
|
|
11
11
|
*
|
|
12
|
-
* There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com
|
|
12
|
+
* There are AWS Identity and Access Management (IAM) permissions required to fully manage an IPAM in CloudFormation. For more information, see [Example policy](https://docs.aws.amazon.com/vpc/latest/ipam/iam-ipam-policy-examples.html) in the *Amazon VPC IPAM User Guide* .
|
|
13
13
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html}
|
|
14
14
|
*/
|
|
15
15
|
export type EC2IPAMProps = {
|
|
@@ -51,7 +51,7 @@ export type EC2IPAMProps = {
|
|
|
51
51
|
*/
|
|
52
52
|
Tags?: Tag[] | undefined;
|
|
53
53
|
/**
|
|
54
|
-
* IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see the [VPC IPAM product pricing page](https://docs.aws.amazon.com
|
|
54
|
+
* IPAM is offered in a Free Tier and an Advanced Tier. For more information about the features available in each tier and the costs associated with the tiers, see the [VPC IPAM product pricing page](https://docs.aws.amazon.com/vpc/pricing/) .
|
|
55
55
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-ipam.html#cfn-ec2-ipam-tier}
|
|
56
56
|
*/
|
|
57
57
|
Tier?: "free" | "advanced" | undefined;
|
|
@@ -702,6 +702,10 @@ export type LaunchTemplateOverrides = {
|
|
|
702
702
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzone}
|
|
703
703
|
*/
|
|
704
704
|
AvailabilityZone?: string | undefined;
|
|
705
|
+
/**
|
|
706
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-launchtemplateoverrides.html#cfn-ec2-spotfleet-launchtemplateoverrides-availabilityzoneid}
|
|
707
|
+
*/
|
|
708
|
+
AvailabilityZoneId?: string | undefined;
|
|
705
709
|
/**
|
|
706
710
|
* The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types.
|
|
707
711
|
*
|
|
@@ -1211,6 +1215,10 @@ export type SpotPlacement = {
|
|
|
1211
1215
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-availabilityzone}
|
|
1212
1216
|
*/
|
|
1213
1217
|
AvailabilityZone?: string | undefined;
|
|
1218
|
+
/**
|
|
1219
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-availabilityzoneid}
|
|
1220
|
+
*/
|
|
1221
|
+
AvailabilityZoneId?: string | undefined;
|
|
1214
1222
|
/**
|
|
1215
1223
|
* The name of the placement group.
|
|
1216
1224
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-spotfleet-spotplacement.html#cfn-ec2-spotfleet-spotplacement-groupname}
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Describes a VPN concentrator.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
|
|
5
5
|
*/
|
|
6
6
|
export type EC2VPNConcentrator = ResourceDefinitionWithAttributes<"AWS::EC2::VPNConcentrator", EC2VPNConcentratorProps, EC2VPNConcentratorAttribs>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Describes a VPN concentrator.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html}
|
|
10
10
|
*/
|
|
11
11
|
export type EC2VPNConcentratorProps = {
|
|
@@ -15,12 +15,12 @@ export type EC2VPNConcentratorProps = {
|
|
|
15
15
|
*/
|
|
16
16
|
Tags?: Tag[] | undefined;
|
|
17
17
|
/**
|
|
18
|
-
* The ID of the transit gateway
|
|
18
|
+
* The ID of the transit gateway associated with the VPN concentrator.
|
|
19
19
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-transitgatewayid}
|
|
20
20
|
*/
|
|
21
21
|
TransitGatewayId: string;
|
|
22
22
|
/**
|
|
23
|
-
* The type of VPN concentrator
|
|
23
|
+
* The type of VPN concentrator.
|
|
24
24
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-type}
|
|
25
25
|
*/
|
|
26
26
|
Type: string;
|
|
@@ -30,12 +30,12 @@ export type EC2VPNConcentratorProps = {
|
|
|
30
30
|
*/
|
|
31
31
|
export type EC2VPNConcentratorAttribs = {
|
|
32
32
|
/**
|
|
33
|
-
* The ID of the transit gateway attachment
|
|
33
|
+
* The ID of the transit gateway attachment for the VPN concentrator.
|
|
34
34
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-transitgatewayattachmentid}
|
|
35
35
|
*/
|
|
36
36
|
TransitGatewayAttachmentId: string;
|
|
37
37
|
/**
|
|
38
|
-
* The ID of the VPN connection.
|
|
38
|
+
* The ID of the VPN concentrator to associate with the VPN connection.
|
|
39
39
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconcentrator.html#cfn-ec2-vpnconcentrator-vpnconcentratorid}
|
|
40
40
|
*/
|
|
41
41
|
VpnConcentratorId: string;
|
|
@@ -120,7 +120,7 @@ export type EC2VPNConnectionProps = {
|
|
|
120
120
|
*/
|
|
121
121
|
Type: string;
|
|
122
122
|
/**
|
|
123
|
-
* The ID of the VPN connection.
|
|
123
|
+
* The ID of the VPN concentrator to associate with the VPN connection.
|
|
124
124
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-vpnconnection.html#cfn-ec2-vpnconnection-vpnconcentratorid}
|
|
125
125
|
*/
|
|
126
126
|
VpnConcentratorId?: string | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { ResourceDefinition } from "../main.ts";
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
5
5
|
*/
|
|
6
6
|
export type ECRPullTimeUpdateExclusion = ResourceDefinition<"AWS::ECR::PullTimeUpdateExclusion", ECRPullTimeUpdateExclusionProps>;
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* The ARN of the IAM principal to remove from the pull time update exclusion list.
|
|
9
9
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-pulltimeupdateexclusion.html}
|
|
10
10
|
*/
|
|
11
11
|
export type ECRPullTimeUpdateExclusionProps = {
|
|
@@ -10,7 +10,7 @@ export type ECRRepositoryCreationTemplate = ResourceDefinitionWithAttributes<"AW
|
|
|
10
10
|
*/
|
|
11
11
|
export type ECRRepositoryCreationTemplateProps = {
|
|
12
12
|
/**
|
|
13
|
-
* A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The
|
|
13
|
+
* A list of enumerable Strings representing the repository creation scenarios that this template will apply towards. The supported scenarios are PULL_THROUGH_CACHE, REPLICATION, and CREATE_ON_PUSH
|
|
14
14
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecr-repositorycreationtemplate.html#cfn-ecr-repositorycreationtemplate-appliedfor}
|
|
15
15
|
*/
|
|
16
16
|
AppliedFor: AppliedForItem[];
|
|
@@ -66,7 +66,16 @@ export type ObservabilityAdminTelemetryPipelinesAttribs = {
|
|
|
66
66
|
Status: TelemetryPipelineStatus;
|
|
67
67
|
};
|
|
68
68
|
/**
|
|
69
|
-
* Defines the configuration for a
|
|
69
|
+
* Defines the configuration for a pipeline, including how data flows from sources through processors to destinations. The configuration is specified in YAML format and must include a valid pipeline definition with required source and sink components. This pipeline enables end-to-end telemetry data collection, transformation, and delivery while supporting optional processing steps and extensions for enhanced functionality.
|
|
70
|
+
*
|
|
71
|
+
* The primary pipeline configuration section are:
|
|
72
|
+
*
|
|
73
|
+
* - *Source:* Defines where log data originates from (S3 buckets, CloudWatch Logs, third-party APIs). Each pipeline must have exactly one source.
|
|
74
|
+
* - *Processors (optional):* Transform, parse, and enrich log data as it flows through the pipeline. Processors are applied sequentially in the order they are defined.
|
|
75
|
+
* - *Sink:* Defines the destination where processed log data is sent. Each pipeline must have exactly one sink.
|
|
76
|
+
* - *Extensions (optional):* Provide additional functionality such as AWS Secrets Manager integration for credential management.
|
|
77
|
+
*
|
|
78
|
+
* For more details on each configuration section see [CloudWatch pipelines User Guide](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/cloudwatch-pipelines.html) . Additional comprehensive configuration examples can be found in the [CreateTelemetryPipeline API docs](https://docs.aws.amazon.com/cloudwatch/latest/observabilityadmin/API_CreateTelemetryPipeline.html#API_CreateTelemetryPipeline_Examples) .
|
|
70
79
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetrypipelines-telemetrypipelineconfiguration.html}
|
|
71
80
|
*/
|
|
72
81
|
export type TelemetryPipelineConfiguration = {
|
|
@@ -123,7 +123,7 @@ export type Accounting = {
|
|
|
123
123
|
*/
|
|
124
124
|
DefaultPurgeTimeInDays?: number | undefined;
|
|
125
125
|
/**
|
|
126
|
-
* The default value for `mode` is `
|
|
126
|
+
* The default value for `mode` is `NONE` . A value of `STANDARD` means Slurm accounting is enabled.
|
|
127
127
|
* @default "NONE"
|
|
128
128
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-accounting.html#cfn-pcs-cluster-accounting-mode}
|
|
129
129
|
*/
|
|
@@ -196,7 +196,7 @@ export type SlurmCustomSetting = {
|
|
|
196
196
|
*/
|
|
197
197
|
export type SlurmRest = {
|
|
198
198
|
/**
|
|
199
|
-
* The default value for `mode` is `
|
|
199
|
+
* The default value for `mode` is `NONE` . A value of `STANDARD` means the Slurm REST API is enabled.
|
|
200
200
|
* @default "NONE"
|
|
201
201
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-pcs-cluster-slurmrest.html#cfn-pcs-cluster-slurmrest-mode}
|
|
202
202
|
*/
|
|
@@ -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;
|
|
@@ -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,29 @@ 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
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-externalbedrockknowledgebaseconfig.html}
|
|
75
|
+
*/
|
|
76
|
+
export type ExternalBedrockKnowledgeBaseConfig = {
|
|
77
|
+
/**
|
|
78
|
+
* @pattern ^arn:aws:iam::[0-9]{12}:role/(?:service-role/)?[a-zA-Z0-9_+=,.@-]{1,64}$
|
|
79
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-externalbedrockknowledgebaseconfig.html#cfn-wisdom-assistantassociation-externalbedrockknowledgebaseconfig-accessrolearn}
|
|
80
|
+
*/
|
|
81
|
+
AccessRoleArn: string;
|
|
82
|
+
/**
|
|
83
|
+
* @pattern ^arn:aws(|-cn|-us-gov):bedrock:[a-zA-Z0-9-]*:[0-9]{12}:knowledge-base/[0-9a-zA-Z]+$
|
|
84
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wisdom-assistantassociation-externalbedrockknowledgebaseconfig.html#cfn-wisdom-assistantassociation-externalbedrockknowledgebaseconfig-bedrockknowledgebasearn}
|
|
85
|
+
*/
|
|
86
|
+
BedrockKnowledgeBaseArn: string;
|
|
87
|
+
};
|
|
73
88
|
//# sourceMappingURL=aws-wisdom-assistantassociation.d.ts.map
|