@propulsionworks/cloudformation 0.1.40 → 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.
Files changed (44) hide show
  1. package/out/exports/resources.generated/aws-apigatewayv2-integration.d.ts +1 -0
  2. package/out/exports/resources.generated/aws-arcregionswitch-plan.d.ts +111 -1
  3. package/out/exports/resources.generated/aws-autoscaling-autoscalinggroup.d.ts +18 -0
  4. package/out/exports/resources.generated/aws-bedrockagentcore-memory.d.ts +106 -0
  5. package/out/exports/resources.generated/aws-bedrockagentcore-runtime.d.ts +5 -0
  6. package/out/exports/resources.generated/aws-billing-billingview.d.ts +4 -0
  7. package/out/exports/resources.generated/aws-cases-caserule.d.ts +24 -24
  8. package/out/exports/resources.generated/aws-cases-domain.d.ts +10 -6
  9. package/out/exports/resources.generated/aws-cases-field.d.ts +10 -10
  10. package/out/exports/resources.generated/aws-cases-layout.d.ts +30 -20
  11. package/out/exports/resources.generated/aws-cases-template.d.ts +32 -18
  12. package/out/exports/resources.generated/aws-cloudfront-distribution.d.ts +13 -0
  13. package/out/exports/resources.generated/aws-connect-contactflowmodule.d.ts +2 -2
  14. package/out/exports/resources.generated/aws-dms-dataprovider.d.ts +231 -1
  15. package/out/exports/resources.generated/aws-ec2-clientvpnendpoint.d.ts +2 -0
  16. package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +7 -1
  17. package/out/exports/resources.generated/aws-ec2-ipam.d.ts +5 -5
  18. package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +11 -1
  19. package/out/exports/resources.generated/aws-ec2-vpnconcentrator.d.ts +6 -6
  20. package/out/exports/resources.generated/aws-ec2-vpnconnection.d.ts +1 -1
  21. package/out/exports/resources.generated/aws-ecr-pulltimeupdateexclusion.d.ts +2 -2
  22. package/out/exports/resources.generated/aws-ecr-repositorycreationtemplate.d.ts +1 -1
  23. package/out/exports/resources.generated/aws-ecs-capacityprovider.d.ts +10 -0
  24. package/out/exports/resources.generated/aws-ecs-expressgatewayservice.d.ts +12 -0
  25. package/out/exports/resources.generated/aws-groundstation-dataflowendpointgroupv2.d.ts +42 -27
  26. package/out/exports/resources.generated/aws-iot-topicrule.d.ts +25 -0
  27. package/out/exports/resources.generated/aws-kafkaconnect-connector.d.ts +1 -1
  28. package/out/exports/resources.generated/aws-lex-bot.d.ts +6 -0
  29. package/out/exports/resources.generated/aws-logs-loggroup.d.ts +1 -0
  30. package/out/exports/resources.generated/aws-mediatailor-playbackconfiguration.d.ts +42 -0
  31. package/out/exports/resources.generated/aws-observabilityadmin-s3tableintegration.d.ts +10 -10
  32. package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +30 -4
  33. package/out/exports/resources.generated/aws-odb-odbpeeringconnection.d.ts +1 -1
  34. package/out/exports/resources.generated/aws-pcs-cluster.d.ts +2 -2
  35. package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +15 -2
  36. package/out/exports/resources.generated/aws-s3-storagelens.d.ts +12 -12
  37. package/out/exports/resources.generated/aws-securityhub-connectorv2.d.ts +5 -5
  38. package/out/exports/resources.generated/aws-ses-multiregionendpoint.d.ts +1 -1
  39. package/out/exports/resources.generated/aws-ses-tenant.d.ts +11 -7
  40. package/out/exports/resources.generated/aws-ssm-maintenancewindowtask.d.ts +1 -1
  41. package/out/exports/resources.generated/aws-wisdom-aiprompt.d.ts +1 -1
  42. package/out/exports/resources.generated/aws-wisdom-assistantassociation.d.ts +18 -3
  43. package/out/exports/resources.generated/aws-workspacesweb-usersettings.d.ts +1 -0
  44. 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;
@@ -56,6 +56,11 @@ export type ARCRegionSwitchPlanProps = {
56
56
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arcregionswitch-plan.html#cfn-arcregionswitch-plan-regions}
57
57
  */
58
58
  Regions: string[];
59
+ /**
60
+ * The report configuration for a plan.
61
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arcregionswitch-plan.html#cfn-arcregionswitch-plan-reportconfiguration}
62
+ */
63
+ ReportConfiguration?: ReportConfiguration | undefined;
59
64
  /**
60
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arcregionswitch-plan.html#cfn-arcregionswitch-plan-tags}
61
66
  */
@@ -230,6 +235,71 @@ export type CustomActionLambdaConfiguration = {
230
235
  */
231
236
  Ungraceful?: LambdaUngraceful | undefined;
232
237
  };
238
+ /**
239
+ * Configuration for Amazon DocumentDB global clusters used in a Region switch plan.
240
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html}
241
+ */
242
+ export type DocumentDbConfiguration = {
243
+ /**
244
+ * The behavior for a global cluster, that is, only allow switchover or also allow failover.
245
+ * @default "switchoverOnly"
246
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-behavior}
247
+ */
248
+ Behavior: DocumentDbDefaultBehavior;
249
+ /**
250
+ * The cross account role for the configuration.
251
+ * @pattern ^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$
252
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-crossaccountrole}
253
+ */
254
+ CrossAccountRole?: string | undefined;
255
+ /**
256
+ * The database cluster Amazon Resource Names (ARNs) for a DocumentDB global cluster.
257
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-databaseclusterarns}
258
+ */
259
+ DatabaseClusterArns: string[];
260
+ /**
261
+ * The external ID (secret key) for the configuration.
262
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-externalid}
263
+ */
264
+ ExternalId?: string | undefined;
265
+ /**
266
+ * The global cluster identifier for a DocumentDB global cluster.
267
+ * @pattern ^[A-Za-z][0-9A-Za-z-:._]*$
268
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-globalclusteridentifier}
269
+ */
270
+ GlobalClusterIdentifier: string;
271
+ /**
272
+ * The timeout value specified for the configuration.
273
+ * @min 1
274
+ * @default 60
275
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-timeoutminutes}
276
+ */
277
+ TimeoutMinutes?: number | undefined;
278
+ /**
279
+ * The settings for ungraceful execution.
280
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbconfiguration.html#cfn-arcregionswitch-plan-documentdbconfiguration-ungraceful}
281
+ */
282
+ Ungraceful?: DocumentDbUngraceful | undefined;
283
+ };
284
+ /**
285
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbdefaultbehavior.html}
286
+ */
287
+ export type DocumentDbDefaultBehavior = "switchoverOnly" | "failover";
288
+ /**
289
+ * Configuration for handling failures when performing operations on DocumentDB global clusters.
290
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbungraceful.html}
291
+ */
292
+ export type DocumentDbUngraceful = {
293
+ /**
294
+ * The settings for ungraceful execution.
295
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbungraceful.html#cfn-arcregionswitch-plan-documentdbungraceful-ungraceful}
296
+ */
297
+ Ungraceful?: DocumentDbUngracefulBehavior | undefined;
298
+ };
299
+ /**
300
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-documentdbungracefulbehavior.html}
301
+ */
302
+ export type DocumentDbUngracefulBehavior = "failover";
233
303
  /**
234
304
  * Configuration for increasing the capacity of Amazon EC2 Auto Scaling groups during a Region switch.
235
305
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-ec2asgcapacityincreaseconfiguration.html}
@@ -462,11 +532,13 @@ export type ExecutionBlockConfiguration = {
462
532
  EksResourceScalingConfig: EksResourceScalingConfiguration;
463
533
  } | {
464
534
  Route53HealthCheckConfig: Route53HealthCheckConfiguration;
535
+ } | {
536
+ DocumentDbConfig: DocumentDbConfiguration;
465
537
  };
466
538
  /**
467
539
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-executionblocktype.html}
468
540
  */
469
- export type ExecutionBlockType = "CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck";
541
+ export type ExecutionBlockType = "CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck" | "DocumentDb";
470
542
  /**
471
543
  * Configuration for Amazon Aurora global databases used in a Region switch plan.
472
544
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-globalauroraconfiguration.html}
@@ -649,6 +721,24 @@ export type RegionSwitchPlanConfiguration = {
649
721
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-regiontorunin.html}
650
722
  */
651
723
  export type RegionToRunIn = "activatingRegion" | "deactivatingRegion";
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.
726
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportconfiguration.html}
727
+ */
728
+ export type ReportConfiguration = {
729
+ /**
730
+ * The output configuration for the report.
731
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportconfiguration.html#cfn-arcregionswitch-plan-reportconfiguration-reportoutput}
732
+ */
733
+ ReportOutput?: ReportOutputConfiguration[] | undefined;
734
+ };
735
+ /**
736
+ * Configuration for report output destinations used in a Region switch plan.
737
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-reportoutputconfiguration.html}
738
+ */
739
+ export type ReportOutputConfiguration = {
740
+ S3Configuration: S3ReportOutputConfiguration;
741
+ };
652
742
  /**
653
743
  * The Amazon Route 53 health check configuration.
654
744
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-route53healthcheckconfiguration.html}
@@ -715,6 +805,26 @@ export type Route53ResourceRecordSet = {
715
805
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-routingcontrolstatechange.html}
716
806
  */
717
807
  export type RoutingControlStateChange = "On" | "Off";
808
+ /**
809
+ * Configuration for delivering generated reports to an Amazon S3 bucket.
810
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html}
811
+ */
812
+ export type S3ReportOutputConfiguration = {
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.
815
+ * @pattern ^\d{12}$
816
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html#cfn-arcregionswitch-plan-s3reportoutputconfiguration-bucketowner}
817
+ */
818
+ BucketOwner?: string | undefined;
819
+ /**
820
+ * The S3 bucket name and optional prefix where reports are stored. Format: bucket-name or bucket-name/prefix.
821
+ * @minLength 3
822
+ * @maxLength 512
823
+ * @pattern ^(?:s3://)?[a-z0-9][a-z0-9-]{1,61}[a-z0-9](?:/[^/ ][^/]*)*‍/?$
824
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-s3reportoutputconfiguration.html#cfn-arcregionswitch-plan-s3reportoutputconfiguration-bucketpath}
825
+ */
826
+ BucketPath?: string | undefined;
827
+ };
718
828
  /**
719
829
  * The service for a cross account role.
720
830
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-service.html}
@@ -123,6 +123,7 @@ export type AutoScalingAutoScalingGroupProps = {
123
123
  */
124
124
  InstanceId?: string | undefined;
125
125
  /**
126
+ * The instance lifecycle policy for the Auto Scaling group.
126
127
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-autoscaling-autoscalinggroup.html#cfn-autoscaling-autoscalinggroup-instancelifecyclepolicy}
127
128
  */
128
129
  InstanceLifecyclePolicy?: InstanceLifecyclePolicy | undefined;
@@ -407,10 +408,14 @@ export type CpuPerformanceFactorRequest = {
407
408
  References?: PerformanceFactorReferenceRequest[] | undefined;
408
409
  };
409
410
  /**
411
+ * The instance lifecycle policy for the Auto Scaling group. This policy controls instance behavior when an instance transitions through its lifecycle states. Configure retention triggers to specify when instances should move to a `Retained` state instead of automatic termination.
412
+ *
413
+ * For more information, see [Control instance retention with instance lifecycle policies](https://docs.aws.amazon.com/autoscaling/ec2/userguide/instance-lifecycle-policy.html) in the *Amazon EC2 Auto Scaling User Guide* .
410
414
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancelifecyclepolicy.html}
411
415
  */
412
416
  export type InstanceLifecyclePolicy = {
413
417
  /**
418
+ * Specifies the conditions that trigger instance retention behavior. These triggers determine when instances should move to a `Retained` state instead of automatic termination. This allows you to maintain control over instance management when lifecycles transition and operations fail.
414
419
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-instancelifecyclepolicy.html#cfn-autoscaling-autoscalinggroup-instancelifecyclepolicy-retentiontriggers}
415
420
  */
416
421
  RetentionTriggers?: RetentionTriggers | undefined;
@@ -782,6 +787,13 @@ export type LaunchTemplate = {
782
787
  */
783
788
  export type LaunchTemplateOverrides = {
784
789
  /**
790
+ * The ID of the Amazon Machine Image (AMI) to use for instances launched with this override. When using Instance Refresh with `ReplaceRootVolume` strategy, this specifies the AMI for root volume replacement operations.
791
+ *
792
+ * For `ReplaceRootVolume` operations:
793
+ *
794
+ * - All overrides in the `MixedInstancesPolicy` must specify an ImageId
795
+ * - The AMI must contain only a single root volume
796
+ * - Root volume replacement doesn't support multi-volume AMIs
785
797
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-launchtemplateoverrides.html#cfn-autoscaling-autoscalinggroup-launchtemplateoverrides-imageid}
786
798
  */
787
799
  ImageId?: string | undefined;
@@ -1107,10 +1119,16 @@ export type PerformanceFactorReferenceRequest = {
1107
1119
  InstanceFamily?: string | undefined;
1108
1120
  };
1109
1121
  /**
1122
+ * Defines the specific triggers that cause instances to be retained in a Retained state rather than terminated. Each trigger corresponds to a different failure scenario during the instance lifecycle. This allows fine-grained control over when to preserve instances for manual intervention.
1110
1123
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-retentiontriggers.html}
1111
1124
  */
1112
1125
  export type RetentionTriggers = {
1113
1126
  /**
1127
+ * Specifies the action when a termination lifecycle hook is abandoned due to failure, timeout, or explicit abandonment (calling CompleteLifecycleAction).
1128
+ *
1129
+ * Set to `Retain` to move instances to a `Retained` state. Set to `Terminate` for default termination behavior.
1130
+ *
1131
+ * Retained instances don't count toward desired capacity and remain until you call `TerminateInstanceInAutoScalingGroup` .
1114
1132
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-autoscaling-autoscalinggroup-retentiontriggers.html#cfn-autoscaling-autoscalinggroup-retentiontriggers-terminatehookabandon}
1115
1133
  */
1116
1134
  TerminateHookAbandon?: string | undefined;
@@ -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.
@@ -1,29 +1,29 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * A case rule. In the Amazon Connect admin website, case rules are known as case field conditions. Case rules are used to define the situations under which fields should have certain effects (such as required).
3
+ * Creates a new case rule. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html}
5
5
  */
6
6
  export type CasesCaseRule = ResourceDefinitionWithAttributes<"AWS::Cases::CaseRule", CasesCaseRuleProps, CasesCaseRuleAttribs>;
7
7
  /**
8
- * A case rule. In the Amazon Connect admin website, case rules are known as case field conditions. Case rules are used to define the situations under which fields should have certain effects (such as required).
8
+ * Creates a new case rule. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
9
9
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html}
10
10
  */
11
11
  export type CasesCaseRuleProps = {
12
12
  /**
13
- * A description explaining the purpose and behavior of this case rule. Helps administrators understand when and why this rule applies to case fields.
13
+ * Description of a case rule.
14
14
  * @maxLength 255
15
15
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-description}
16
16
  */
17
17
  Description?: string | undefined;
18
18
  /**
19
- * The unique identifier of the Cases domain.
19
+ * Unique identifier of a Cases domain.
20
20
  * @minLength 1
21
21
  * @maxLength 500
22
22
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-domainid}
23
23
  */
24
24
  DomainId?: string | undefined;
25
25
  /**
26
- * A descriptive name for the case rule. Must be unique within the domain and should clearly indicate the rule's purpose (e.g., 'Priority Field Required for Urgent Cases').
26
+ * Name of the case rule.
27
27
  * @minLength 1
28
28
  * @maxLength 100
29
29
  * @pattern ^.*[\S]$
@@ -31,12 +31,12 @@ export type CasesCaseRuleProps = {
31
31
  */
32
32
  Name: string;
33
33
  /**
34
- * Defines the rule behavior and conditions. Specifies the rule type and the conditions under which it applies. In the Amazon Connect admin website, this corresponds to case field conditions.
34
+ * Represents what rule type should take place, under what conditions.
35
35
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-rule}
36
36
  */
37
37
  Rule: CaseRuleDetails;
38
38
  /**
39
- * The tags that you attach to this case rule.
39
+ * An array of key-value pairs to apply to this resource.
40
40
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-tags}
41
41
  */
42
42
  Tags?: Tag[] | undefined;
@@ -46,34 +46,34 @@ export type CasesCaseRuleProps = {
46
46
  */
47
47
  export type CasesCaseRuleAttribs = {
48
48
  /**
49
- * The Amazon Resource Name (ARN) of a case rule.
49
+ * The Amazon Resource Name (ARN) of the case rule.
50
50
  * @minLength 1
51
51
  * @maxLength 500
52
52
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-caserulearn}
53
53
  */
54
54
  CaseRuleArn: string;
55
55
  /**
56
- * The unique identifier of a case rule.
56
+ * Unique identifier of a case rule.
57
57
  * @minLength 1
58
58
  * @maxLength 500
59
59
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-caseruleid}
60
60
  */
61
61
  CaseRuleId: string;
62
62
  /**
63
- * The time at which the case rule was created.
63
+ * Timestamp when the resource was created.
64
64
  * @format date-time
65
65
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-createdtime}
66
66
  */
67
67
  CreatedTime: string;
68
68
  /**
69
- * The time at which the case rule was created or last modified.
69
+ * Timestamp when the resource was created or last modified.
70
70
  * @format date-time
71
71
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-caserule.html#cfn-cases-caserule-lastmodifiedtime}
72
72
  */
73
73
  LastModifiedTime: string;
74
74
  };
75
75
  /**
76
- * A boolean condition for a rule.
76
+ * Boolean condition for a rule. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
77
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-booleancondition.html}
78
78
  */
79
79
  export type BooleanCondition = {
@@ -82,17 +82,17 @@ export type BooleanCondition = {
82
82
  NotEqualTo: BooleanOperands;
83
83
  };
84
84
  /**
85
- * Boolean operands for a condition.
85
+ * Boolean operands for a condition. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
86
86
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-booleanoperands.html}
87
87
  */
88
88
  export type BooleanOperands = {
89
89
  /**
90
- * The left hand operand in the condition.
90
+ * Represents the left hand operand in the condition.
91
91
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-booleanoperands.html#cfn-cases-caserule-booleanoperands-operandone}
92
92
  */
93
93
  OperandOne: OperandOne;
94
94
  /**
95
- * The right hand operand in the condition.
95
+ * Represents the right hand operand in the condition.
96
96
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-booleanoperands.html#cfn-cases-caserule-booleanoperands-operandtwo}
97
97
  */
98
98
  OperandTwo: OperandTwo;
@@ -103,7 +103,7 @@ export type BooleanOperands = {
103
103
  Result: boolean;
104
104
  };
105
105
  /**
106
- * Defines the rule behavior and conditions. Specifies the rule type and the conditions under which it applies. In the Amazon Connect admin website, this corresponds to case field conditions.
106
+ * Represents what rule type should take place, under what conditions. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
107
107
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-caseruledetails.html}
108
108
  */
109
109
  export type CaseRuleDetails = {
@@ -112,23 +112,23 @@ export type CaseRuleDetails = {
112
112
  Hidden: HiddenCaseRule;
113
113
  };
114
114
  /**
115
- * Hidden rule type, used to indicate whether a field is hidden
115
+ * A rule that controls field visibility based on conditions. Fields can be shown or hidden dynamically based on values in other fields.
116
116
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-hiddencaserule.html}
117
117
  */
118
118
  export type HiddenCaseRule = {
119
119
  /**
120
- * List of conditions for the hidden rule; the first condition to evaluate to true dictates the value of the rule
120
+ * A list of conditions that determine field visibility.
121
121
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-hiddencaserule.html#cfn-cases-caserule-hiddencaserule-conditions}
122
122
  */
123
123
  Conditions: BooleanCondition[];
124
124
  /**
125
- * The value of the rule (i.e. whether the field is hidden) should none of the conditions evaluate to true
125
+ * Whether the field is hidden when no conditions match.
126
126
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-hiddencaserule.html#cfn-cases-caserule-hiddencaserule-defaultvalue}
127
127
  */
128
128
  DefaultValue: boolean;
129
129
  };
130
130
  /**
131
- * The left hand operand in the condition.
131
+ * Represents the left hand operand in the condition. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
132
132
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-operandone.html}
133
133
  */
134
134
  export type OperandOne = {
@@ -140,7 +140,7 @@ export type OperandOne = {
140
140
  FieldId: string;
141
141
  };
142
142
  /**
143
- * The right hand operand in the condition.
143
+ * Represents the right hand operand in the condition. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
144
144
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-operandtwo.html}
145
145
  */
146
146
  export type OperandTwo = {
@@ -164,17 +164,17 @@ export type OperandTwo = {
164
164
  EmptyValue: Record<string, unknown>;
165
165
  };
166
166
  /**
167
- * A required rule type, used to indicate whether a field is required.
167
+ * Required rule type, used to indicate whether a field is required. In the Amazon Connect admin website, case rules are known as *case field conditions* . For more information about case field conditions, see [Add case field conditions to a case template](https://docs.aws.amazon.com/connect/latest/adminguide/case-field-conditions.html) .
168
168
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-requiredcaserule.html}
169
169
  */
170
170
  export type RequiredCaseRule = {
171
171
  /**
172
- * An ordered list of boolean conditions that determine when the field should be required. Conditions are evaluated in order, and the first condition that evaluates to true determines whether the field is required, overriding the default value.
172
+ * List of conditions for the required rule; the first condition to evaluate to true dictates the value of the rule.
173
173
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-requiredcaserule.html#cfn-cases-caserule-requiredcaserule-conditions}
174
174
  */
175
175
  Conditions: BooleanCondition[];
176
176
  /**
177
- * The default required state for the field when none of the specified conditions are met. If true, the field is required by default; if false, the field is optional by default.
177
+ * The value of the rule (that is, whether the field is required) should none of the conditions evaluate to true.
178
178
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cases-caserule-requiredcaserule.html#cfn-cases-caserule-requiredcaserule-defaultvalue}
179
179
  */
180
180
  DefaultValue: boolean;
@@ -1,16 +1,20 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * A domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.
3
+ * Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.
4
+ *
5
+ * > This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect [CreateIntegrationAssociation](https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateIntegrationAssociation.html) API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see [Onboard to Cases](https://docs.aws.amazon.com/connect/latest/adminguide/required-permissions-iam-cases.html#onboard-cases-iam) .
4
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html}
5
7
  */
6
8
  export type CasesDomain = ResourceDefinitionWithAttributes<"AWS::Cases::Domain", CasesDomainProps, CasesDomainAttribs>;
7
9
  /**
8
- * A domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.
10
+ * Creates a domain, which is a container for all case data, such as cases, fields, templates and layouts. Each Amazon Connect instance can be associated with only one Cases domain.
11
+ *
12
+ * > This will not associate your connect instance to Cases domain. Instead, use the Amazon Connect [CreateIntegrationAssociation](https://docs.aws.amazon.com/connect/latest/APIReference/API_CreateIntegrationAssociation.html) API. You need specific IAM permissions to successfully associate the Cases domain. For more information, see [Onboard to Cases](https://docs.aws.amazon.com/connect/latest/adminguide/required-permissions-iam-cases.html#onboard-cases-iam) .
9
13
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html}
10
14
  */
11
15
  export type CasesDomainProps = {
12
16
  /**
13
- * The name for your Cases domain. It must be unique for your AWS account.
17
+ * The name of the domain.
14
18
  * @minLength 1
15
19
  * @maxLength 100
16
20
  * @pattern ^.*[\S]$
@@ -18,7 +22,7 @@ export type CasesDomainProps = {
18
22
  */
19
23
  Name: string;
20
24
  /**
21
- * The tags that you attach to this domain.
25
+ * An array of key-value pairs to apply to this resource.
22
26
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html#cfn-cases-domain-tags}
23
27
  */
24
28
  Tags?: Tag[] | undefined;
@@ -28,7 +32,7 @@ export type CasesDomainProps = {
28
32
  */
29
33
  export type CasesDomainAttribs = {
30
34
  /**
31
- * The time at which the domain was created.
35
+ * The timestamp when the Cases domain was created.
32
36
  * @format date-time
33
37
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html#cfn-cases-domain-createdtime}
34
38
  */
@@ -48,7 +52,7 @@ export type CasesDomainAttribs = {
48
52
  */
49
53
  DomainId: string;
50
54
  /**
51
- * The current status of the Cases domain. Indicates whether the domain is Active, CreationInProgress, or CreationFailed.
55
+ * The status of the Cases domain.
52
56
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cases-domain.html#cfn-cases-domain-domainstatus}
53
57
  */
54
58
  DomainStatus: DomainStatus;