@awboost/cfntypes 0.100.244 → 0.100.246

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.
@@ -13347,6 +13347,546 @@ export type APSWorkspaceWorkspaceConfiguration = {
13347
13347
  */
13348
13348
  RetentionPeriodInDays?: number;
13349
13349
  };
13350
+ /**
13351
+ * Resource type definition for `AWS::ARCRegionSwitch::Plan`.
13352
+ * Represents a plan that specifies Regions, IAM roles, and workflows of logic required to perform the desired change to your multi-Region application
13353
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arcregionswitch-plan.html}
13354
+ */
13355
+ export type ARCRegionSwitchPlanProps = {
13356
+ AssociatedAlarms?: ARCRegionSwitchPlanAssociatedAlarmMap;
13357
+ Description?: string;
13358
+ /**
13359
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13360
+ */
13361
+ ExecutionRole: string;
13362
+ /**
13363
+ * @minLength `1`
13364
+ * @maxLength `32`
13365
+ * @pattern `^[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,30}[a-zA-Z0-9])?$`
13366
+ */
13367
+ Name: string;
13368
+ /**
13369
+ * @pattern `^[a-z]{2}-[a-z-]+-\d+$`
13370
+ */
13371
+ PrimaryRegion?: string;
13372
+ RecoveryApproach: ARCRegionSwitchPlanRecoveryApproach;
13373
+ /**
13374
+ * @min `1`
13375
+ * @max `10080`
13376
+ */
13377
+ RecoveryTimeObjectiveMinutes?: number;
13378
+ /**
13379
+ * @minLength `2`
13380
+ * @maxLength `2`
13381
+ */
13382
+ Regions: string[];
13383
+ Tags?: ARCRegionSwitchPlanTags;
13384
+ Triggers?: ARCRegionSwitchPlanTrigger[];
13385
+ Workflows: ARCRegionSwitchPlanWorkflow[];
13386
+ };
13387
+ /**
13388
+ * Attribute type definition for `AWS::ARCRegionSwitch::Plan`.
13389
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arcregionswitch-plan.html#aws-resource-arcregionswitch-plan-return-values}
13390
+ */
13391
+ export type ARCRegionSwitchPlanAttributes = {
13392
+ /**
13393
+ * @pattern `^arn:aws[a-zA-Z-]*:arc-region-switch::[0-9]{12}:plan/([a-zA-Z0-9](?:[a-zA-Z0-9-]{0,30}[a-zA-Z0-9])?):([a-z0-9]{6})$`
13394
+ */
13395
+ Arn: string;
13396
+ HealthChecksForPlan: Record<string, {
13397
+ HealthCheckId: string;
13398
+ Region: string;
13399
+ }[]>;
13400
+ /**
13401
+ * @pattern `^\d{12}$`
13402
+ */
13403
+ Owner: string;
13404
+ Version: string;
13405
+ };
13406
+ /**
13407
+ * Type definition for `AWS::ARCRegionSwitch::Plan.AlarmCondition`.
13408
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-alarmcondition.html}
13409
+ */
13410
+ export type ARCRegionSwitchPlanAlarmCondition = "red" | "green";
13411
+ /**
13412
+ * Type definition for `AWS::ARCRegionSwitch::Plan.AlarmType`.
13413
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-alarmtype.html}
13414
+ */
13415
+ export type ARCRegionSwitchPlanAlarmType = "applicationHealth" | "trigger";
13416
+ /**
13417
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ArcRoutingControlConfiguration`.
13418
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-arcroutingcontrolconfiguration.html}
13419
+ */
13420
+ export type ARCRegionSwitchPlanArcRoutingControlConfiguration = {
13421
+ /**
13422
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13423
+ */
13424
+ CrossAccountRole?: string;
13425
+ ExternalId?: string;
13426
+ RegionAndRoutingControls: ARCRegionSwitchPlanRegionAndRoutingControls;
13427
+ /**
13428
+ * @min `1`
13429
+ */
13430
+ TimeoutMinutes?: number;
13431
+ };
13432
+ /**
13433
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ArcRoutingControlState`.
13434
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-arcroutingcontrolstate.html}
13435
+ */
13436
+ export type ARCRegionSwitchPlanArcRoutingControlState = {
13437
+ RoutingControlArn: string;
13438
+ State: ARCRegionSwitchPlanRoutingControlStateChange;
13439
+ };
13440
+ /**
13441
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Asg`.
13442
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-asg.html}
13443
+ */
13444
+ export type ARCRegionSwitchPlanAsg = {
13445
+ /**
13446
+ * @pattern `^arn:aws:autoscaling:[a-z0-9-]+:\d{12}:autoScalingGroup:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}:autoScalingGroupName/[\S\s]{1,255}$`
13447
+ */
13448
+ Arn?: string;
13449
+ /**
13450
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13451
+ */
13452
+ CrossAccountRole?: string;
13453
+ ExternalId?: string;
13454
+ };
13455
+ /**
13456
+ * Type definition for `AWS::ARCRegionSwitch::Plan.AssociatedAlarm`.
13457
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-associatedalarm.html}
13458
+ */
13459
+ export type ARCRegionSwitchPlanAssociatedAlarm = {
13460
+ AlarmType: ARCRegionSwitchPlanAlarmType;
13461
+ /**
13462
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13463
+ */
13464
+ CrossAccountRole?: string;
13465
+ ExternalId?: string;
13466
+ ResourceIdentifier: string;
13467
+ };
13468
+ /**
13469
+ * Type definition for `AWS::ARCRegionSwitch::Plan.AssociatedAlarmMap`.
13470
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-associatedalarmmap.html}
13471
+ */
13472
+ export type ARCRegionSwitchPlanAssociatedAlarmMap = Record<string, ARCRegionSwitchPlanAssociatedAlarm>;
13473
+ /**
13474
+ * Type definition for `AWS::ARCRegionSwitch::Plan.CustomActionLambdaConfiguration`.
13475
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-customactionlambdaconfiguration.html}
13476
+ */
13477
+ export type ARCRegionSwitchPlanCustomActionLambdaConfiguration = {
13478
+ /**
13479
+ * @minLength `1`
13480
+ * @maxLength `2`
13481
+ */
13482
+ Lambdas: ARCRegionSwitchPlanLambdas[];
13483
+ RegionToRun: ARCRegionSwitchPlanRegionToRunIn;
13484
+ RetryIntervalMinutes: number;
13485
+ /**
13486
+ * @min `1`
13487
+ */
13488
+ TimeoutMinutes?: number;
13489
+ Ungraceful?: ARCRegionSwitchPlanLambdaUngraceful;
13490
+ };
13491
+ /**
13492
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Ec2AsgCapacityIncreaseConfiguration`.
13493
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-ec2asgcapacityincreaseconfiguration.html}
13494
+ */
13495
+ export type ARCRegionSwitchPlanEc2AsgCapacityIncreaseConfiguration = {
13496
+ /**
13497
+ * @minLength `2`
13498
+ * @maxLength `2`
13499
+ */
13500
+ Asgs: ARCRegionSwitchPlanAsg[];
13501
+ CapacityMonitoringApproach?: any;
13502
+ TargetPercent?: number;
13503
+ /**
13504
+ * @min `1`
13505
+ */
13506
+ TimeoutMinutes?: number;
13507
+ Ungraceful?: ARCRegionSwitchPlanEc2Ungraceful;
13508
+ };
13509
+ /**
13510
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Ec2Ungraceful`.
13511
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-ec2ungraceful.html}
13512
+ */
13513
+ export type ARCRegionSwitchPlanEc2Ungraceful = {
13514
+ /**
13515
+ * @min `0`
13516
+ * @max `99`
13517
+ */
13518
+ MinimumSuccessPercentage: number;
13519
+ };
13520
+ /**
13521
+ * Type definition for `AWS::ARCRegionSwitch::Plan.EcsCapacityIncreaseConfiguration`.
13522
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-ecscapacityincreaseconfiguration.html}
13523
+ */
13524
+ export type ARCRegionSwitchPlanEcsCapacityIncreaseConfiguration = {
13525
+ CapacityMonitoringApproach?: any;
13526
+ /**
13527
+ * @minLength `2`
13528
+ * @maxLength `2`
13529
+ */
13530
+ Services: ARCRegionSwitchPlanService[];
13531
+ TargetPercent?: number;
13532
+ /**
13533
+ * @min `1`
13534
+ */
13535
+ TimeoutMinutes?: number;
13536
+ Ungraceful?: ARCRegionSwitchPlanEcsUngraceful;
13537
+ };
13538
+ /**
13539
+ * Type definition for `AWS::ARCRegionSwitch::Plan.EcsUngraceful`.
13540
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-ecsungraceful.html}
13541
+ */
13542
+ export type ARCRegionSwitchPlanEcsUngraceful = {
13543
+ /**
13544
+ * @min `0`
13545
+ * @max `99`
13546
+ */
13547
+ MinimumSuccessPercentage: number;
13548
+ };
13549
+ /**
13550
+ * Type definition for `AWS::ARCRegionSwitch::Plan.EksCluster`.
13551
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-ekscluster.html}
13552
+ */
13553
+ export type ARCRegionSwitchPlanEksCluster = {
13554
+ /**
13555
+ * @pattern `^arn:aws[a-zA-Z-]*:eks:[a-z0-9-]+:\d{12}:cluster/[a-zA-Z0-9][a-zA-Z0-9-_]{0,99}$`
13556
+ */
13557
+ ClusterArn: string;
13558
+ /**
13559
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13560
+ */
13561
+ CrossAccountRole?: string;
13562
+ ExternalId?: string;
13563
+ };
13564
+ /**
13565
+ * Type definition for `AWS::ARCRegionSwitch::Plan.EksResourceScalingConfiguration`.
13566
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-eksresourcescalingconfiguration.html}
13567
+ */
13568
+ export type ARCRegionSwitchPlanEksResourceScalingConfiguration = {
13569
+ CapacityMonitoringApproach?: any;
13570
+ /**
13571
+ * @minLength `2`
13572
+ */
13573
+ EksClusters?: ARCRegionSwitchPlanEksCluster[];
13574
+ KubernetesResourceType: ARCRegionSwitchPlanKubernetesResourceType;
13575
+ /**
13576
+ * @minLength `1`
13577
+ */
13578
+ ScalingResources?: ARCRegionSwitchPlanKubernetesScalingApplication[];
13579
+ /**
13580
+ * @min `1`
13581
+ */
13582
+ TargetPercent?: number;
13583
+ /**
13584
+ * @min `1`
13585
+ */
13586
+ TimeoutMinutes?: number;
13587
+ Ungraceful?: ARCRegionSwitchPlanEksResourceScalingUngraceful;
13588
+ };
13589
+ /**
13590
+ * Type definition for `AWS::ARCRegionSwitch::Plan.EksResourceScalingUngraceful`.
13591
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-eksresourcescalingungraceful.html}
13592
+ */
13593
+ export type ARCRegionSwitchPlanEksResourceScalingUngraceful = {
13594
+ /**
13595
+ * @min `0`
13596
+ * @max `99`
13597
+ */
13598
+ MinimumSuccessPercentage: number;
13599
+ };
13600
+ /**
13601
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ExecutionApprovalConfiguration`.
13602
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-executionapprovalconfiguration.html}
13603
+ */
13604
+ export type ARCRegionSwitchPlanExecutionApprovalConfiguration = {
13605
+ ApprovalRole: string;
13606
+ /**
13607
+ * @min `1`
13608
+ */
13609
+ TimeoutMinutes?: number;
13610
+ };
13611
+ /**
13612
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ExecutionBlockConfiguration`.
13613
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-executionblockconfiguration.html}
13614
+ */
13615
+ export type ARCRegionSwitchPlanExecutionBlockConfiguration = {
13616
+ CustomActionLambdaConfig: ARCRegionSwitchPlanCustomActionLambdaConfiguration;
13617
+ } | {
13618
+ Ec2AsgCapacityIncreaseConfig: ARCRegionSwitchPlanEc2AsgCapacityIncreaseConfiguration;
13619
+ } | {
13620
+ ExecutionApprovalConfig: ARCRegionSwitchPlanExecutionApprovalConfiguration;
13621
+ } | {
13622
+ ArcRoutingControlConfig: ARCRegionSwitchPlanArcRoutingControlConfiguration;
13623
+ } | {
13624
+ GlobalAuroraConfig: ARCRegionSwitchPlanGlobalAuroraConfiguration;
13625
+ } | {
13626
+ ParallelConfig: ARCRegionSwitchPlanParallelExecutionBlockConfiguration;
13627
+ } | {
13628
+ RegionSwitchPlanConfig: ARCRegionSwitchPlanRegionSwitchPlanConfiguration;
13629
+ } | {
13630
+ EcsCapacityIncreaseConfig: ARCRegionSwitchPlanEcsCapacityIncreaseConfiguration;
13631
+ } | {
13632
+ EksResourceScalingConfig: ARCRegionSwitchPlanEksResourceScalingConfiguration;
13633
+ } | {
13634
+ Route53HealthCheckConfig: ARCRegionSwitchPlanRoute53HealthCheckConfiguration;
13635
+ };
13636
+ /**
13637
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ExecutionBlockType`.
13638
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-executionblocktype.html}
13639
+ */
13640
+ export type ARCRegionSwitchPlanExecutionBlockType = "CustomActionLambda" | "ManualApproval" | "AuroraGlobalDatabase" | "EC2AutoScaling" | "ARCRoutingControl" | "ARCRegionSwitchPlan" | "Parallel" | "ECSServiceScaling" | "EKSResourceScaling" | "Route53HealthCheck";
13641
+ /**
13642
+ * Type definition for `AWS::ARCRegionSwitch::Plan.GlobalAuroraConfiguration`.
13643
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-globalauroraconfiguration.html}
13644
+ */
13645
+ export type ARCRegionSwitchPlanGlobalAuroraConfiguration = {
13646
+ Behavior: any;
13647
+ /**
13648
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13649
+ */
13650
+ CrossAccountRole?: string;
13651
+ DatabaseClusterArns: string[];
13652
+ ExternalId?: string;
13653
+ GlobalClusterIdentifier: string;
13654
+ /**
13655
+ * @min `1`
13656
+ */
13657
+ TimeoutMinutes?: number;
13658
+ Ungraceful?: ARCRegionSwitchPlanGlobalAuroraUngraceful;
13659
+ };
13660
+ /**
13661
+ * Type definition for `AWS::ARCRegionSwitch::Plan.GlobalAuroraUngraceful`.
13662
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-globalauroraungraceful.html}
13663
+ */
13664
+ export type ARCRegionSwitchPlanGlobalAuroraUngraceful = {
13665
+ Ungraceful?: ARCRegionSwitchPlanGlobalAuroraUngracefulBehavior;
13666
+ };
13667
+ /**
13668
+ * Type definition for `AWS::ARCRegionSwitch::Plan.GlobalAuroraUngracefulBehavior`.
13669
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-globalauroraungracefulbehavior.html}
13670
+ */
13671
+ export type ARCRegionSwitchPlanGlobalAuroraUngracefulBehavior = "failover";
13672
+ /**
13673
+ * Type definition for `AWS::ARCRegionSwitch::Plan.HealthCheckState`.
13674
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-healthcheckstate.html}
13675
+ */
13676
+ export type ARCRegionSwitchPlanHealthCheckState = {
13677
+ HealthCheckId?: string;
13678
+ Region?: string;
13679
+ };
13680
+ /**
13681
+ * Type definition for `AWS::ARCRegionSwitch::Plan.KubernetesResourceType`.
13682
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-kubernetesresourcetype.html}
13683
+ */
13684
+ export type ARCRegionSwitchPlanKubernetesResourceType = {
13685
+ ApiVersion: string;
13686
+ Kind: string;
13687
+ };
13688
+ /**
13689
+ * Type definition for `AWS::ARCRegionSwitch::Plan.KubernetesScalingApplication`.
13690
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-kubernetesscalingapplication.html}
13691
+ */
13692
+ export type ARCRegionSwitchPlanKubernetesScalingApplication = Record<string, ARCRegionSwitchPlanRegionalScalingResource>;
13693
+ /**
13694
+ * Type definition for `AWS::ARCRegionSwitch::Plan.KubernetesScalingResource`.
13695
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-kubernetesscalingresource.html}
13696
+ */
13697
+ export type ARCRegionSwitchPlanKubernetesScalingResource = {
13698
+ HpaName?: string;
13699
+ Name: string;
13700
+ /**
13701
+ * @pattern `^[a-z0-9][a-z0-9-]{0,61}[a-z0-9]$`
13702
+ */
13703
+ Namespace: string;
13704
+ };
13705
+ /**
13706
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Lambdas`.
13707
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-lambdas.html}
13708
+ */
13709
+ export type ARCRegionSwitchPlanLambdas = {
13710
+ Arn?: string;
13711
+ /**
13712
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13713
+ */
13714
+ CrossAccountRole?: string;
13715
+ ExternalId?: string;
13716
+ };
13717
+ /**
13718
+ * Type definition for `AWS::ARCRegionSwitch::Plan.LambdaUngraceful`.
13719
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-lambdaungraceful.html}
13720
+ */
13721
+ export type ARCRegionSwitchPlanLambdaUngraceful = {
13722
+ Behavior?: any;
13723
+ };
13724
+ /**
13725
+ * Type definition for `AWS::ARCRegionSwitch::Plan.ParallelExecutionBlockConfiguration`.
13726
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-parallelexecutionblockconfiguration.html}
13727
+ */
13728
+ export type ARCRegionSwitchPlanParallelExecutionBlockConfiguration = {
13729
+ Steps: ARCRegionSwitchPlanStep[];
13730
+ };
13731
+ /**
13732
+ * Type definition for `AWS::ARCRegionSwitch::Plan.RecoveryApproach`.
13733
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-recoveryapproach.html}
13734
+ */
13735
+ export type ARCRegionSwitchPlanRecoveryApproach = "activeActive" | "activePassive";
13736
+ /**
13737
+ * Type definition for `AWS::ARCRegionSwitch::Plan.RegionalScalingResource`.
13738
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-regionalscalingresource.html}
13739
+ */
13740
+ export type ARCRegionSwitchPlanRegionalScalingResource = Record<string, ARCRegionSwitchPlanKubernetesScalingResource>;
13741
+ /**
13742
+ * Type definition for `AWS::ARCRegionSwitch::Plan.RegionAndRoutingControls`.
13743
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-regionandroutingcontrols.html}
13744
+ */
13745
+ export type ARCRegionSwitchPlanRegionAndRoutingControls = Record<string, ARCRegionSwitchPlanArcRoutingControlState[]>;
13746
+ /**
13747
+ * Type definition for `AWS::ARCRegionSwitch::Plan.RegionSwitchPlanConfiguration`.
13748
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-regionswitchplanconfiguration.html}
13749
+ */
13750
+ export type ARCRegionSwitchPlanRegionSwitchPlanConfiguration = {
13751
+ /**
13752
+ * @pattern `^arn:aws[a-zA-Z-]*:arc-region-switch::[0-9]{12}:plan/([a-zA-Z0-9](?:[a-zA-Z0-9-]{0,30}[a-zA-Z0-9])?):([a-z0-9]{6})$`
13753
+ */
13754
+ Arn: string;
13755
+ /**
13756
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13757
+ */
13758
+ CrossAccountRole?: string;
13759
+ ExternalId?: string;
13760
+ };
13761
+ /**
13762
+ * Type definition for `AWS::ARCRegionSwitch::Plan.RegionToRunIn`.
13763
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-regiontorunin.html}
13764
+ */
13765
+ export type ARCRegionSwitchPlanRegionToRunIn = "activatingRegion" | "deactivatingRegion";
13766
+ /**
13767
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Route53HealthCheckConfiguration`.
13768
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-route53healthcheckconfiguration.html}
13769
+ */
13770
+ export type ARCRegionSwitchPlanRoute53HealthCheckConfiguration = {
13771
+ /**
13772
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13773
+ */
13774
+ CrossAccountRole?: string;
13775
+ ExternalId?: string;
13776
+ /**
13777
+ * @minLength `1`
13778
+ * @maxLength `32`
13779
+ */
13780
+ HostedZoneId: string;
13781
+ /**
13782
+ * @minLength `1`
13783
+ * @maxLength `1024`
13784
+ */
13785
+ RecordName: string;
13786
+ RecordSets?: ARCRegionSwitchPlanRoute53ResourceRecordSet[];
13787
+ /**
13788
+ * @min `1`
13789
+ */
13790
+ TimeoutMinutes?: number;
13791
+ };
13792
+ /**
13793
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Route53ResourceRecordSet`.
13794
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-route53resourcerecordset.html}
13795
+ */
13796
+ export type ARCRegionSwitchPlanRoute53ResourceRecordSet = {
13797
+ /**
13798
+ * @minLength `1`
13799
+ * @maxLength `1024`
13800
+ */
13801
+ RecordSetIdentifier?: string;
13802
+ /**
13803
+ * @pattern `^[a-z]{2}-[a-z-]+-\d+$`
13804
+ */
13805
+ Region?: string;
13806
+ };
13807
+ /**
13808
+ * Type definition for `AWS::ARCRegionSwitch::Plan.RoutingControlStateChange`.
13809
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-routingcontrolstatechange.html}
13810
+ */
13811
+ export type ARCRegionSwitchPlanRoutingControlStateChange = "On" | "Off";
13812
+ /**
13813
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Service`.
13814
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-service.html}
13815
+ */
13816
+ export type ARCRegionSwitchPlanService = {
13817
+ /**
13818
+ * @pattern `^arn:aws:ecs:[a-z0-9-]+:\d{12}:cluster/[a-zA-Z0-9_-]{1,255}$`
13819
+ */
13820
+ ClusterArn?: string;
13821
+ /**
13822
+ * @pattern `^arn:aws[a-zA-Z0-9-]*:iam::[0-9]{12}:role/.+$`
13823
+ */
13824
+ CrossAccountRole?: string;
13825
+ ExternalId?: string;
13826
+ /**
13827
+ * @pattern `^arn:aws:ecs:[a-z0-9-]+:\d{12}:service/[a-zA-Z0-9_-]+/[a-zA-Z0-9_-]{1,255}$`
13828
+ */
13829
+ ServiceArn?: string;
13830
+ };
13831
+ /**
13832
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Step`.
13833
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-step.html}
13834
+ */
13835
+ export type ARCRegionSwitchPlanStep = {
13836
+ Description?: string;
13837
+ ExecutionBlockConfiguration: ARCRegionSwitchPlanExecutionBlockConfiguration;
13838
+ ExecutionBlockType: ARCRegionSwitchPlanExecutionBlockType;
13839
+ Name: string;
13840
+ };
13841
+ /**
13842
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Tags`.
13843
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-tags.html}
13844
+ */
13845
+ export type ARCRegionSwitchPlanTags = Record<string, string>;
13846
+ /**
13847
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Trigger`.
13848
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-trigger.html}
13849
+ */
13850
+ export type ARCRegionSwitchPlanTrigger = {
13851
+ Action: ARCRegionSwitchPlanWorkflowTargetAction;
13852
+ /**
13853
+ * @minLength `1`
13854
+ * @maxLength `10`
13855
+ */
13856
+ Conditions: ARCRegionSwitchPlanTriggerCondition[];
13857
+ Description?: string;
13858
+ MinDelayMinutesBetweenExecutions: number;
13859
+ /**
13860
+ * @pattern `^[a-z]{2}-[a-z-]+-\d+$`
13861
+ */
13862
+ TargetRegion: string;
13863
+ };
13864
+ /**
13865
+ * Type definition for `AWS::ARCRegionSwitch::Plan.TriggerCondition`.
13866
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-triggercondition.html}
13867
+ */
13868
+ export type ARCRegionSwitchPlanTriggerCondition = {
13869
+ AssociatedAlarmName: string;
13870
+ Condition: ARCRegionSwitchPlanAlarmCondition;
13871
+ };
13872
+ /**
13873
+ * Type definition for `AWS::ARCRegionSwitch::Plan.Workflow`.
13874
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-workflow.html}
13875
+ */
13876
+ export type ARCRegionSwitchPlanWorkflow = {
13877
+ Steps?: ARCRegionSwitchPlanStep[];
13878
+ WorkflowDescription?: string;
13879
+ WorkflowTargetAction: ARCRegionSwitchPlanWorkflowTargetAction;
13880
+ /**
13881
+ * @pattern `^[a-z]{2}-[a-z-]+-\d+$`
13882
+ */
13883
+ WorkflowTargetRegion?: string;
13884
+ };
13885
+ /**
13886
+ * Type definition for `AWS::ARCRegionSwitch::Plan.WorkflowTargetAction`.
13887
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-arcregionswitch-plan-workflowtargetaction.html}
13888
+ */
13889
+ export type ARCRegionSwitchPlanWorkflowTargetAction = "activate" | "deactivate";
13350
13890
  /**
13351
13891
  * Definition of AWS::ARCZonalShift::AutoshiftObserverNotificationStatus Resource Type
13352
13892
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-arczonalshift-autoshiftobservernotificationstatus.html}
@@ -17758,12 +18298,13 @@ export type BatchJobDefinitionVolume = {
17758
18298
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-jobqueue.html}
17759
18299
  */
17760
18300
  export type BatchJobQueueProps = {
17761
- ComputeEnvironmentOrder: BatchJobQueueComputeEnvironmentOrder[];
18301
+ ComputeEnvironmentOrder?: BatchJobQueueComputeEnvironmentOrder[];
17762
18302
  /**
17763
18303
  * @minLength `1`
17764
18304
  * @maxLength `128`
17765
18305
  */
17766
18306
  JobQueueName?: string;
18307
+ JobQueueType?: string;
17767
18308
  JobStateTimeLimitActions?: BatchJobQueueJobStateTimeLimitAction[];
17768
18309
  /**
17769
18310
  * @min `0`
@@ -17774,6 +18315,7 @@ export type BatchJobQueueProps = {
17774
18315
  * @pattern `arn:[a-z0-9-\.]{1,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[a-z0-9-\.]{0,63}:[^/].{0,1023}`
17775
18316
  */
17776
18317
  SchedulingPolicyArn?: string;
18318
+ ServiceEnvironmentOrder?: BatchJobQueueServiceEnvironmentOrder[];
17777
18319
  State?: "DISABLED" | "ENABLED";
17778
18320
  /**
17779
18321
  * A key-value pair to associate with a resource.
@@ -17803,7 +18345,7 @@ export type BatchJobQueueComputeEnvironmentOrder = {
17803
18345
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-jobstatetimelimitaction.html}
17804
18346
  */
17805
18347
  export type BatchJobQueueJobStateTimeLimitAction = {
17806
- Action: "CANCEL";
18348
+ Action: "CANCEL" | "TERMINATE";
17807
18349
  /**
17808
18350
  * @min `600`
17809
18351
  * @max `86400`
@@ -17812,6 +18354,14 @@ export type BatchJobQueueJobStateTimeLimitAction = {
17812
18354
  Reason: string;
17813
18355
  State: "RUNNABLE";
17814
18356
  };
18357
+ /**
18358
+ * Type definition for `AWS::Batch::JobQueue.ServiceEnvironmentOrder`.
18359
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobqueue-serviceenvironmentorder.html}
18360
+ */
18361
+ export type BatchJobQueueServiceEnvironmentOrder = {
18362
+ Order: number;
18363
+ ServiceEnvironment: string;
18364
+ };
17815
18365
  /**
17816
18366
  * Resource Type definition for AWS::Batch::SchedulingPolicy
17817
18367
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-batch-schedulingpolicy.html}
@@ -161873,6 +162423,7 @@ export type RDSDBClusterProps = {
161873
162423
  Valid for: Aurora DB clusters and Multi-AZ DB clusters
161874
162424
  */
161875
162425
  SourceDBClusterIdentifier?: string;
162426
+ SourceDbClusterResourceId?: string;
161876
162427
  /**
161877
162428
  * The AWS Region which contains the source DB cluster when replicating a DB cluster. For example, ``us-east-1``.
161878
162429
  Valid for: Aurora DB clusters only
@@ -169858,7 +170409,7 @@ export type S3BucketProps = {
169858
170409
  */
169859
170410
  IntelligentTieringConfigurations?: S3BucketIntelligentTieringConfiguration[];
169860
170411
  /**
169861
- * Specifies the inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
170412
+ * Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
169862
170413
  */
169863
170414
  InventoryConfigurations?: S3BucketInventoryConfiguration[];
169864
170415
  /**
@@ -169869,6 +170420,9 @@ export type S3BucketProps = {
169869
170420
  * Settings that define where logs are stored.
169870
170421
  */
169871
170422
  LoggingConfiguration?: S3BucketLoggingConfiguration;
170423
+ /**
170424
+ * The S3 Metadata configuration for a general purpose bucket.
170425
+ */
169872
170426
  MetadataConfiguration?: S3BucketMetadataConfiguration;
169873
170427
  /**
169874
170428
  * The metadata table configuration of an S3 general purpose bucket.
@@ -169932,30 +170486,33 @@ export type S3BucketAttributes = {
169932
170486
  Arn: string;
169933
170487
  DomainName: string;
169934
170488
  DualStackDomainName: string;
170489
+ /**
170490
+ * The S3 Metadata configuration for a general purpose bucket.
170491
+ */
169935
170492
  MetadataConfiguration: {
169936
170493
  /**
169937
- * The destination information for the metadata configuration.
170494
+ * The destination information for the S3 Metadata configuration.
169938
170495
  */
169939
170496
  Destination: {
169940
170497
  /**
169941
- * The ARN of the table bucket.
170498
+ * The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
169942
170499
  */
169943
170500
  TableBucketArn: string;
169944
170501
  /**
169945
- * The type of the table bucket.
170502
+ * The type of the table bucket where the metadata configuration is stored. The ``aws`` value indicates an AWS managed table bucket, and the ``customer`` value indicates a customer-managed table bucket. V2 metadata configurations are stored in AWS managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
169946
170503
  */
169947
170504
  TableBucketType: "aws" | "customer";
169948
170505
  /**
169949
- * The namespace of the table.
170506
+ * The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
169950
170507
  */
169951
170508
  TableNamespace: string;
169952
170509
  };
169953
170510
  /**
169954
- * The configuration for the inventory table.
170511
+ * The inventory table configuration for a metadata configuration.
169955
170512
  */
169956
170513
  InventoryTableConfiguration: {
169957
170514
  /**
169958
- * The ARN of the inventory table.
170515
+ * The Amazon Resource Name (ARN) for the inventory table.
169959
170516
  */
169960
170517
  TableArn: string;
169961
170518
  /**
@@ -169964,11 +170521,11 @@ export type S3BucketAttributes = {
169964
170521
  TableName: string;
169965
170522
  };
169966
170523
  /**
169967
- * The configuration for the journal table.
170524
+ * The journal table configuration for a metadata configuration.
169968
170525
  */
169969
170526
  JournalTableConfiguration: {
169970
170527
  /**
169971
- * The ARN of the journal table.
170528
+ * The Amazon Resource Name (ARN) for the journal table.
169972
170529
  */
169973
170530
  TableArn: string;
169974
170531
  /**
@@ -170257,7 +170814,7 @@ export type S3BucketIntelligentTieringConfiguration = {
170257
170814
  };
170258
170815
  /**
170259
170816
  * Type definition for `AWS::S3::Bucket.InventoryConfiguration`.
170260
- * Specifies the inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
170817
+ * Specifies the S3 Inventory configuration for an Amazon S3 bucket. For more information, see [GET Bucket inventory](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketGETInventoryConfig.html) in the *Amazon S3 API Reference*.
170261
170818
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html}
170262
170819
  */
170263
170820
  export type S3BucketInventoryConfiguration = {
@@ -170292,11 +170849,12 @@ export type S3BucketInventoryConfiguration = {
170292
170849
  };
170293
170850
  /**
170294
170851
  * Type definition for `AWS::S3::Bucket.InventoryTableConfiguration`.
170852
+ * The inventory table configuration for an S3 Metadata configuration.
170295
170853
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html}
170296
170854
  */
170297
170855
  export type S3BucketInventoryTableConfiguration = {
170298
170856
  /**
170299
- * Specifies whether inventory table configuration is enabled or disabled.
170857
+ * The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
170300
170858
  */
170301
170859
  ConfigurationState: "ENABLED" | "DISABLED";
170302
170860
  /**
@@ -170306,6 +170864,7 @@ export type S3BucketInventoryTableConfiguration = {
170306
170864
  };
170307
170865
  /**
170308
170866
  * Type definition for `AWS::S3::Bucket.JournalTableConfiguration`.
170867
+ * The journal table configuration for an S3 Metadata configuration.
170309
170868
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html}
170310
170869
  */
170311
170870
  export type S3BucketJournalTableConfiguration = {
@@ -170313,6 +170872,9 @@ export type S3BucketJournalTableConfiguration = {
170313
170872
  * The encryption configuration for the journal table.
170314
170873
  */
170315
170874
  EncryptionConfiguration?: S3BucketMetadataTableEncryptionConfiguration;
170875
+ /**
170876
+ * The journal table record expiration settings for the journal table.
170877
+ */
170316
170878
  RecordExpiration: S3BucketRecordExpiration;
170317
170879
  };
170318
170880
  /**
@@ -170376,39 +170938,43 @@ export type S3BucketLoggingConfiguration = {
170376
170938
  };
170377
170939
  /**
170378
170940
  * Type definition for `AWS::S3::Bucket.MetadataConfiguration`.
170941
+ * Creates a V2 S3 Metadata configuration of a general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) in the *Amazon S3 User Guide*.
170379
170942
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html}
170380
170943
  */
170381
170944
  export type S3BucketMetadataConfiguration = {
170382
170945
  /**
170383
- * The configuration for the inventory table.
170946
+ * The inventory table configuration for a metadata configuration.
170384
170947
  */
170385
170948
  InventoryTableConfiguration?: S3BucketInventoryTableConfiguration;
170386
170949
  /**
170387
- * The configuration for the journal table.
170950
+ * The journal table configuration for a metadata configuration.
170388
170951
  */
170389
170952
  JournalTableConfiguration: S3BucketJournalTableConfiguration;
170390
170953
  };
170391
170954
  /**
170392
170955
  * Type definition for `AWS::S3::Bucket.MetadataDestination`.
170956
+ * The destination information for the S3 Metadata configuration.
170393
170957
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatadestination.html}
170394
170958
  */
170395
170959
  export type S3BucketMetadataDestination = {
170396
170960
  /**
170397
- * The ARN of the table bucket.
170961
+ * The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
170398
170962
  */
170399
170963
  TableBucketArn?: string;
170400
170964
  /**
170401
- * The type of the table bucket.
170965
+ * The type of the table bucket where the metadata configuration is stored. The ``aws`` value indicates an AWS managed table bucket, and the ``customer`` value indicates a customer-managed table bucket. V2 metadata configurations are stored in AWS managed table buckets, and V1 metadata configurations are stored in customer-managed table buckets.
170402
170966
  */
170403
170967
  TableBucketType: "aws" | "customer";
170404
170968
  /**
170405
- * The namespace of the table.
170969
+ * The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
170406
170970
  */
170407
170971
  TableNamespace?: string;
170408
170972
  };
170409
170973
  /**
170410
170974
  * Type definition for `AWS::S3::Bucket.MetadataTableConfiguration`.
170411
- * The metadata table configuration of an S3 general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) and [Setting up permissions for configuring metadata tables](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-permissions.html).
170975
+ * We recommend that you create your S3 Metadata configurations by using the V2 [MetadataConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-s3-bucket-metadataconfiguration.html) resource type. We no longer recommend using the V1 ``MetadataTableConfiguration`` resource type.
170976
+ If you created your S3 Metadata configuration before July 15, 2025, we recommend that you delete and re-create your configuration by using the [MetadataConfiguration](https://docs.aws.amazon.com/AWSCloudFormation/latest/TemplateReference/aws-properties-s3-bucket-metadataconfiguration.html) resource type so that you can expire journal table records and create a live inventory table.
170977
+ Creates a V1 S3 Metadata configuration for a general purpose bucket. For more information, see [Accelerating data discovery with S3 Metadata](https://docs.aws.amazon.com/AmazonS3/latest/userguide/metadata-tables-overview.html) in the *Amazon S3 User Guide*.
170412
170978
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableconfiguration.html}
170413
170979
  */
170414
170980
  export type S3BucketMetadataTableConfiguration = {
@@ -170419,15 +170985,16 @@ export type S3BucketMetadataTableConfiguration = {
170419
170985
  };
170420
170986
  /**
170421
170987
  * Type definition for `AWS::S3::Bucket.MetadataTableEncryptionConfiguration`.
170988
+ * The encryption settings for an S3 Metadata journal table or inventory table configuration.
170422
170989
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html}
170423
170990
  */
170424
170991
  export type S3BucketMetadataTableEncryptionConfiguration = {
170425
170992
  /**
170426
- * The ARN of the KMS key. Required if SseAlgorithm is aws:kms.
170993
+ * If server-side encryption with KMSlong (KMS) keys (SSE-KMS) is specified, you must also specify the KMS key Amazon Resource Name (ARN). You must specify a customer-managed KMS key that's located in the same Region as the general purpose bucket that corresponds to the metadata table configuration.
170427
170994
  */
170428
170995
  KmsKeyArn?: string;
170429
170996
  /**
170430
- * Specifies the server-side encryption algorithm to use for encrypting tables.
170997
+ * The encryption type specified for a metadata table. To specify server-side encryption with KMSlong (KMS) keys (SSE-KMS), use the ``aws:kms`` value. To specify server-side encryption with Amazon S3 managed keys (SSE-S3), use the ``AES256`` value.
170431
170998
  */
170432
170999
  SseAlgorithm: "aws:kms" | "AES256";
170433
171000
  };
@@ -170658,15 +171225,16 @@ export type S3BucketQueueConfiguration = {
170658
171225
  };
170659
171226
  /**
170660
171227
  * Type definition for `AWS::S3::Bucket.RecordExpiration`.
171228
+ * The journal table record expiration settings for a journal table in an S3 Metadata configuration.
170661
171229
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html}
170662
171230
  */
170663
171231
  export type S3BucketRecordExpiration = {
170664
171232
  /**
170665
- * The number of days after which records expire. Required if Expiration is ENABLED.
171233
+ * If you enable journal table record expiration, you can set the number of days to retain your journal table records. Journal table records must be retained for a minimum of 7 days. To set this value, specify any whole number from ``7`` to ``2147483647``. For example, to retain your journal table records for one year, set this value to ``365``.
170666
171234
  */
170667
171235
  Days?: number;
170668
171236
  /**
170669
- * Specifies whether record expiration is enabled or disabled.
171237
+ * Specifies whether journal table record expiration is enabled or disabled.
170670
171238
  */
170671
171239
  Expiration: "ENABLED" | "DISABLED";
170672
171240
  };
@@ -170775,6 +171343,7 @@ export type S3BucketReplicationDestination = {
170775
171343
  /**
170776
171344
  * The storage class to use when replicating objects, such as S3 Standard or reduced redundancy. By default, Amazon S3 uses the storage class of the source object to create the object replica.
170777
171345
  For valid values, see the ``StorageClass`` element of the [PUT Bucket replication](https://docs.aws.amazon.com/AmazonS3/latest/API/RESTBucketPUTreplication.html) action in the *Amazon S3 API Reference*.
171346
+ ``FSX_OPENZFS`` is not an accepted value when replicating objects.
170778
171347
  */
170779
171348
  StorageClass?: "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "REDUCED_REDUNDANCY" | "STANDARD" | "STANDARD_IA";
170780
171349
  };
@@ -171017,7 +171586,7 @@ export type S3BucketS3KeyFilter = {
171017
171586
  };
171018
171587
  /**
171019
171588
  * Type definition for `AWS::S3::Bucket.S3TablesDestination`.
171020
- * The destination information for the metadata table configuration. The destination table bucket must be in the same Region and AWS-account as the general purpose bucket. The specified metadata table name must be unique within the ``aws_s3_metadata`` namespace in the destination table bucket.
171589
+ * The destination information for a V1 S3 Metadata configuration. The destination table bucket must be in the same Region and AWS-account as the general purpose bucket. The specified metadata table name must be unique within the ``aws_s3_metadata`` namespace in the destination table bucket.
171021
171590
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html}
171022
171591
  */
171023
171592
  export type S3BucketS3TablesDestination = {
@@ -171939,6 +172508,7 @@ export type S3ExpressAccessPointProps = {
171939
172508
  * For directory buckets, you can filter access control to specific prefixes, API operations, or a combination of both.
171940
172509
  */
171941
172510
  Scope?: S3ExpressAccessPointScope;
172511
+ Tags?: S3ExpressAccessPointTag[];
171942
172512
  /**
171943
172513
  * If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC).
171944
172514
  */
@@ -171999,6 +172569,24 @@ export type S3ExpressAccessPointScope = {
171999
172569
  */
172000
172570
  Prefixes?: string[];
172001
172571
  };
172572
+ /**
172573
+ * Type definition for `AWS::S3Express::AccessPoint.Tag`.
172574
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-accesspoint-tag.html}
172575
+ */
172576
+ export type S3ExpressAccessPointTag = {
172577
+ /**
172578
+ * @minLength `1`
172579
+ * @maxLength `128`
172580
+ * @pattern `^(?!aws:.*)([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
172581
+ */
172582
+ Key: string;
172583
+ /**
172584
+ * @minLength `0`
172585
+ * @maxLength `256`
172586
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
172587
+ */
172588
+ Value: string;
172589
+ };
172002
172590
  /**
172003
172591
  * Type definition for `AWS::S3Express::AccessPoint.VpcConfiguration`.
172004
172592
  * The Virtual Private Cloud (VPC) configuration for a bucket access point.
@@ -203291,6 +203879,7 @@ export interface ResourceTypes {
203291
203879
  "AWS::APS::RuleGroupsNamespace": APSRuleGroupsNamespaceProps;
203292
203880
  "AWS::APS::Scraper": APSScraperProps;
203293
203881
  "AWS::APS::Workspace": APSWorkspaceProps;
203882
+ "AWS::ARCRegionSwitch::Plan": ARCRegionSwitchPlanProps;
203294
203883
  "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus": ARCZonalShiftAutoshiftObserverNotificationStatusProps;
203295
203884
  "AWS::ARCZonalShift::ZonalAutoshiftConfiguration": ARCZonalShiftZonalAutoshiftConfigurationProps;
203296
203885
  "AWS::Athena::CapacityReservation": AthenaCapacityReservationProps;
@@ -204711,6 +205300,7 @@ export interface AttributeTypes {
204711
205300
  "AWS::APS::RuleGroupsNamespace": APSRuleGroupsNamespaceAttributes;
204712
205301
  "AWS::APS::Scraper": APSScraperAttributes;
204713
205302
  "AWS::APS::Workspace": APSWorkspaceAttributes;
205303
+ "AWS::ARCRegionSwitch::Plan": ARCRegionSwitchPlanAttributes;
204714
205304
  "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus": ARCZonalShiftAutoshiftObserverNotificationStatusAttributes;
204715
205305
  "AWS::Athena::CapacityReservation": AthenaCapacityReservationAttributes;
204716
205306
  "AWS::Athena::NamedQuery": AthenaNamedQueryAttributes;
@@ -205988,6 +206578,7 @@ export declare const ResourceType: {
205988
206578
  readonly APSRuleGroupsNamespace: "AWS::APS::RuleGroupsNamespace";
205989
206579
  readonly APSScraper: "AWS::APS::Scraper";
205990
206580
  readonly APSWorkspace: "AWS::APS::Workspace";
206581
+ readonly ARCRegionSwitchPlan: "AWS::ARCRegionSwitch::Plan";
205991
206582
  readonly ARCZonalShiftAutoshiftObserverNotificationStatus: "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus";
205992
206583
  readonly ARCZonalShiftZonalAutoshiftConfiguration: "AWS::ARCZonalShift::ZonalAutoshiftConfiguration";
205993
206584
  readonly AthenaCapacityReservation: "AWS::Athena::CapacityReservation";