@awboost/cfntypes 0.100.243 → 0.100.245

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}
@@ -32961,9 +33511,9 @@ export type CloudWatchAlarmProps = {
32961
33511
  */
32962
33512
  OKActions?: string[];
32963
33513
  /**
32964
- * The period, in seconds, over which the statistic is applied. This is required for an alarm based on a metric. Valid values are 10, 30, 60, and any multiple of 60.
33514
+ * The period, in seconds, over which the statistic is applied. This is required for an alarm based on a metric. Valid values are 10, 20, 30, 60, and any multiple of 60.
32965
33515
  For an alarm based on a math expression, you can't specify ``Period``, and instead you use the ``Metrics`` parameter.
32966
- *Minimum:* 10
33516
+ *Minimum:* 10
32967
33517
  */
32968
33518
  Period?: number;
32969
33519
  /**
@@ -33006,7 +33556,7 @@ export type CloudWatchAlarmAttributes = {
33006
33556
  };
33007
33557
  /**
33008
33558
  * Type definition for `AWS::CloudWatch::Alarm.Dimension`.
33009
- * Dimension is an embedded property of the ``AWS::CloudWatch::Alarm`` type. Dimensions are name/value pairs that can be associated with a CW metric. You can specify a maximum of 10 dimensions for a given metric.
33559
+ * Dimension is an embedded property of the ``AWS::CloudWatch::Alarm`` type. Dimensions are name/value pairs that can be associated with a CW metric. You can specify a maximum of 30 dimensions for a given metric.
33010
33560
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-dimension.html}
33011
33561
  */
33012
33562
  export type CloudWatchAlarmDimension = {
@@ -33068,7 +33618,7 @@ export type CloudWatchAlarmMetricDataQuery = {
33068
33618
  */
33069
33619
  MetricStat?: CloudWatchAlarmMetricStat;
33070
33620
  /**
33071
- * The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a ``PutMetricData`` operation that includes a ``StorageResolution of 1 second``.
33621
+ * The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a ``PutMetricData`` operation that includes a ``StorageResolution of 1 second``.
33072
33622
  */
33073
33623
  Period?: number;
33074
33624
  /**
@@ -33081,7 +33631,7 @@ export type CloudWatchAlarmMetricDataQuery = {
33081
33631
  /**
33082
33632
  * Type definition for `AWS::CloudWatch::Alarm.MetricStat`.
33083
33633
  * This structure defines the metric to be returned, along with the statistics, period, and units.
33084
- ``MetricStat`` is a property of the [MetricDataQuery](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-metricdataquery.html) property type.
33634
+ ``MetricStat`` is a property of the [MetricDataQuery](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-metricdataquery.html) property type.
33085
33635
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-alarm-metricstat.html}
33086
33636
  */
33087
33637
  export type CloudWatchAlarmMetricStat = {
@@ -33090,7 +33640,7 @@ export type CloudWatchAlarmMetricStat = {
33090
33640
  */
33091
33641
  Metric: CloudWatchAlarmMetric;
33092
33642
  /**
33093
- * The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a ``PutMetricData`` call that includes a ``StorageResolution`` of 1 second.
33643
+ * The granularity, in seconds, of the returned data points. For metrics with regular resolution, a period can be as short as one minute (60 seconds) and must be a multiple of 60. For high-resolution metrics that are collected at intervals of less than one minute, the period can be 1, 5, 10, 20, 30, 60, or any multiple of 60. High-resolution metrics are those metrics stored by a ``PutMetricData`` call that includes a ``StorageResolution`` of 1 second.
33094
33644
  If the ``StartTime`` parameter specifies a time stamp that is greater than 3 hours ago, you must specify the period as follows or no data points in that time range is returned:
33095
33645
  + Start time between 3 hours and 15 days ago - Use a multiple of 60 seconds (1 minute).
33096
33646
  + Start time between 15 and 63 days ago - Use a multiple of 300 seconds (5 minutes).
@@ -60143,6 +60693,118 @@ export type EC2TransitGatewayConnectTransitGatewayConnectOptions = {
60143
60693
  */
60144
60694
  Protocol?: string;
60145
60695
  };
60696
+ /**
60697
+ * Resource Type definition for AWS::EC2::TransitGatewayConnectPeer
60698
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html}
60699
+ */
60700
+ export type EC2TransitGatewayConnectPeerProps = {
60701
+ /**
60702
+ * The Connect peer details.
60703
+ */
60704
+ ConnectPeerConfiguration: EC2TransitGatewayConnectPeerTransitGatewayConnectPeerConfiguration;
60705
+ /**
60706
+ * The tags for the Connect Peer.
60707
+ */
60708
+ Tags?: EC2TransitGatewayConnectPeerTag[];
60709
+ /**
60710
+ * The ID of the Connect attachment.
60711
+ */
60712
+ TransitGatewayAttachmentId: string;
60713
+ };
60714
+ /**
60715
+ * Attribute type definition for `AWS::EC2::TransitGatewayConnectPeer`.
60716
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewayconnectpeer.html#aws-resource-ec2-transitgatewayconnectpeer-return-values}
60717
+ */
60718
+ export type EC2TransitGatewayConnectPeerAttributes = {
60719
+ /**
60720
+ * The Connect peer details.
60721
+ */
60722
+ ConnectPeerConfiguration: {
60723
+ /**
60724
+ * The BGP configuration details.
60725
+ */
60726
+ BgpConfigurations: {
60727
+ /**
60728
+ * The BGP status.
60729
+ */
60730
+ BgpStatus: string;
60731
+ /**
60732
+ * The interior BGP peer IP address for the appliance.
60733
+ */
60734
+ PeerAddress: string;
60735
+ /**
60736
+ * The peer Autonomous System Number (ASN).
60737
+ */
60738
+ PeerAsn: number;
60739
+ /**
60740
+ * The interior BGP peer IP address for the transit gateway.
60741
+ */
60742
+ TransitGatewayAddress: string;
60743
+ /**
60744
+ * The transit gateway Autonomous System Number (ASN).
60745
+ */
60746
+ TransitGatewayAsn: number;
60747
+ }[];
60748
+ /**
60749
+ * The tunnel protocol.
60750
+ */
60751
+ Protocol: string;
60752
+ };
60753
+ /**
60754
+ * The creation time.
60755
+ */
60756
+ CreationTime: string;
60757
+ /**
60758
+ * The state of the Connect peer.
60759
+ */
60760
+ State: string;
60761
+ /**
60762
+ * The ID of the Connect peer.
60763
+ */
60764
+ TransitGatewayConnectPeerId: string;
60765
+ };
60766
+ /**
60767
+ * Type definition for `AWS::EC2::TransitGatewayConnectPeer.Tag`.
60768
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-tag.html}
60769
+ */
60770
+ export type EC2TransitGatewayConnectPeerTag = {
60771
+ /**
60772
+ * The key of the tag. Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with aws: .
60773
+ */
60774
+ Key?: string;
60775
+ /**
60776
+ * The value of the tag. Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.
60777
+ */
60778
+ Value?: string;
60779
+ };
60780
+ /**
60781
+ * Type definition for `AWS::EC2::TransitGatewayConnectPeer.TransitGatewayAttachmentBgpConfiguration`.
60782
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayattachmentbgpconfiguration.html}
60783
+ */
60784
+ export type EC2TransitGatewayConnectPeerTransitGatewayAttachmentBgpConfiguration = {
60785
+ /**
60786
+ * The peer Autonomous System Number (ASN).
60787
+ */
60788
+ PeerAsn?: number;
60789
+ };
60790
+ /**
60791
+ * Type definition for `AWS::EC2::TransitGatewayConnectPeer.TransitGatewayConnectPeerConfiguration`.
60792
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-transitgatewayconnectpeer-transitgatewayconnectpeerconfiguration.html}
60793
+ */
60794
+ export type EC2TransitGatewayConnectPeerTransitGatewayConnectPeerConfiguration = {
60795
+ /**
60796
+ * The range of interior BGP peer IP addresses.
60797
+ */
60798
+ InsideCidrBlocks: string[];
60799
+ /**
60800
+ * The peer IP address (GRE outer IP address) on the appliance side of the Connect peer.
60801
+ */
60802
+ PeerAddress: string;
60803
+ /**
60804
+ * The Connect peer IP address on the transit gateway side of the tunnel.
60805
+ */
60806
+ TransitGatewayAddress?: string;
60807
+ };
60146
60808
  /**
60147
60809
  * The AWS::EC2::TransitGatewayMulticastDomain type
60148
60810
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-transitgatewaymulticastdomain.html}
@@ -62674,7 +63336,12 @@ export type ECRRepositoryProps = {
62674
63336
  /**
62675
63337
  * The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
62676
63338
  */
62677
- ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
63339
+ ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "MUTABLE_WITH_EXCLUSION" | "IMMUTABLE_WITH_EXCLUSION";
63340
+ /**
63341
+ * @minLength `1`
63342
+ * @maxLength `5`
63343
+ */
63344
+ ImageTagMutabilityExclusionFilters?: ECRRepositoryImageTagMutabilityExclusionFilter[];
62678
63345
  /**
62679
63346
  * Creates or updates a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html).
62680
63347
  */
@@ -62746,6 +63413,29 @@ export type ECRRepositoryImageScanningConfiguration = {
62746
63413
  */
62747
63414
  ScanOnPush?: boolean;
62748
63415
  };
63416
+ /**
63417
+ * Type definition for `AWS::ECR::Repository.ImageTagMutabilityExclusionFilter`.
63418
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfilter.html}
63419
+ */
63420
+ export type ECRRepositoryImageTagMutabilityExclusionFilter = {
63421
+ /**
63422
+ * Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
63423
+ */
63424
+ ImageTagMutabilityExclusionFilterType: ECRRepositoryImageTagMutabilityExclusionFilterType;
63425
+ /**
63426
+ * The value to use when filtering image tags.
63427
+ * @minLength `1`
63428
+ * @maxLength `128`
63429
+ * @pattern `^[0-9a-zA-Z._*-]{1,128}`
63430
+ */
63431
+ ImageTagMutabilityExclusionFilterValue: string;
63432
+ };
63433
+ /**
63434
+ * Type definition for `AWS::ECR::Repository.ImageTagMutabilityExclusionFilterType`.
63435
+ * Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
63436
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repository-imagetagmutabilityexclusionfiltertype.html}
63437
+ */
63438
+ export type ECRRepositoryImageTagMutabilityExclusionFilterType = "WILDCARD";
62749
63439
  /**
62750
63440
  * Type definition for `AWS::ECR::Repository.LifecyclePolicy`.
62751
63441
  * The ``LifecyclePolicy`` property type specifies a lifecycle policy. For information about lifecycle policy syntax, see [Lifecycle policy template](https://docs.aws.amazon.com/AmazonECR/latest/userguide/LifecyclePolicies.html) in the *Amazon ECR User Guide*.
@@ -62815,7 +63505,12 @@ export type ECRRepositoryCreationTemplateProps = {
62815
63505
  /**
62816
63506
  * The tag mutability setting for the repository. If this parameter is omitted, the default setting of ``MUTABLE`` will be used which will allow image tags to be overwritten. If ``IMMUTABLE`` is specified, all image tags within the repository will be immutable which will prevent them from being overwritten.
62817
63507
  */
62818
- ImageTagMutability?: "MUTABLE" | "IMMUTABLE";
63508
+ ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "IMMUTABLE_WITH_EXCLUSION" | "MUTABLE_WITH_EXCLUSION";
63509
+ /**
63510
+ * @minLength `1`
63511
+ * @maxLength `5`
63512
+ */
63513
+ ImageTagMutabilityExclusionFilters?: ECRRepositoryCreationTemplateImageTagMutabilityExclusionFilter[];
62819
63514
  /**
62820
63515
  * The lifecycle policy to use for repositories created using the template.
62821
63516
  * @minLength `100`
@@ -62882,6 +63577,23 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
62882
63577
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptiontype.html}
62883
63578
  */
62884
63579
  export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS" | "KMS_DSSE";
63580
+ /**
63581
+ * Type definition for `AWS::ECR::RepositoryCreationTemplate.ImageTagMutabilityExclusionFilter`.
63582
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-imagetagmutabilityexclusionfilter.html}
63583
+ */
63584
+ export type ECRRepositoryCreationTemplateImageTagMutabilityExclusionFilter = {
63585
+ /**
63586
+ * Specifies the type of filter to use for excluding image tags from the repository's mutability setting.
63587
+ */
63588
+ ImageTagMutabilityExclusionFilterType: "WILDCARD";
63589
+ /**
63590
+ * The value to use when filtering image tags.
63591
+ * @minLength `1`
63592
+ * @maxLength `128`
63593
+ * @pattern `^[0-9a-zA-Z._*-]{1,128}`
63594
+ */
63595
+ ImageTagMutabilityExclusionFilterValue: string;
63596
+ };
62885
63597
  /**
62886
63598
  * Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
62887
63599
  * The metadata to apply to a resource to help you categorize and organize them. Each tag consists of a key and a value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
@@ -92447,6 +93159,167 @@ export type IoTSiteWiseAssetModelVariableValue = {
92447
93159
  */
92448
93160
  PropertyPath?: IoTSiteWiseAssetModelPropertyPathDefinition[];
92449
93161
  };
93162
+ /**
93163
+ * Resource schema for AWS::IoTSiteWise::ComputationModel.
93164
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html}
93165
+ */
93166
+ export type IoTSiteWiseComputationModelProps = {
93167
+ /**
93168
+ * The configuration for the computation model.
93169
+ */
93170
+ ComputationModelConfiguration: IoTSiteWiseComputationModelComputationModelConfiguration;
93171
+ /**
93172
+ * The data binding for the computation model.
93173
+ */
93174
+ ComputationModelDataBinding: IoTSiteWiseComputationModelComputationModelDataBinding;
93175
+ /**
93176
+ * A description about the computation model.
93177
+ * @minLength `1`
93178
+ * @maxLength `2048`
93179
+ * @pattern `^[a-zA-Z0-9 _\-#$*!@]+$`
93180
+ */
93181
+ ComputationModelDescription?: string;
93182
+ /**
93183
+ * The name of the computation model.
93184
+ * @minLength `1`
93185
+ * @maxLength `256`
93186
+ * @pattern `^[a-zA-Z0-9 _\-#$*!@]+$`
93187
+ */
93188
+ ComputationModelName: string;
93189
+ /**
93190
+ * An array of key-value pairs to apply to this resource.
93191
+ */
93192
+ Tags?: IoTSiteWiseComputationModelTag[];
93193
+ };
93194
+ /**
93195
+ * Attribute type definition for `AWS::IoTSiteWise::ComputationModel`.
93196
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-computationmodel.html#aws-resource-iotsitewise-computationmodel-return-values}
93197
+ */
93198
+ export type IoTSiteWiseComputationModelAttributes = {
93199
+ /**
93200
+ * The ARN of the computation model.
93201
+ * @minLength `1`
93202
+ * @maxLength `1600`
93203
+ * @pattern `^arn:aws(-cn|-us-gov)?:[a-zA-Z0-9-:/_\.]+$`
93204
+ */
93205
+ ComputationModelArn: string;
93206
+ /**
93207
+ * The ID of the computation model.
93208
+ * @minLength `36`
93209
+ * @maxLength `36`
93210
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
93211
+ */
93212
+ ComputationModelId: string;
93213
+ };
93214
+ /**
93215
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.AnomalyDetectionComputationModelConfiguration`.
93216
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-anomalydetectioncomputationmodelconfiguration.html}
93217
+ */
93218
+ export type IoTSiteWiseComputationModelAnomalyDetectionComputationModelConfiguration = {
93219
+ /**
93220
+ * Input properties for anomaly detection.
93221
+ * @minLength `4`
93222
+ * @maxLength `67`
93223
+ * @pattern `^\$\{[a-z][a-z0-9_]*\}$`
93224
+ */
93225
+ InputProperties: string;
93226
+ /**
93227
+ * Result property for anomaly detection.
93228
+ * @minLength `4`
93229
+ * @maxLength `67`
93230
+ * @pattern `^\$\{[a-z][a-z0-9_]*\}$`
93231
+ */
93232
+ ResultProperty: string;
93233
+ };
93234
+ /**
93235
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.AssetModelPropertyBindingValue`.
93236
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetmodelpropertybindingvalue.html}
93237
+ */
93238
+ export type IoTSiteWiseComputationModelAssetModelPropertyBindingValue = {
93239
+ /**
93240
+ * The ID of the asset model.
93241
+ * @minLength `36`
93242
+ * @maxLength `36`
93243
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
93244
+ */
93245
+ AssetModelId: string;
93246
+ /**
93247
+ * The ID of the asset model property.
93248
+ * @minLength `36`
93249
+ * @maxLength `36`
93250
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
93251
+ */
93252
+ PropertyId: string;
93253
+ };
93254
+ /**
93255
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.AssetPropertyBindingValue`.
93256
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-assetpropertybindingvalue.html}
93257
+ */
93258
+ export type IoTSiteWiseComputationModelAssetPropertyBindingValue = {
93259
+ /**
93260
+ * The ID of the asset.
93261
+ * @minLength `36`
93262
+ * @maxLength `36`
93263
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
93264
+ */
93265
+ AssetId: string;
93266
+ /**
93267
+ * The ID of the asset property.
93268
+ * @minLength `36`
93269
+ * @maxLength `36`
93270
+ * @pattern `^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$`
93271
+ */
93272
+ PropertyId: string;
93273
+ };
93274
+ /**
93275
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.ComputationModelConfiguration`.
93276
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodelconfiguration.html}
93277
+ */
93278
+ export type IoTSiteWiseComputationModelComputationModelConfiguration = {
93279
+ /**
93280
+ * Contains configuration for anomaly detection computation model.
93281
+ */
93282
+ AnomalyDetection?: IoTSiteWiseComputationModelAnomalyDetectionComputationModelConfiguration;
93283
+ };
93284
+ /**
93285
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.ComputationModelDataBinding`.
93286
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabinding.html}
93287
+ */
93288
+ export type IoTSiteWiseComputationModelComputationModelDataBinding = Record<string, IoTSiteWiseComputationModelComputationModelDataBindingValue>;
93289
+ /**
93290
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.ComputationModelDataBindingValue`.
93291
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-computationmodeldatabindingvalue.html}
93292
+ */
93293
+ export type IoTSiteWiseComputationModelComputationModelDataBindingValue = {
93294
+ /**
93295
+ * Defines an asset model property binding.
93296
+ */
93297
+ AssetModelProperty?: IoTSiteWiseComputationModelAssetModelPropertyBindingValue;
93298
+ /**
93299
+ * Defines an asset property binding.
93300
+ */
93301
+ AssetProperty?: IoTSiteWiseComputationModelAssetPropertyBindingValue;
93302
+ /**
93303
+ * Defines a list of computation model binding values.
93304
+ */
93305
+ List?: IoTSiteWiseComputationModelComputationModelDataBindingValue[];
93306
+ };
93307
+ /**
93308
+ * Type definition for `AWS::IoTSiteWise::ComputationModel.Tag`.
93309
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-computationmodel-tag.html}
93310
+ */
93311
+ export type IoTSiteWiseComputationModelTag = {
93312
+ /**
93313
+ * @minLength `1`
93314
+ * @maxLength `128`
93315
+ */
93316
+ Key: string;
93317
+ /**
93318
+ * @minLength `0`
93319
+ * @maxLength `256`
93320
+ */
93321
+ Value: string;
93322
+ };
92450
93323
  /**
92451
93324
  * Resource schema for AWS::IoTSiteWise::Dashboard
92452
93325
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-dashboard.html}
@@ -107600,6 +108473,10 @@ export type LogsDestinationProps = {
107600
108473
  * @minLength `1`
107601
108474
  */
107602
108475
  RoleArn: string;
108476
+ /**
108477
+ * An array of key-value pairs to apply to this resource.
108478
+ */
108479
+ Tags?: LogsDestinationTag[];
107603
108480
  /**
107604
108481
  * The ARN of the physical target where the log events are delivered (for example, a Kinesis stream)
107605
108482
  * @minLength `1`
@@ -107613,6 +108490,25 @@ export type LogsDestinationProps = {
107613
108490
  export type LogsDestinationAttributes = {
107614
108491
  Arn: string;
107615
108492
  };
108493
+ /**
108494
+ * Type definition for `AWS::Logs::Destination.Tag`.
108495
+ * A key-value pair to associate with a resource.
108496
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-destination-tag.html}
108497
+ */
108498
+ export type LogsDestinationTag = {
108499
+ /**
108500
+ * The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, - and @.
108501
+ * @minLength `1`
108502
+ * @maxLength `128`
108503
+ */
108504
+ Key: string;
108505
+ /**
108506
+ * The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., :, /, =, +, - and @.
108507
+ * @minLength `0`
108508
+ * @maxLength `256`
108509
+ */
108510
+ Value: string;
108511
+ };
107616
108512
  /**
107617
108513
  * Resource type definition for `AWS::Logs::Integration`.
107618
108514
  * Resource Schema for Logs Integration Resource
@@ -107775,6 +108671,7 @@ export type LogsLogGroupProps = {
107775
108671
  * @pattern `^[.\-_/#A-Za-z0-9]{1,512}\Z`
107776
108672
  */
107777
108673
  LogGroupName?: string;
108674
+ ResourcePolicyDocument?: Record<string, any>;
107778
108675
  /**
107779
108676
  * The number of days to retain the log events in the specified log group. Possible values are: 1, 3, 5, 7, 14, 30, 60, 90, 120, 150, 180, 365, 400, 545, 731, 1096, 1827, 2192, 2557, 2922, 3288, and 3653.
107780
108677
  To set a log group so that its log events do not expire, use [DeleteRetentionPolicy](https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DeleteRetentionPolicy.html).
@@ -169386,6 +170283,10 @@ export type S3AccessPointProps = {
169386
170283
  * The PublicAccessBlock configuration that you want to apply to this Access Point. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status 'The Meaning of Public' in the Amazon Simple Storage Service Developer Guide.
169387
170284
  */
169388
170285
  PublicAccessBlockConfiguration?: S3AccessPointPublicAccessBlockConfiguration;
170286
+ /**
170287
+ * An arbitrary set of tags (key-value pairs) for this S3 Access Point.
170288
+ */
170289
+ Tags?: S3AccessPointTag[];
169389
170290
  /**
169390
170291
  * If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC).
169391
170292
  */
@@ -169439,6 +170340,21 @@ export type S3AccessPointPublicAccessBlockConfiguration = {
169439
170340
  */
169440
170341
  RestrictPublicBuckets?: boolean;
169441
170342
  };
170343
+ /**
170344
+ * Type definition for `AWS::S3::AccessPoint.Tag`.
170345
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-accesspoint-tag.html}
170346
+ */
170347
+ export type S3AccessPointTag = {
170348
+ /**
170349
+ * @minLength `1`
170350
+ * @maxLength `128`
170351
+ */
170352
+ Key: string;
170353
+ /**
170354
+ * @maxLength `256`
170355
+ */
170356
+ Value: string;
170357
+ };
169442
170358
  /**
169443
170359
  * Type definition for `AWS::S3::AccessPoint.VpcConfiguration`.
169444
170360
  * The Virtual Private Cloud (VPC) configuration for a bucket access point.
@@ -169492,7 +170408,7 @@ export type S3BucketProps = {
169492
170408
  */
169493
170409
  IntelligentTieringConfigurations?: S3BucketIntelligentTieringConfiguration[];
169494
170410
  /**
169495
- * 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*.
170411
+ * 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*.
169496
170412
  */
169497
170413
  InventoryConfigurations?: S3BucketInventoryConfiguration[];
169498
170414
  /**
@@ -169503,6 +170419,9 @@ export type S3BucketProps = {
169503
170419
  * Settings that define where logs are stored.
169504
170420
  */
169505
170421
  LoggingConfiguration?: S3BucketLoggingConfiguration;
170422
+ /**
170423
+ * The S3 Metadata configuration for a general purpose bucket.
170424
+ */
169506
170425
  MetadataConfiguration?: S3BucketMetadataConfiguration;
169507
170426
  /**
169508
170427
  * The metadata table configuration of an S3 general purpose bucket.
@@ -169566,30 +170485,33 @@ export type S3BucketAttributes = {
169566
170485
  Arn: string;
169567
170486
  DomainName: string;
169568
170487
  DualStackDomainName: string;
170488
+ /**
170489
+ * The S3 Metadata configuration for a general purpose bucket.
170490
+ */
169569
170491
  MetadataConfiguration: {
169570
170492
  /**
169571
- * The destination information for the metadata configuration.
170493
+ * The destination information for the S3 Metadata configuration.
169572
170494
  */
169573
170495
  Destination: {
169574
170496
  /**
169575
- * The ARN of the table bucket.
170497
+ * The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
169576
170498
  */
169577
170499
  TableBucketArn: string;
169578
170500
  /**
169579
- * The type of the table bucket.
170501
+ * 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.
169580
170502
  */
169581
170503
  TableBucketType: "aws" | "customer";
169582
170504
  /**
169583
- * The namespace of the table.
170505
+ * The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
169584
170506
  */
169585
170507
  TableNamespace: string;
169586
170508
  };
169587
170509
  /**
169588
- * The configuration for the inventory table.
170510
+ * The inventory table configuration for a metadata configuration.
169589
170511
  */
169590
170512
  InventoryTableConfiguration: {
169591
170513
  /**
169592
- * The ARN of the inventory table.
170514
+ * The Amazon Resource Name (ARN) for the inventory table.
169593
170515
  */
169594
170516
  TableArn: string;
169595
170517
  /**
@@ -169598,11 +170520,11 @@ export type S3BucketAttributes = {
169598
170520
  TableName: string;
169599
170521
  };
169600
170522
  /**
169601
- * The configuration for the journal table.
170523
+ * The journal table configuration for a metadata configuration.
169602
170524
  */
169603
170525
  JournalTableConfiguration: {
169604
170526
  /**
169605
- * The ARN of the journal table.
170527
+ * The Amazon Resource Name (ARN) for the journal table.
169606
170528
  */
169607
170529
  TableArn: string;
169608
170530
  /**
@@ -169891,7 +170813,7 @@ export type S3BucketIntelligentTieringConfiguration = {
169891
170813
  };
169892
170814
  /**
169893
170815
  * Type definition for `AWS::S3::Bucket.InventoryConfiguration`.
169894
- * 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*.
170816
+ * 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*.
169895
170817
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html}
169896
170818
  */
169897
170819
  export type S3BucketInventoryConfiguration = {
@@ -169926,11 +170848,12 @@ export type S3BucketInventoryConfiguration = {
169926
170848
  };
169927
170849
  /**
169928
170850
  * Type definition for `AWS::S3::Bucket.InventoryTableConfiguration`.
170851
+ * The inventory table configuration for an S3 Metadata configuration.
169929
170852
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html}
169930
170853
  */
169931
170854
  export type S3BucketInventoryTableConfiguration = {
169932
170855
  /**
169933
- * Specifies whether inventory table configuration is enabled or disabled.
170856
+ * The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
169934
170857
  */
169935
170858
  ConfigurationState: "ENABLED" | "DISABLED";
169936
170859
  /**
@@ -169940,6 +170863,7 @@ export type S3BucketInventoryTableConfiguration = {
169940
170863
  };
169941
170864
  /**
169942
170865
  * Type definition for `AWS::S3::Bucket.JournalTableConfiguration`.
170866
+ * The journal table configuration for an S3 Metadata configuration.
169943
170867
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html}
169944
170868
  */
169945
170869
  export type S3BucketJournalTableConfiguration = {
@@ -169947,6 +170871,9 @@ export type S3BucketJournalTableConfiguration = {
169947
170871
  * The encryption configuration for the journal table.
169948
170872
  */
169949
170873
  EncryptionConfiguration?: S3BucketMetadataTableEncryptionConfiguration;
170874
+ /**
170875
+ * The journal table record expiration settings for the journal table.
170876
+ */
169950
170877
  RecordExpiration: S3BucketRecordExpiration;
169951
170878
  };
169952
170879
  /**
@@ -170010,39 +170937,43 @@ export type S3BucketLoggingConfiguration = {
170010
170937
  };
170011
170938
  /**
170012
170939
  * Type definition for `AWS::S3::Bucket.MetadataConfiguration`.
170940
+ * 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*.
170013
170941
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html}
170014
170942
  */
170015
170943
  export type S3BucketMetadataConfiguration = {
170016
170944
  /**
170017
- * The configuration for the inventory table.
170945
+ * The inventory table configuration for a metadata configuration.
170018
170946
  */
170019
170947
  InventoryTableConfiguration?: S3BucketInventoryTableConfiguration;
170020
170948
  /**
170021
- * The configuration for the journal table.
170949
+ * The journal table configuration for a metadata configuration.
170022
170950
  */
170023
170951
  JournalTableConfiguration: S3BucketJournalTableConfiguration;
170024
170952
  };
170025
170953
  /**
170026
170954
  * Type definition for `AWS::S3::Bucket.MetadataDestination`.
170955
+ * The destination information for the S3 Metadata configuration.
170027
170956
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatadestination.html}
170028
170957
  */
170029
170958
  export type S3BucketMetadataDestination = {
170030
170959
  /**
170031
- * The ARN of the table bucket.
170960
+ * The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
170032
170961
  */
170033
170962
  TableBucketArn?: string;
170034
170963
  /**
170035
- * The type of the table bucket.
170964
+ * 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.
170036
170965
  */
170037
170966
  TableBucketType: "aws" | "customer";
170038
170967
  /**
170039
- * The namespace of the table.
170968
+ * The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
170040
170969
  */
170041
170970
  TableNamespace?: string;
170042
170971
  };
170043
170972
  /**
170044
170973
  * Type definition for `AWS::S3::Bucket.MetadataTableConfiguration`.
170045
- * 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).
170974
+ * 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.
170975
+ 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.
170976
+ 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*.
170046
170977
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableconfiguration.html}
170047
170978
  */
170048
170979
  export type S3BucketMetadataTableConfiguration = {
@@ -170053,15 +170984,16 @@ export type S3BucketMetadataTableConfiguration = {
170053
170984
  };
170054
170985
  /**
170055
170986
  * Type definition for `AWS::S3::Bucket.MetadataTableEncryptionConfiguration`.
170987
+ * The encryption settings for an S3 Metadata journal table or inventory table configuration.
170056
170988
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html}
170057
170989
  */
170058
170990
  export type S3BucketMetadataTableEncryptionConfiguration = {
170059
170991
  /**
170060
- * The ARN of the KMS key. Required if SseAlgorithm is aws:kms.
170992
+ * 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.
170061
170993
  */
170062
170994
  KmsKeyArn?: string;
170063
170995
  /**
170064
- * Specifies the server-side encryption algorithm to use for encrypting tables.
170996
+ * 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.
170065
170997
  */
170066
170998
  SseAlgorithm: "aws:kms" | "AES256";
170067
170999
  };
@@ -170292,15 +171224,16 @@ export type S3BucketQueueConfiguration = {
170292
171224
  };
170293
171225
  /**
170294
171226
  * Type definition for `AWS::S3::Bucket.RecordExpiration`.
171227
+ * The journal table record expiration settings for a journal table in an S3 Metadata configuration.
170295
171228
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html}
170296
171229
  */
170297
171230
  export type S3BucketRecordExpiration = {
170298
171231
  /**
170299
- * The number of days after which records expire. Required if Expiration is ENABLED.
171232
+ * 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``.
170300
171233
  */
170301
171234
  Days?: number;
170302
171235
  /**
170303
- * Specifies whether record expiration is enabled or disabled.
171236
+ * Specifies whether journal table record expiration is enabled or disabled.
170304
171237
  */
170305
171238
  Expiration: "ENABLED" | "DISABLED";
170306
171239
  };
@@ -170409,6 +171342,7 @@ export type S3BucketReplicationDestination = {
170409
171342
  /**
170410
171343
  * 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.
170411
171344
  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*.
171345
+ ``FSX_OPENZFS`` is not an accepted value when replicating objects.
170412
171346
  */
170413
171347
  StorageClass?: "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "REDUCED_REDUNDANCY" | "STANDARD" | "STANDARD_IA";
170414
171348
  };
@@ -170651,7 +171585,7 @@ export type S3BucketS3KeyFilter = {
170651
171585
  };
170652
171586
  /**
170653
171587
  * Type definition for `AWS::S3::Bucket.S3TablesDestination`.
170654
- * 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.
171588
+ * 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.
170655
171589
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html}
170656
171590
  */
170657
171591
  export type S3BucketS3TablesDestination = {
@@ -171573,6 +172507,7 @@ export type S3ExpressAccessPointProps = {
171573
172507
  * For directory buckets, you can filter access control to specific prefixes, API operations, or a combination of both.
171574
172508
  */
171575
172509
  Scope?: S3ExpressAccessPointScope;
172510
+ Tags?: S3ExpressAccessPointTag[];
171576
172511
  /**
171577
172512
  * If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC).
171578
172513
  */
@@ -171633,6 +172568,24 @@ export type S3ExpressAccessPointScope = {
171633
172568
  */
171634
172569
  Prefixes?: string[];
171635
172570
  };
172571
+ /**
172572
+ * Type definition for `AWS::S3Express::AccessPoint.Tag`.
172573
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3express-accesspoint-tag.html}
172574
+ */
172575
+ export type S3ExpressAccessPointTag = {
172576
+ /**
172577
+ * @minLength `1`
172578
+ * @maxLength `128`
172579
+ * @pattern `^(?!aws:.*)([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
172580
+ */
172581
+ Key: string;
172582
+ /**
172583
+ * @minLength `0`
172584
+ * @maxLength `256`
172585
+ * @pattern `^([\p{L}\p{Z}\p{N}_.:=+\/\-@%]*)$`
172586
+ */
172587
+ Value: string;
172588
+ };
171636
172589
  /**
171637
172590
  * Type definition for `AWS::S3Express::AccessPoint.VpcConfiguration`.
171638
172591
  * The Virtual Private Cloud (VPC) configuration for a bucket access point.
@@ -172899,7 +173852,7 @@ export type SageMakerClusterProps = {
172899
173852
  * The instance groups of the SageMaker HyperPod cluster.
172900
173853
  * @minLength `1`
172901
173854
  */
172902
- InstanceGroups: SageMakerClusterClusterInstanceGroup[];
173855
+ InstanceGroups?: SageMakerClusterClusterInstanceGroup[];
172903
173856
  /**
172904
173857
  * If node auto-recovery is set to true, faulty nodes will be replaced or rebooted when a failure is detected. If set to false, nodes will be labelled when a fault is detected.
172905
173858
  */
@@ -172908,6 +173861,11 @@ export type SageMakerClusterProps = {
172908
173861
  * Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster.
172909
173862
  */
172910
173863
  Orchestrator?: SageMakerClusterOrchestrator;
173864
+ /**
173865
+ * The restricted instance groups of the SageMaker HyperPod cluster.
173866
+ * @minLength `1`
173867
+ */
173868
+ RestrictedInstanceGroups?: SageMakerClusterClusterRestrictedInstanceGroup[];
172911
173869
  /**
172912
173870
  * Custom tags for managing the SageMaker HyperPod cluster as an AWS resource. You can add tags to your cluster in the same way you add them in other AWS services that support tagging.
172913
173871
  * @maxLength `50`
@@ -172952,6 +173910,17 @@ export type SageMakerClusterAttributes = {
172952
173910
  */
172953
173911
  CurrentCount: number;
172954
173912
  }[];
173913
+ /**
173914
+ * The restricted instance groups of the SageMaker HyperPod cluster.
173915
+ * @minLength `1`
173916
+ */
173917
+ RestrictedInstanceGroups: {
173918
+ /**
173919
+ * The number of instances that are currently in the restricted instance group of a SageMaker HyperPod cluster.
173920
+ * @min `0`
173921
+ */
173922
+ CurrentCount: number;
173923
+ }[];
172955
173924
  };
172956
173925
  /**
172957
173926
  * Type definition for `AWS::SageMaker::Cluster.ClusterEbsVolumeConfig`.
@@ -173018,6 +173987,13 @@ export type SageMakerClusterClusterInstanceGroup = {
173018
173987
  * @max `2`
173019
173988
  */
173020
173989
  ThreadsPerCore?: number;
173990
+ /**
173991
+ * The Amazon Resource Name (ARN) of the training plan to use for this cluster instance group. For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see CreateTrainingPlan.
173992
+ * @minLength `50`
173993
+ * @maxLength `2048`
173994
+ * @pattern `^arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:training-plan/.*$`
173995
+ */
173996
+ TrainingPlanArn?: string;
173021
173997
  };
173022
173998
  /**
173023
173999
  * Type definition for `AWS::SageMaker::Cluster.ClusterInstanceStorageConfig`.
@@ -173060,12 +174036,102 @@ export type SageMakerClusterClusterOrchestratorEksConfig = {
173060
174036
  */
173061
174037
  ClusterArn: string;
173062
174038
  };
174039
+ /**
174040
+ * Type definition for `AWS::SageMaker::Cluster.ClusterRestrictedInstanceGroup`.
174041
+ * Details of a restricted instance group in a SageMaker HyperPod cluster.
174042
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-clusterrestrictedinstancegroup.html}
174043
+ */
174044
+ export type SageMakerClusterClusterRestrictedInstanceGroup = {
174045
+ /**
174046
+ * The configuration for the restricted instance groups (RIG) environment.
174047
+ */
174048
+ EnvironmentConfig: SageMakerClusterEnvironmentConfig;
174049
+ /**
174050
+ * The execution role for the instance group to assume.
174051
+ * @minLength `20`
174052
+ * @maxLength `2048`
174053
+ * @pattern `^arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+$`
174054
+ */
174055
+ ExecutionRole: string;
174056
+ /**
174057
+ * The number of instances you specified to add to the restricted instance group of a SageMaker HyperPod cluster.
174058
+ * @min `0`
174059
+ */
174060
+ InstanceCount: number;
174061
+ /**
174062
+ * The name of the instance group of a SageMaker HyperPod cluster.
174063
+ * @minLength `1`
174064
+ * @maxLength `63`
174065
+ * @pattern `^[a-zA-Z0-9](-*[a-zA-Z0-9])*$`
174066
+ */
174067
+ InstanceGroupName: string;
174068
+ /**
174069
+ * The instance storage configuration for the instance group.
174070
+ * @maxLength `1`
174071
+ */
174072
+ InstanceStorageConfigs?: SageMakerClusterClusterInstanceStorageConfig[];
174073
+ /**
174074
+ * The instance type of the instance group of a SageMaker HyperPod cluster.
174075
+ */
174076
+ InstanceType: string;
174077
+ /**
174078
+ * Nodes will undergo advanced stress test to detect and replace faulty instances, based on the type of deep health check(s) passed in.
174079
+ */
174080
+ OnStartDeepHealthChecks?: SageMakerClusterDeepHealthCheckType[];
174081
+ /**
174082
+ * Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC.
174083
+ */
174084
+ OverrideVpcConfig?: SageMakerClusterVpcConfig;
174085
+ /**
174086
+ * The number you specified to TreadsPerCore in CreateCluster for enabling or disabling multithreading. For instance types that support multithreading, you can specify 1 for disabling multithreading and 2 for enabling multithreading.
174087
+ * @min `1`
174088
+ * @max `2`
174089
+ */
174090
+ ThreadsPerCore?: number;
174091
+ /**
174092
+ * The Amazon Resource Name (ARN) of the training plan to use for this cluster restricted instance group. For more information about how to reserve GPU capacity for your SageMaker HyperPod clusters using Amazon SageMaker Training Plan, see CreateTrainingPlan.
174093
+ * @minLength `50`
174094
+ * @maxLength `2048`
174095
+ * @pattern `^arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:training-plan/.*$`
174096
+ */
174097
+ TrainingPlanArn?: string;
174098
+ };
173063
174099
  /**
173064
174100
  * Type definition for `AWS::SageMaker::Cluster.DeepHealthCheckType`.
173065
174101
  * The type of deep health check(s) to be performed on the instances in the SageMaker HyperPod cluster instance group.
173066
174102
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-deephealthchecktype.html}
173067
174103
  */
173068
174104
  export type SageMakerClusterDeepHealthCheckType = "InstanceStress" | "InstanceConnectivity";
174105
+ /**
174106
+ * Type definition for `AWS::SageMaker::Cluster.EnvironmentConfig`.
174107
+ * The configuration for the restricted instance groups (RIG) environment.
174108
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-environmentconfig.html}
174109
+ */
174110
+ export type SageMakerClusterEnvironmentConfig = {
174111
+ /**
174112
+ * Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster.
174113
+ */
174114
+ FSxLustreConfig?: SageMakerClusterFSxLustreConfig;
174115
+ };
174116
+ /**
174117
+ * Type definition for `AWS::SageMaker::Cluster.FSxLustreConfig`.
174118
+ * Configuration settings for an Amazon FSx for Lustre file system to be used with the cluster.
174119
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-cluster-fsxlustreconfig.html}
174120
+ */
174121
+ export type SageMakerClusterFSxLustreConfig = {
174122
+ /**
174123
+ * The throughput capacity of the FSx for Lustre file system, measured in MB/s per TiB of storage.
174124
+ * @min `125`
174125
+ * @max `1000`
174126
+ */
174127
+ PerUnitStorageThroughput: number;
174128
+ /**
174129
+ * The storage capacity of the FSx for Lustre file system, specified in gibibytes (GiB).
174130
+ * @min `1200`
174131
+ * @max `100800`
174132
+ */
174133
+ SizeInGiB: number;
174134
+ };
173069
174135
  /**
173070
174136
  * Type definition for `AWS::SageMaker::Cluster.Orchestrator`.
173071
174137
  * Specifies parameter(s) specific to the orchestrator, e.g. specify the EKS cluster.
@@ -180061,6 +181127,581 @@ export type SageMakerPipelineTag = {
180061
181127
  Key: string;
180062
181128
  Value: string;
180063
181129
  };
181130
+ /**
181131
+ * Resource Type definition for AWS::SageMaker::ProcessingJob
181132
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-processingjob.html}
181133
+ */
181134
+ export type SageMakerProcessingJobProps = {
181135
+ /**
181136
+ * Configures the processing job to run a specified Docker container image.
181137
+ */
181138
+ AppSpecification: SageMakerProcessingJobAppSpecification;
181139
+ /**
181140
+ * Sets the environment variables in the Docker container
181141
+ */
181142
+ Environment?: SageMakerProcessingJobEnvironment;
181143
+ /**
181144
+ * Associates a SageMaker job as a trial component with an experiment and trial.
181145
+ */
181146
+ ExperimentConfig?: SageMakerProcessingJobExperimentConfig;
181147
+ /**
181148
+ * Networking options for a job, such as network traffic encryption between containers, whether to allow inbound and outbound network calls to and from containers, and the VPC subnets and security groups to use for VPC-enabled jobs.
181149
+ */
181150
+ NetworkConfig?: SageMakerProcessingJobNetworkConfig;
181151
+ /**
181152
+ * An array of inputs configuring the data to download into the processing container.
181153
+ * @minLength `0`
181154
+ * @maxLength `10`
181155
+ */
181156
+ ProcessingInputs?: SageMakerProcessingJobProcessingInputsObject[];
181157
+ /**
181158
+ * The name of the processing job. The name must be unique within an AWS Region in the AWS account.
181159
+ * @minLength `1`
181160
+ * @maxLength `63`
181161
+ * @pattern `[a-zA-Z0-9](-*[a-zA-Z0-9]){0,62}`
181162
+ */
181163
+ ProcessingJobName?: string;
181164
+ /**
181165
+ * Configuration for uploading output from the processing container.
181166
+ */
181167
+ ProcessingOutputConfig?: SageMakerProcessingJobProcessingOutputConfig;
181168
+ /**
181169
+ * Identifies the resources, ML compute instances, and ML storage volumes to deploy for a processing job. In distributed training, you specify more than one instance.
181170
+ */
181171
+ ProcessingResources: SageMakerProcessingJobProcessingResources;
181172
+ /**
181173
+ * The Amazon Resource Name (ARN) of an IAM role that Amazon SageMaker can assume to perform tasks on your behalf.
181174
+ * @minLength `20`
181175
+ * @maxLength `2048`
181176
+ * @pattern `arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
181177
+ */
181178
+ RoleArn: string;
181179
+ /**
181180
+ * Configures conditions under which the processing job should be stopped, such as how long the processing job has been running. After the condition is met, the processing job is stopped.
181181
+ */
181182
+ StoppingCondition?: SageMakerProcessingJobStoppingCondition;
181183
+ /**
181184
+ * (Optional) An array of key-value pairs. For more information, see Using Cost Allocation Tags(https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/cost-alloc-tags.html#allocation-whatURL) in the AWS Billing and Cost Management User Guide.
181185
+ * @maxLength `50`
181186
+ */
181187
+ Tags?: SageMakerProcessingJobTag[];
181188
+ };
181189
+ /**
181190
+ * Attribute type definition for `AWS::SageMaker::ProcessingJob`.
181191
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-processingjob.html#aws-resource-sagemaker-processingjob-return-values}
181192
+ */
181193
+ export type SageMakerProcessingJobAttributes = {
181194
+ /**
181195
+ * The ARN of an AutoML job associated with this processing job.
181196
+ * @maxLength `256`
181197
+ */
181198
+ AutoMLJobArn: string;
181199
+ /**
181200
+ * The time at which the processing job was created.
181201
+ */
181202
+ CreationTime: string;
181203
+ /**
181204
+ * An optional string, up to one KB in size, that contains metadata from the processing container when the processing job exits.
181205
+ * @maxLength `1024`
181206
+ * @pattern `[\S\s]*`
181207
+ */
181208
+ ExitMessage: string;
181209
+ /**
181210
+ * A string, up to one KB in size, that contains the reason a processing job failed, if it failed.
181211
+ * @maxLength `1024`
181212
+ */
181213
+ FailureReason: string;
181214
+ /**
181215
+ * The time at which the processing job was last modified.
181216
+ */
181217
+ LastModifiedTime: string;
181218
+ /**
181219
+ * The ARN of a monitoring schedule for an endpoint associated with this processing job.
181220
+ * @maxLength `256`
181221
+ */
181222
+ MonitoringScheduleArn: string;
181223
+ /**
181224
+ * The time at which the processing job completed.
181225
+ */
181226
+ ProcessingEndTime: string;
181227
+ /**
181228
+ * The Amazon Resource Name (ARN) of the processing job.
181229
+ * @minLength `0`
181230
+ * @maxLength `256`
181231
+ * @pattern `arn:aws[a-z\-]*:sagemaker:[a-z0-9\-]*:[0-9]{12}:processing-job/.*`
181232
+ */
181233
+ ProcessingJobArn: string;
181234
+ /**
181235
+ * Provides the status of a processing job.
181236
+ */
181237
+ ProcessingJobStatus: "Completed" | "InProgress" | "Stopping" | "Stopped" | "Failed";
181238
+ /**
181239
+ * The time at which the processing job started.
181240
+ */
181241
+ ProcessingStartTime: string;
181242
+ /**
181243
+ * The ARN of a training job associated with this processing job
181244
+ * @maxLength `256`
181245
+ */
181246
+ TrainingJobArn: string;
181247
+ };
181248
+ /**
181249
+ * Type definition for `AWS::SageMaker::ProcessingJob.AppSpecification`.
181250
+ * Configures the processing job to run a specified Docker container image.
181251
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-appspecification.html}
181252
+ */
181253
+ export type SageMakerProcessingJobAppSpecification = {
181254
+ /**
181255
+ * The arguments for a container used to run a processing job.
181256
+ * @minLength `1`
181257
+ * @maxLength `100`
181258
+ */
181259
+ ContainerArguments?: string[];
181260
+ /**
181261
+ * The entrypoint for a container used to run a processing job.
181262
+ * @minLength `1`
181263
+ * @maxLength `100`
181264
+ */
181265
+ ContainerEntrypoint?: string[];
181266
+ /**
181267
+ * The container image to be run by the processing job.
181268
+ * @minLength `0`
181269
+ * @maxLength `256`
181270
+ * @pattern `.*`
181271
+ */
181272
+ ImageUri: string;
181273
+ };
181274
+ /**
181275
+ * Type definition for `AWS::SageMaker::ProcessingJob.AthenaDatasetDefinition`.
181276
+ * Configuration for Athena Dataset Definition input.
181277
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-athenadatasetdefinition.html}
181278
+ */
181279
+ export type SageMakerProcessingJobAthenaDatasetDefinition = {
181280
+ /**
181281
+ * The name of the data catalog used in Athena query execution.
181282
+ * @maxLength `256`
181283
+ */
181284
+ Catalog: string;
181285
+ /**
181286
+ * The name of the database used in the Athena query execution.
181287
+ * @maxLength `255`
181288
+ * @pattern `.*`
181289
+ */
181290
+ Database: string;
181291
+ /**
181292
+ * The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data generated from an Athena query execution.
181293
+ * @minLength `0`
181294
+ * @maxLength `2048`
181295
+ * @pattern `[a-zA-Z0-9:/_-]*`
181296
+ */
181297
+ KmsKeyId?: string;
181298
+ /**
181299
+ * The compression used for Athena query results.
181300
+ */
181301
+ OutputCompression?: "GZIP" | "SNAPPY" | "ZLIB";
181302
+ /**
181303
+ * The data storage format for Athena query results.
181304
+ */
181305
+ OutputFormat: "PARQUET" | "AVRO" | "ORC" | "JSON" | "TEXTFILE";
181306
+ /**
181307
+ * The location in Amazon S3 where Athena query results are stored.
181308
+ * @minLength `0`
181309
+ * @maxLength `1024`
181310
+ * @pattern `(https|s3)://([^/]+)/?(.*)`
181311
+ */
181312
+ OutputS3Uri: string;
181313
+ /**
181314
+ * The SQL query statements, to be executed.
181315
+ * @maxLength `4096`
181316
+ * @pattern `[\s\S]+`
181317
+ */
181318
+ QueryString: string;
181319
+ /**
181320
+ * The name of the workgroup in which the Athena query is being started.
181321
+ * @maxLength `128`
181322
+ * @pattern `[a-zA-Z0-9._-]+`
181323
+ */
181324
+ WorkGroup?: string;
181325
+ };
181326
+ /**
181327
+ * Type definition for `AWS::SageMaker::ProcessingJob.ClusterConfig`.
181328
+ * Configuration for the cluster used to run a processing job.
181329
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-clusterconfig.html}
181330
+ */
181331
+ export type SageMakerProcessingJobClusterConfig = {
181332
+ /**
181333
+ * The number of ML compute instances to use in the processing job. For distributed processing jobs, specify a value greater than 1. The default value is 1.
181334
+ * @min `1`
181335
+ * @max `100`
181336
+ */
181337
+ InstanceCount: number;
181338
+ /**
181339
+ * The ML compute instance type for the processing job.
181340
+ */
181341
+ InstanceType: "ml.t3.medium" | "ml.t3.large" | "ml.t3.xlarge" | "ml.t3.2xlarge" | "ml.m4.xlarge" | "ml.m4.2xlarge" | "ml.m4.4xlarge" | "ml.m4.10xlarge" | "ml.m4.16xlarge" | "ml.c4.xlarge" | "ml.c4.2xlarge" | "ml.c4.4xlarge" | "ml.c4.8xlarge" | "ml.c5.xlarge" | "ml.c5.2xlarge" | "ml.c5.4xlarge" | "ml.c5.9xlarge" | "ml.c5.18xlarge" | "ml.m5.large" | "ml.m5.xlarge" | "ml.m5.2xlarge" | "ml.m5.4xlarge" | "ml.m5.12xlarge" | "ml.m5.24xlarge" | "ml.r5.large" | "ml.r5.xlarge" | "ml.r5.2xlarge" | "ml.r5.4xlarge" | "ml.r5.8xlarge" | "ml.r5.12xlarge" | "ml.r5.16xlarge" | "ml.r5.24xlarge" | "ml.g4dn.xlarge" | "ml.g4dn.2xlarge" | "ml.g4dn.4xlarge" | "ml.g4dn.8xlarge" | "ml.g4dn.12xlarge" | "ml.g4dn.16xlarge" | "ml.g5.xlarge" | "ml.g5.2xlarge" | "ml.g5.4xlarge" | "ml.g5.8xlarge" | "ml.g5.16xlarge" | "ml.g5.12xlarge" | "ml.g5.24xlarge" | "ml.g5.48xlarge" | "ml.r5d.large" | "ml.r5d.xlarge" | "ml.r5d.2xlarge" | "ml.r5d.4xlarge" | "ml.r5d.8xlarge" | "ml.r5d.12xlarge" | "ml.r5d.16xlarge" | "ml.r5d.24xlarge" | "ml.g6.xlarge" | "ml.g6.2xlarge" | "ml.g6.4xlarge" | "ml.g6.8xlarge" | "ml.g6.12xlarge" | "ml.g6.16xlarge" | "ml.g6.24xlarge" | "ml.g6.48xlarge" | "ml.g6e.xlarge" | "ml.g6e.2xlarge" | "ml.g6e.4xlarge" | "ml.g6e.8xlarge" | "ml.g6e.12xlarge" | "ml.g6e.16xlarge" | "ml.g6e.24xlarge" | "ml.g6e.48xlarge" | "ml.m6i.large" | "ml.m6i.xlarge" | "ml.m6i.2xlarge" | "ml.m6i.4xlarge" | "ml.m6i.8xlarge" | "ml.m6i.12xlarge" | "ml.m6i.16xlarge" | "ml.m6i.24xlarge" | "ml.m6i.32xlarge" | "ml.c6i.xlarge" | "ml.c6i.2xlarge" | "ml.c6i.4xlarge" | "ml.c6i.8xlarge" | "ml.c6i.12xlarge" | "ml.c6i.16xlarge" | "ml.c6i.24xlarge" | "ml.c6i.32xlarge" | "ml.m7i.large" | "ml.m7i.xlarge" | "ml.m7i.2xlarge" | "ml.m7i.4xlarge" | "ml.m7i.8xlarge" | "ml.m7i.12xlarge" | "ml.m7i.16xlarge" | "ml.m7i.24xlarge" | "ml.m7i.48xlarge" | "ml.c7i.large" | "ml.c7i.xlarge" | "ml.c7i.2xlarge" | "ml.c7i.4xlarge" | "ml.c7i.8xlarge" | "ml.c7i.12xlarge" | "ml.c7i.16xlarge" | "ml.c7i.24xlarge" | "ml.c7i.48xlarge" | "ml.r7i.large" | "ml.r7i.xlarge" | "ml.r7i.2xlarge" | "ml.r7i.4xlarge" | "ml.r7i.8xlarge" | "ml.r7i.12xlarge" | "ml.r7i.16xlarge" | "ml.r7i.24xlarge" | "ml.r7i.48xlarge";
181342
+ /**
181343
+ * The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data on the storage volume attached to the ML compute instance(s) that run the processing job.
181344
+ * @minLength `0`
181345
+ * @maxLength `2048`
181346
+ * @pattern `[a-zA-Z0-9:/_-]*`
181347
+ */
181348
+ VolumeKmsKeyId?: string;
181349
+ /**
181350
+ * The size of the ML storage volume in gigabytes that you want to provision. You must specify sufficient ML storage for your scenario.
181351
+ * @min `1`
181352
+ * @max `16384`
181353
+ */
181354
+ VolumeSizeInGB: number;
181355
+ };
181356
+ /**
181357
+ * Type definition for `AWS::SageMaker::ProcessingJob.DatasetDefinition`.
181358
+ * Configuration for Dataset Definition inputs. The Dataset Definition input must specify exactly one of either `AthenaDatasetDefinition` or `RedshiftDatasetDefinition` types.
181359
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-datasetdefinition.html}
181360
+ */
181361
+ export type SageMakerProcessingJobDatasetDefinition = {
181362
+ /**
181363
+ * Configuration for Athena Dataset Definition input.
181364
+ */
181365
+ AthenaDatasetDefinition?: SageMakerProcessingJobAthenaDatasetDefinition;
181366
+ /**
181367
+ * Whether the generated dataset is FullyReplicated or ShardedByS3Key (default).
181368
+ */
181369
+ DataDistributionType?: "FullyReplicated" | "ShardedByS3Key";
181370
+ /**
181371
+ * Whether to use File or Pipe input mode. In File (default) mode, Amazon SageMaker copies the data from the input source onto the local Amazon Elastic Block Store (Amazon EBS) volumes before starting your training algorithm. This is the most commonly used input mode. In Pipe mode, Amazon SageMaker streams input data from the source directly to your algorithm without using the EBS volume.
181372
+ */
181373
+ InputMode?: "File" | "Pipe";
181374
+ /**
181375
+ * The local path where you want Amazon SageMaker to download the Dataset Definition inputs to run a processing job. LocalPath is an absolute path to the input data. This is a required parameter when AppManaged is False (default).
181376
+ * @minLength `0`
181377
+ * @maxLength `256`
181378
+ * @pattern `.*`
181379
+ */
181380
+ LocalPath?: string;
181381
+ /**
181382
+ * Configuration for Redshift Dataset Definition input.
181383
+ */
181384
+ RedshiftDatasetDefinition?: SageMakerProcessingJobRedshiftDatasetDefinition;
181385
+ };
181386
+ /**
181387
+ * Type definition for `AWS::SageMaker::ProcessingJob.Environment`.
181388
+ * Sets the environment variables in the Docker container
181389
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-environment.html}
181390
+ */
181391
+ export type SageMakerProcessingJobEnvironment = Record<string, string>;
181392
+ /**
181393
+ * Type definition for `AWS::SageMaker::ProcessingJob.ExperimentConfig`.
181394
+ * Associates a SageMaker job as a trial component with an experiment and trial.
181395
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-experimentconfig.html}
181396
+ */
181397
+ export type SageMakerProcessingJobExperimentConfig = {
181398
+ /**
181399
+ * The name of an existing experiment to associate with the trial component.
181400
+ * @maxLength `120`
181401
+ * @pattern `[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}`
181402
+ */
181403
+ ExperimentName?: string;
181404
+ /**
181405
+ * The name of the experiment run to associate with the trial component.
181406
+ * @maxLength `120`
181407
+ * @pattern `[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}`
181408
+ */
181409
+ RunName?: string;
181410
+ /**
181411
+ * The display name for the trial component. If this key isn't specified, the display name is the trial component name.
181412
+ * @maxLength `120`
181413
+ * @pattern `[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}`
181414
+ */
181415
+ TrialComponentDisplayName?: string;
181416
+ /**
181417
+ * The name of an existing trial to associate the trial component with. If not specified, a new trial is created.
181418
+ * @maxLength `120`
181419
+ * @pattern `[a-zA-Z0-9](-*[a-zA-Z0-9]){0,119}`
181420
+ */
181421
+ TrialName?: string;
181422
+ };
181423
+ /**
181424
+ * Type definition for `AWS::SageMaker::ProcessingJob.FeatureStoreOutput`.
181425
+ * Configuration for processing job outputs in Amazon SageMaker Feature Store.
181426
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-featurestoreoutput.html}
181427
+ */
181428
+ export type SageMakerProcessingJobFeatureStoreOutput = {
181429
+ /**
181430
+ * The name of the Amazon SageMaker FeatureGroup to use as the destination for processing job output. Note that your processing script is responsible for putting records into your Feature Store.
181431
+ * @maxLength `64`
181432
+ * @pattern `[a-zA-Z0-9]([_-]*[a-zA-Z0-9]){0,63}`
181433
+ */
181434
+ FeatureGroupName: string;
181435
+ };
181436
+ /**
181437
+ * Type definition for `AWS::SageMaker::ProcessingJob.NetworkConfig`.
181438
+ * Networking options for a job, such as network traffic encryption between containers, whether to allow inbound and outbound network calls to and from containers, and the VPC subnets and security groups to use for VPC-enabled jobs.
181439
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-networkconfig.html}
181440
+ */
181441
+ export type SageMakerProcessingJobNetworkConfig = {
181442
+ /**
181443
+ * Whether to encrypt all communications between distributed processing jobs. Choose True to encrypt communications. Encryption provides greater security for distributed processing jobs, but the processing might take longer.
181444
+ */
181445
+ EnableInterContainerTrafficEncryption?: boolean;
181446
+ /**
181447
+ * Whether to allow inbound and outbound network calls to and from the containers used for the processing job.
181448
+ */
181449
+ EnableNetworkIsolation?: boolean;
181450
+ /**
181451
+ * Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC. For more information, see https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
181452
+ */
181453
+ VpcConfig?: SageMakerProcessingJobVpcConfig;
181454
+ };
181455
+ /**
181456
+ * Type definition for `AWS::SageMaker::ProcessingJob.ProcessingInputsObject`.
181457
+ * The inputs for a processing job. The processing input must specify exactly one of either S3Input or DatasetDefinition types.
181458
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-processinginputsobject.html}
181459
+ */
181460
+ export type SageMakerProcessingJobProcessingInputsObject = {
181461
+ /**
181462
+ * When True, input operations such as data download are managed natively by the processing job application. When False (default), input operations are managed by Amazon SageMaker.
181463
+ */
181464
+ AppManaged?: boolean;
181465
+ /**
181466
+ * Configuration for Dataset Definition inputs. The Dataset Definition input must specify exactly one of either `AthenaDatasetDefinition` or `RedshiftDatasetDefinition` types.
181467
+ */
181468
+ DatasetDefinition?: SageMakerProcessingJobDatasetDefinition;
181469
+ /**
181470
+ * The name for the processing job input.
181471
+ */
181472
+ InputName: string;
181473
+ /**
181474
+ * Configuration for downloading input data from Amazon S3 into the processing container.
181475
+ */
181476
+ S3Input?: SageMakerProcessingJobS3Input;
181477
+ };
181478
+ /**
181479
+ * Type definition for `AWS::SageMaker::ProcessingJob.ProcessingOutputConfig`.
181480
+ * Configuration for uploading output from the processing container.
181481
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-processingoutputconfig.html}
181482
+ */
181483
+ export type SageMakerProcessingJobProcessingOutputConfig = {
181484
+ /**
181485
+ * The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt the processing job output. KmsKeyId can be an ID of a KMS key, ARN of a KMS key, or alias of a KMS key. The KmsKeyId is applied to all outputs.
181486
+ * @maxLength `2048`
181487
+ * @pattern `[a-zA-Z0-9:/_-]*`
181488
+ */
181489
+ KmsKeyId?: string;
181490
+ /**
181491
+ * An array of outputs configuring the data to upload from the processing container.
181492
+ * @maxLength `10`
181493
+ */
181494
+ Outputs: SageMakerProcessingJobProcessingOutputsObject[];
181495
+ };
181496
+ /**
181497
+ * Type definition for `AWS::SageMaker::ProcessingJob.ProcessingOutputsObject`.
181498
+ * Describes the results of a processing job. The processing output must specify exactly one of either S3Output or FeatureStoreOutput types.
181499
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-processingoutputsobject.html}
181500
+ */
181501
+ export type SageMakerProcessingJobProcessingOutputsObject = {
181502
+ /**
181503
+ * When True, output operations such as data upload are managed natively by the processing job application. When False (default), output operations are managed by Amazon SageMaker.
181504
+ */
181505
+ AppManaged?: boolean;
181506
+ /**
181507
+ * Configuration for processing job outputs in Amazon SageMaker Feature Store.
181508
+ */
181509
+ FeatureStoreOutput?: SageMakerProcessingJobFeatureStoreOutput;
181510
+ /**
181511
+ * The name for the processing job output.
181512
+ */
181513
+ OutputName: string;
181514
+ /**
181515
+ * Configuration for uploading output data to Amazon S3 from the processing container.
181516
+ */
181517
+ S3Output?: SageMakerProcessingJobS3Output;
181518
+ };
181519
+ /**
181520
+ * Type definition for `AWS::SageMaker::ProcessingJob.ProcessingResources`.
181521
+ * Identifies the resources, ML compute instances, and ML storage volumes to deploy for a processing job. In distributed training, you specify more than one instance.
181522
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-processingresources.html}
181523
+ */
181524
+ export type SageMakerProcessingJobProcessingResources = {
181525
+ /**
181526
+ * Configuration for the cluster used to run a processing job.
181527
+ */
181528
+ ClusterConfig: SageMakerProcessingJobClusterConfig;
181529
+ };
181530
+ /**
181531
+ * Type definition for `AWS::SageMaker::ProcessingJob.RedshiftDatasetDefinition`.
181532
+ * Configuration for Redshift Dataset Definition input.
181533
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-redshiftdatasetdefinition.html}
181534
+ */
181535
+ export type SageMakerProcessingJobRedshiftDatasetDefinition = {
181536
+ /**
181537
+ * The Redshift cluster Identifier.
181538
+ * @maxLength `63`
181539
+ * @pattern `.*`
181540
+ */
181541
+ ClusterId: string;
181542
+ /**
181543
+ * The IAM role attached to your Redshift cluster that Amazon SageMaker uses to generate datasets.
181544
+ * @minLength `20`
181545
+ * @maxLength `2048`
181546
+ * @pattern `arn:aws[a-z\-]*:iam::\d{12}:role/?[a-zA-Z_0-9+=,.@\-_/]+`
181547
+ */
181548
+ ClusterRoleArn: string;
181549
+ /**
181550
+ * The name of the Redshift database used in Redshift query execution.
181551
+ * @maxLength `64`
181552
+ * @pattern `.*`
181553
+ */
181554
+ Database: string;
181555
+ /**
181556
+ * The database user name used in Redshift query execution.
181557
+ * @maxLength `128`
181558
+ * @pattern `.*`
181559
+ */
181560
+ DbUser: string;
181561
+ /**
181562
+ * The AWS Key Management Service (AWS KMS) key that Amazon SageMaker uses to encrypt data from a Redshift execution.
181563
+ * @minLength `0`
181564
+ * @maxLength `2048`
181565
+ * @pattern `[a-zA-Z0-9:/_-]*`
181566
+ */
181567
+ KmsKeyId?: string;
181568
+ /**
181569
+ * The compression used for Redshift query results.
181570
+ */
181571
+ OutputCompression?: "None" | "GZIP" | "SNAPPY" | "ZSTD" | "BZIP2";
181572
+ /**
181573
+ * The data storage format for Redshift query results.
181574
+ */
181575
+ OutputFormat: "PARQUET" | "CSV";
181576
+ /**
181577
+ * The location in Amazon S3 where the Redshift query results are stored.
181578
+ * @minLength `0`
181579
+ * @maxLength `1024`
181580
+ * @pattern `(https|s3)://([^/]+)/?(.*)`
181581
+ */
181582
+ OutputS3Uri: string;
181583
+ /**
181584
+ * The SQL query statements to be executed.
181585
+ * @maxLength `4096`
181586
+ * @pattern `[\s\S]+`
181587
+ */
181588
+ QueryString: string;
181589
+ };
181590
+ /**
181591
+ * Type definition for `AWS::SageMaker::ProcessingJob.S3Input`.
181592
+ * Configuration for downloading input data from Amazon S3 into the processing container.
181593
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-s3input.html}
181594
+ */
181595
+ export type SageMakerProcessingJobS3Input = {
181596
+ /**
181597
+ * The local path in your container where you want Amazon SageMaker to write input data to. `LocalPath` is an absolute path to the input data and must begin with `/opt/ml/processing/`. LocalPath is a required parameter when `AppManaged` is `False` (default).
181598
+ * @minLength `0`
181599
+ * @maxLength `256`
181600
+ * @pattern `.*`
181601
+ */
181602
+ LocalPath?: string;
181603
+ /**
181604
+ * Whether to GZIP-decompress the data in Amazon S3 as it is streamed into the processing container. `Gzip` can only be used when `Pipe` mode is specified as the `S3InputMode`. In `Pipe` mode, Amazon SageMaker streams input data from the source directly to your container without using the EBS volume.
181605
+ */
181606
+ S3CompressionType?: "None" | "Gzip";
181607
+ /**
181608
+ * Whether to distribute the data from Amazon S3 to all processing instances with `FullyReplicated`, or whether the data from Amazon S3 is shared by Amazon S3 key, downloading one shard of data to each processing instance.
181609
+ */
181610
+ S3DataDistributionType?: "FullyReplicated" | "ShardedByS3Key";
181611
+ /**
181612
+ * Whether you use an S3Prefix or a ManifestFile for the data type. If you choose S3Prefix, S3Uri identifies a key name prefix. Amazon SageMaker uses all objects with the specified key name prefix for the processing job. If you choose ManifestFile, S3Uri identifies an object that is a manifest file containing a list of object keys that you want Amazon SageMaker to use for the processing job.
181613
+ */
181614
+ S3DataType: "ManifestFile" | "S3Prefix";
181615
+ /**
181616
+ * Whether to use File or Pipe input mode. In File mode, Amazon SageMaker copies the data from the input source onto the local ML storage volume before starting your processing container. This is the most commonly used input mode. In Pipe mode, Amazon SageMaker streams input data from the source directly to your processing container into named pipes without using the ML storage volume.
181617
+ */
181618
+ S3InputMode?: "File" | "Pipe";
181619
+ /**
181620
+ * The URI of the Amazon S3 prefix Amazon SageMaker downloads data required to run a processing job.
181621
+ * @minLength `0`
181622
+ * @maxLength `1024`
181623
+ * @pattern `(https|s3)://([^/]+)/?(.*)`
181624
+ */
181625
+ S3Uri: string;
181626
+ };
181627
+ /**
181628
+ * Type definition for `AWS::SageMaker::ProcessingJob.S3Output`.
181629
+ * Configuration for uploading output data to Amazon S3 from the processing container.
181630
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-s3output.html}
181631
+ */
181632
+ export type SageMakerProcessingJobS3Output = {
181633
+ /**
181634
+ * The local path of a directory where you want Amazon SageMaker to upload its contents to Amazon S3. LocalPath is an absolute path to a directory containing output files. This directory will be created by the platform and exist when your container's entrypoint is invoked.
181635
+ * @minLength `0`
181636
+ * @maxLength `256`
181637
+ * @pattern `.*`
181638
+ */
181639
+ LocalPath?: string;
181640
+ /**
181641
+ * Whether to upload the results of the processing job continuously or after the job completes.
181642
+ */
181643
+ S3UploadMode: "Continuous" | "EndOfJob";
181644
+ /**
181645
+ * A URI that identifies the Amazon S3 bucket where you want Amazon SageMaker to save the results of a processing job.
181646
+ * @minLength `0`
181647
+ * @maxLength `1024`
181648
+ * @pattern `(https|s3)://([^/]+)/?(.*)`
181649
+ */
181650
+ S3Uri: string;
181651
+ };
181652
+ /**
181653
+ * Type definition for `AWS::SageMaker::ProcessingJob.StoppingCondition`.
181654
+ * Configures conditions under which the processing job should be stopped, such as how long the processing job has been running. After the condition is met, the processing job is stopped.
181655
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-stoppingcondition.html}
181656
+ */
181657
+ export type SageMakerProcessingJobStoppingCondition = {
181658
+ /**
181659
+ * Specifies the maximum runtime in seconds.
181660
+ * @min `1`
181661
+ * @max `777600`
181662
+ */
181663
+ MaxRuntimeInSeconds: number;
181664
+ };
181665
+ /**
181666
+ * Type definition for `AWS::SageMaker::ProcessingJob.Tag`.
181667
+ * A tag object that consists of a key and an optional value, used to manage metadata for SageMaker AWS resources.
181668
+ You can add tags to notebook instances, training jobs, hyperparameter tuning jobs, batch transform jobs, models, labeling jobs, work teams, endpoint configurations, and endpoints. For more information on adding tags to SageMaker resources, see AddTags(https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_AddTags.html).
181669
+ For more information on adding metadata to your AWS resources with tagging, see Tagging AWS resources(https://docs.aws.amazon.com/tag-editor/latest/userguide/tagging.html). For advice on best practices for managing AWS resources with tagging, see Tagging Best Practices: Implement an Effective AWS Resource Tagging Strategy(https://d1.awsstatic.com/whitepapers/aws-tagging-best-practices.pdf).
181670
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-tag.html}
181671
+ */
181672
+ export type SageMakerProcessingJobTag = {
181673
+ /**
181674
+ * The tag key. Tag keys must be unique per resource.
181675
+ * @maxLength `128`
181676
+ * @pattern `([\p{L}\p{Z}\p{N}_.:/=+\-@]*)`
181677
+ */
181678
+ Key: string;
181679
+ /**
181680
+ * The tag value.
181681
+ * @maxLength `256`
181682
+ * @pattern `([\p{L}\p{Z}\p{N}_.:/=+\-@]*)`
181683
+ */
181684
+ Value: string;
181685
+ };
181686
+ /**
181687
+ * Type definition for `AWS::SageMaker::ProcessingJob.VpcConfig`.
181688
+ * Specifies an Amazon Virtual Private Cloud (VPC) that your SageMaker jobs, hosted models, and compute resources have access to. You can control access to and from your resources by configuring a VPC. For more information, see https://docs.aws.amazon.com/sagemaker/latest/dg/infrastructure-give-access.html
181689
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-sagemaker-processingjob-vpcconfig.html}
181690
+ */
181691
+ export type SageMakerProcessingJobVpcConfig = {
181692
+ /**
181693
+ * The VPC security group IDs, in the form 'sg-xxxxxxxx'. Specify the security groups for the VPC that is specified in the 'Subnets' field.
181694
+ * @minLength `1`
181695
+ * @maxLength `5`
181696
+ */
181697
+ SecurityGroupIds: string[];
181698
+ /**
181699
+ * The ID of the subnets in the VPC to which you want to connect your training job or model. For information about the availability of specific instance types, see https://docs.aws.amazon.com/sagemaker/latest/dg/regions-quotas.html
181700
+ * @minLength `1`
181701
+ * @maxLength `16`
181702
+ */
181703
+ Subnets: string[];
181704
+ };
180064
181705
  /**
180065
181706
  * Resource Type definition for AWS::SageMaker::Project
180066
181707
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sagemaker-project.html}
@@ -188773,7 +190414,7 @@ export type SSMMaintenanceWindowTaskTaskInvocationParameters = {
188773
190414
  /**
188774
190415
  * The ``AWS::SSM::Parameter`` resource creates an SSM parameter in SYSlong Parameter Store.
188775
190416
  To create an SSM parameter, you must have the IAMlong (IAM) permissions ``ssm:PutParameter`` and ``ssm:AddTagsToResource``. On stack creation, CFNlong adds the following three tags to the parameter: ``aws:cloudformation:stack-name``, ``aws:cloudformation:logical-id``, and ``aws:cloudformation:stack-id``, in addition to any custom tags you specify.
188776
- To add, update, or remove tags during stack update, you must have IAM permissions for both ``ssm:AddTagsToResource`` and ``ssm:RemoveTagsFromResource``. For more information, see [Managing Access Using Policies](https://docs.aws.amazon.com/systems-manager/latest/userguide/security-iam.html#security_iam_access-manage) in the *User Guide*.
190417
+ To add, update, or remove tags during stack update, you must have IAM permissions for both ``ssm:AddTagsToResource`` and ``ssm:RemoveTagsFromResource``. For more information, see [Managing access using policies](https://docs.aws.amazon.com/systems-manager/latest/userguide/security-iam.html#security_iam_access-manage) in the *User Guide*.
188777
190418
  For information about valid values for parameters, see [About requirements and constraints for parameter names](https://docs.aws.amazon.com/systems-manager/latest/userguide/sysman-paramstore-su-create.html#sysman-parameter-name-constraints) in the *User Guide* and [PutParameter](https://docs.aws.amazon.com/systems-manager/latest/APIReference/API_PutParameter.html) in the *API Reference*.
188778
190419
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-parameter.html}
188779
190420
  */
@@ -188792,12 +190433,13 @@ export type SSMParameterProps = {
188792
190433
  Description?: string;
188793
190434
  /**
188794
190435
  * The name of the parameter.
188795
- The maximum length constraint listed below includes capacity for additional system attributes that aren't part of the name. The maximum length for a parameter name, including the full length of the parameter Amazon Resource Name (ARN), is 1011 characters. For example, the length of the following parameter name is 65 characters, not 20 characters: ``arn:aws:ssm:us-east-2:111222333444:parameter/ExampleParameterName``
190436
+ The reported maximum length of 2048 characters for a parameter name includes 1037 characters that are reserved for internal use by SYS. The maximum length for a parameter name that you specify is 1011 characters.
190437
+ This count of 1011 characters includes the characters in the ARN that precede the name you specify. This ARN length will vary depending on your partition and Region. For example, the following 45 characters count toward the 1011 character maximum for a parameter created in the US East (Ohio) Region: ``arn:aws:ssm:us-east-2:111122223333:parameter/``.
188796
190438
  */
188797
190439
  Name?: string;
188798
190440
  /**
188799
190441
  * Information about the policies assigned to a parameter.
188800
- [Assigning parameter policies](https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html) in the *User Guide*.
190442
+ [Assigning parameter policies](https://docs.aws.amazon.com/systems-manager/latest/userguide/parameter-store-policies.html) in the *User Guide*.
188801
190443
  */
188802
190444
  Policies?: string;
188803
190445
  /**
@@ -188809,8 +190451,9 @@ export type SSMParameterProps = {
188809
190451
  */
188810
190452
  Tier?: "Standard" | "Advanced" | "Intelligent-Tiering";
188811
190453
  /**
188812
- * The type of parameter.
188813
- */
190454
+ * The type of parameter.
190455
+ Parameters of type ``SecureString`` are not supported by CFNlong.
190456
+ */
188814
190457
  Type: "String" | "StringList";
188815
190458
  /**
188816
190459
  * The parameter value.
@@ -202235,6 +203878,7 @@ export interface ResourceTypes {
202235
203878
  "AWS::APS::RuleGroupsNamespace": APSRuleGroupsNamespaceProps;
202236
203879
  "AWS::APS::Scraper": APSScraperProps;
202237
203880
  "AWS::APS::Workspace": APSWorkspaceProps;
203881
+ "AWS::ARCRegionSwitch::Plan": ARCRegionSwitchPlanProps;
202238
203882
  "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus": ARCZonalShiftAutoshiftObserverNotificationStatusProps;
202239
203883
  "AWS::ARCZonalShift::ZonalAutoshiftConfiguration": ARCZonalShiftZonalAutoshiftConfigurationProps;
202240
203884
  "AWS::Athena::CapacityReservation": AthenaCapacityReservationProps;
@@ -202597,6 +204241,7 @@ export interface ResourceTypes {
202597
204241
  "AWS::EC2::TransitGateway": EC2TransitGatewayProps;
202598
204242
  "AWS::EC2::TransitGatewayAttachment": EC2TransitGatewayAttachmentProps;
202599
204243
  "AWS::EC2::TransitGatewayConnect": EC2TransitGatewayConnectProps;
204244
+ "AWS::EC2::TransitGatewayConnectPeer": EC2TransitGatewayConnectPeerProps;
202600
204245
  "AWS::EC2::TransitGatewayMulticastDomain": EC2TransitGatewayMulticastDomainProps;
202601
204246
  "AWS::EC2::TransitGatewayMulticastDomainAssociation": EC2TransitGatewayMulticastDomainAssociationProps;
202602
204247
  "AWS::EC2::TransitGatewayMulticastGroupMember": EC2TransitGatewayMulticastGroupMemberProps;
@@ -202878,6 +204523,7 @@ export interface ResourceTypes {
202878
204523
  "AWS::IoTSiteWise::AccessPolicy": IoTSiteWiseAccessPolicyProps;
202879
204524
  "AWS::IoTSiteWise::Asset": IoTSiteWiseAssetProps;
202880
204525
  "AWS::IoTSiteWise::AssetModel": IoTSiteWiseAssetModelProps;
204526
+ "AWS::IoTSiteWise::ComputationModel": IoTSiteWiseComputationModelProps;
202881
204527
  "AWS::IoTSiteWise::Dashboard": IoTSiteWiseDashboardProps;
202882
204528
  "AWS::IoTSiteWise::Dataset": IoTSiteWiseDatasetProps;
202883
204529
  "AWS::IoTSiteWise::Gateway": IoTSiteWiseGatewayProps;
@@ -203341,6 +204987,7 @@ export interface ResourceTypes {
203341
204987
  "AWS::SageMaker::NotebookInstanceLifecycleConfig": SageMakerNotebookInstanceLifecycleConfigProps;
203342
204988
  "AWS::SageMaker::PartnerApp": SageMakerPartnerAppProps;
203343
204989
  "AWS::SageMaker::Pipeline": SageMakerPipelineProps;
204990
+ "AWS::SageMaker::ProcessingJob": SageMakerProcessingJobProps;
203344
204991
  "AWS::SageMaker::Project": SageMakerProjectProps;
203345
204992
  "AWS::SageMaker::Space": SageMakerSpaceProps;
203346
204993
  "AWS::SageMaker::StudioLifecycleConfig": SageMakerStudioLifecycleConfigProps;
@@ -203652,6 +205299,7 @@ export interface AttributeTypes {
203652
205299
  "AWS::APS::RuleGroupsNamespace": APSRuleGroupsNamespaceAttributes;
203653
205300
  "AWS::APS::Scraper": APSScraperAttributes;
203654
205301
  "AWS::APS::Workspace": APSWorkspaceAttributes;
205302
+ "AWS::ARCRegionSwitch::Plan": ARCRegionSwitchPlanAttributes;
203655
205303
  "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus": ARCZonalShiftAutoshiftObserverNotificationStatusAttributes;
203656
205304
  "AWS::Athena::CapacityReservation": AthenaCapacityReservationAttributes;
203657
205305
  "AWS::Athena::NamedQuery": AthenaNamedQueryAttributes;
@@ -203972,6 +205620,7 @@ export interface AttributeTypes {
203972
205620
  "AWS::EC2::TransitGateway": EC2TransitGatewayAttributes;
203973
205621
  "AWS::EC2::TransitGatewayAttachment": EC2TransitGatewayAttachmentAttributes;
203974
205622
  "AWS::EC2::TransitGatewayConnect": EC2TransitGatewayConnectAttributes;
205623
+ "AWS::EC2::TransitGatewayConnectPeer": EC2TransitGatewayConnectPeerAttributes;
203975
205624
  "AWS::EC2::TransitGatewayMulticastDomain": EC2TransitGatewayMulticastDomainAttributes;
203976
205625
  "AWS::EC2::TransitGatewayMulticastDomainAssociation": EC2TransitGatewayMulticastDomainAssociationAttributes;
203977
205626
  "AWS::EC2::TransitGatewayMulticastGroupMember": EC2TransitGatewayMulticastGroupMemberAttributes;
@@ -204217,6 +205866,7 @@ export interface AttributeTypes {
204217
205866
  "AWS::IoTSiteWise::AccessPolicy": IoTSiteWiseAccessPolicyAttributes;
204218
205867
  "AWS::IoTSiteWise::Asset": IoTSiteWiseAssetAttributes;
204219
205868
  "AWS::IoTSiteWise::AssetModel": IoTSiteWiseAssetModelAttributes;
205869
+ "AWS::IoTSiteWise::ComputationModel": IoTSiteWiseComputationModelAttributes;
204220
205870
  "AWS::IoTSiteWise::Dashboard": IoTSiteWiseDashboardAttributes;
204221
205871
  "AWS::IoTSiteWise::Dataset": IoTSiteWiseDatasetAttributes;
204222
205872
  "AWS::IoTSiteWise::Gateway": IoTSiteWiseGatewayAttributes;
@@ -204627,6 +206277,7 @@ export interface AttributeTypes {
204627
206277
  "AWS::SageMaker::NotebookInstance": SageMakerNotebookInstanceAttributes;
204628
206278
  "AWS::SageMaker::NotebookInstanceLifecycleConfig": SageMakerNotebookInstanceLifecycleConfigAttributes;
204629
206279
  "AWS::SageMaker::PartnerApp": SageMakerPartnerAppAttributes;
206280
+ "AWS::SageMaker::ProcessingJob": SageMakerProcessingJobAttributes;
204630
206281
  "AWS::SageMaker::Project": SageMakerProjectAttributes;
204631
206282
  "AWS::SageMaker::Space": SageMakerSpaceAttributes;
204632
206283
  "AWS::SageMaker::StudioLifecycleConfig": SageMakerStudioLifecycleConfigAttributes;
@@ -204926,6 +206577,7 @@ export declare const ResourceType: {
204926
206577
  readonly APSRuleGroupsNamespace: "AWS::APS::RuleGroupsNamespace";
204927
206578
  readonly APSScraper: "AWS::APS::Scraper";
204928
206579
  readonly APSWorkspace: "AWS::APS::Workspace";
206580
+ readonly ARCRegionSwitchPlan: "AWS::ARCRegionSwitch::Plan";
204929
206581
  readonly ARCZonalShiftAutoshiftObserverNotificationStatus: "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus";
204930
206582
  readonly ARCZonalShiftZonalAutoshiftConfiguration: "AWS::ARCZonalShift::ZonalAutoshiftConfiguration";
204931
206583
  readonly AthenaCapacityReservation: "AWS::Athena::CapacityReservation";
@@ -205288,6 +206940,7 @@ export declare const ResourceType: {
205288
206940
  readonly EC2TransitGateway: "AWS::EC2::TransitGateway";
205289
206941
  readonly EC2TransitGatewayAttachment: "AWS::EC2::TransitGatewayAttachment";
205290
206942
  readonly EC2TransitGatewayConnect: "AWS::EC2::TransitGatewayConnect";
206943
+ readonly EC2TransitGatewayConnectPeer: "AWS::EC2::TransitGatewayConnectPeer";
205291
206944
  readonly EC2TransitGatewayMulticastDomain: "AWS::EC2::TransitGatewayMulticastDomain";
205292
206945
  readonly EC2TransitGatewayMulticastDomainAssociation: "AWS::EC2::TransitGatewayMulticastDomainAssociation";
205293
206946
  readonly EC2TransitGatewayMulticastGroupMember: "AWS::EC2::TransitGatewayMulticastGroupMember";
@@ -205569,6 +207222,7 @@ export declare const ResourceType: {
205569
207222
  readonly IoTSiteWiseAccessPolicy: "AWS::IoTSiteWise::AccessPolicy";
205570
207223
  readonly IoTSiteWiseAsset: "AWS::IoTSiteWise::Asset";
205571
207224
  readonly IoTSiteWiseAssetModel: "AWS::IoTSiteWise::AssetModel";
207225
+ readonly IoTSiteWiseComputationModel: "AWS::IoTSiteWise::ComputationModel";
205572
207226
  readonly IoTSiteWiseDashboard: "AWS::IoTSiteWise::Dashboard";
205573
207227
  readonly IoTSiteWiseDataset: "AWS::IoTSiteWise::Dataset";
205574
207228
  readonly IoTSiteWiseGateway: "AWS::IoTSiteWise::Gateway";
@@ -206032,6 +207686,7 @@ export declare const ResourceType: {
206032
207686
  readonly SageMakerNotebookInstanceLifecycleConfig: "AWS::SageMaker::NotebookInstanceLifecycleConfig";
206033
207687
  readonly SageMakerPartnerApp: "AWS::SageMaker::PartnerApp";
206034
207688
  readonly SageMakerPipeline: "AWS::SageMaker::Pipeline";
207689
+ readonly SageMakerProcessingJob: "AWS::SageMaker::ProcessingJob";
206035
207690
  readonly SageMakerProject: "AWS::SageMaker::Project";
206036
207691
  readonly SageMakerSpace: "AWS::SageMaker::Space";
206037
207692
  readonly SageMakerStudioLifecycleConfig: "AWS::SageMaker::StudioLifecycleConfig";