@awboost/cfntypes 0.100.244 → 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
|
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}
|
@@ -169858,7 +170408,7 @@ export type S3BucketProps = {
|
|
169858
170408
|
*/
|
169859
170409
|
IntelligentTieringConfigurations?: S3BucketIntelligentTieringConfiguration[];
|
169860
170410
|
/**
|
169861
|
-
* Specifies the
|
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*.
|
169862
170412
|
*/
|
169863
170413
|
InventoryConfigurations?: S3BucketInventoryConfiguration[];
|
169864
170414
|
/**
|
@@ -169869,6 +170419,9 @@ export type S3BucketProps = {
|
|
169869
170419
|
* Settings that define where logs are stored.
|
169870
170420
|
*/
|
169871
170421
|
LoggingConfiguration?: S3BucketLoggingConfiguration;
|
170422
|
+
/**
|
170423
|
+
* The S3 Metadata configuration for a general purpose bucket.
|
170424
|
+
*/
|
169872
170425
|
MetadataConfiguration?: S3BucketMetadataConfiguration;
|
169873
170426
|
/**
|
169874
170427
|
* The metadata table configuration of an S3 general purpose bucket.
|
@@ -169932,30 +170485,33 @@ export type S3BucketAttributes = {
|
|
169932
170485
|
Arn: string;
|
169933
170486
|
DomainName: string;
|
169934
170487
|
DualStackDomainName: string;
|
170488
|
+
/**
|
170489
|
+
* The S3 Metadata configuration for a general purpose bucket.
|
170490
|
+
*/
|
169935
170491
|
MetadataConfiguration: {
|
169936
170492
|
/**
|
169937
|
-
* The destination information for the
|
170493
|
+
* The destination information for the S3 Metadata configuration.
|
169938
170494
|
*/
|
169939
170495
|
Destination: {
|
169940
170496
|
/**
|
169941
|
-
* The ARN of the table bucket.
|
170497
|
+
* The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
|
169942
170498
|
*/
|
169943
170499
|
TableBucketArn: string;
|
169944
170500
|
/**
|
169945
|
-
* 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.
|
169946
170502
|
*/
|
169947
170503
|
TableBucketType: "aws" | "customer";
|
169948
170504
|
/**
|
169949
|
-
* The namespace
|
170505
|
+
* The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
|
169950
170506
|
*/
|
169951
170507
|
TableNamespace: string;
|
169952
170508
|
};
|
169953
170509
|
/**
|
169954
|
-
* The configuration for
|
170510
|
+
* The inventory table configuration for a metadata configuration.
|
169955
170511
|
*/
|
169956
170512
|
InventoryTableConfiguration: {
|
169957
170513
|
/**
|
169958
|
-
* The ARN
|
170514
|
+
* The Amazon Resource Name (ARN) for the inventory table.
|
169959
170515
|
*/
|
169960
170516
|
TableArn: string;
|
169961
170517
|
/**
|
@@ -169964,11 +170520,11 @@ export type S3BucketAttributes = {
|
|
169964
170520
|
TableName: string;
|
169965
170521
|
};
|
169966
170522
|
/**
|
169967
|
-
* The configuration for
|
170523
|
+
* The journal table configuration for a metadata configuration.
|
169968
170524
|
*/
|
169969
170525
|
JournalTableConfiguration: {
|
169970
170526
|
/**
|
169971
|
-
* The ARN
|
170527
|
+
* The Amazon Resource Name (ARN) for the journal table.
|
169972
170528
|
*/
|
169973
170529
|
TableArn: string;
|
169974
170530
|
/**
|
@@ -170257,7 +170813,7 @@ export type S3BucketIntelligentTieringConfiguration = {
|
|
170257
170813
|
};
|
170258
170814
|
/**
|
170259
170815
|
* Type definition for `AWS::S3::Bucket.InventoryConfiguration`.
|
170260
|
-
* Specifies the
|
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*.
|
170261
170817
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventoryconfiguration.html}
|
170262
170818
|
*/
|
170263
170819
|
export type S3BucketInventoryConfiguration = {
|
@@ -170292,11 +170848,12 @@ export type S3BucketInventoryConfiguration = {
|
|
170292
170848
|
};
|
170293
170849
|
/**
|
170294
170850
|
* Type definition for `AWS::S3::Bucket.InventoryTableConfiguration`.
|
170851
|
+
* The inventory table configuration for an S3 Metadata configuration.
|
170295
170852
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-inventorytableconfiguration.html}
|
170296
170853
|
*/
|
170297
170854
|
export type S3BucketInventoryTableConfiguration = {
|
170298
170855
|
/**
|
170299
|
-
*
|
170856
|
+
* The configuration state of the inventory table, indicating whether the inventory table is enabled or disabled.
|
170300
170857
|
*/
|
170301
170858
|
ConfigurationState: "ENABLED" | "DISABLED";
|
170302
170859
|
/**
|
@@ -170306,6 +170863,7 @@ export type S3BucketInventoryTableConfiguration = {
|
|
170306
170863
|
};
|
170307
170864
|
/**
|
170308
170865
|
* Type definition for `AWS::S3::Bucket.JournalTableConfiguration`.
|
170866
|
+
* The journal table configuration for an S3 Metadata configuration.
|
170309
170867
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-journaltableconfiguration.html}
|
170310
170868
|
*/
|
170311
170869
|
export type S3BucketJournalTableConfiguration = {
|
@@ -170313,6 +170871,9 @@ export type S3BucketJournalTableConfiguration = {
|
|
170313
170871
|
* The encryption configuration for the journal table.
|
170314
170872
|
*/
|
170315
170873
|
EncryptionConfiguration?: S3BucketMetadataTableEncryptionConfiguration;
|
170874
|
+
/**
|
170875
|
+
* The journal table record expiration settings for the journal table.
|
170876
|
+
*/
|
170316
170877
|
RecordExpiration: S3BucketRecordExpiration;
|
170317
170878
|
};
|
170318
170879
|
/**
|
@@ -170376,39 +170937,43 @@ export type S3BucketLoggingConfiguration = {
|
|
170376
170937
|
};
|
170377
170938
|
/**
|
170378
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*.
|
170379
170941
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadataconfiguration.html}
|
170380
170942
|
*/
|
170381
170943
|
export type S3BucketMetadataConfiguration = {
|
170382
170944
|
/**
|
170383
|
-
* The configuration for
|
170945
|
+
* The inventory table configuration for a metadata configuration.
|
170384
170946
|
*/
|
170385
170947
|
InventoryTableConfiguration?: S3BucketInventoryTableConfiguration;
|
170386
170948
|
/**
|
170387
|
-
* The configuration for
|
170949
|
+
* The journal table configuration for a metadata configuration.
|
170388
170950
|
*/
|
170389
170951
|
JournalTableConfiguration: S3BucketJournalTableConfiguration;
|
170390
170952
|
};
|
170391
170953
|
/**
|
170392
170954
|
* Type definition for `AWS::S3::Bucket.MetadataDestination`.
|
170955
|
+
* The destination information for the S3 Metadata configuration.
|
170393
170956
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatadestination.html}
|
170394
170957
|
*/
|
170395
170958
|
export type S3BucketMetadataDestination = {
|
170396
170959
|
/**
|
170397
|
-
* The ARN of the table bucket.
|
170960
|
+
* The Amazon Resource Name (ARN) of the table bucket where the metadata configuration is stored.
|
170398
170961
|
*/
|
170399
170962
|
TableBucketArn?: string;
|
170400
170963
|
/**
|
170401
|
-
* 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.
|
170402
170965
|
*/
|
170403
170966
|
TableBucketType: "aws" | "customer";
|
170404
170967
|
/**
|
170405
|
-
* The namespace
|
170968
|
+
* The namespace in the table bucket where the metadata tables for a metadata configuration are stored.
|
170406
170969
|
*/
|
170407
170970
|
TableNamespace?: string;
|
170408
170971
|
};
|
170409
170972
|
/**
|
170410
170973
|
* Type definition for `AWS::S3::Bucket.MetadataTableConfiguration`.
|
170411
|
-
*
|
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*.
|
170412
170977
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableconfiguration.html}
|
170413
170978
|
*/
|
170414
170979
|
export type S3BucketMetadataTableConfiguration = {
|
@@ -170419,15 +170984,16 @@ export type S3BucketMetadataTableConfiguration = {
|
|
170419
170984
|
};
|
170420
170985
|
/**
|
170421
170986
|
* Type definition for `AWS::S3::Bucket.MetadataTableEncryptionConfiguration`.
|
170987
|
+
* The encryption settings for an S3 Metadata journal table or inventory table configuration.
|
170422
170988
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-metadatatableencryptionconfiguration.html}
|
170423
170989
|
*/
|
170424
170990
|
export type S3BucketMetadataTableEncryptionConfiguration = {
|
170425
170991
|
/**
|
170426
|
-
*
|
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.
|
170427
170993
|
*/
|
170428
170994
|
KmsKeyArn?: string;
|
170429
170995
|
/**
|
170430
|
-
*
|
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.
|
170431
170997
|
*/
|
170432
170998
|
SseAlgorithm: "aws:kms" | "AES256";
|
170433
170999
|
};
|
@@ -170658,15 +171224,16 @@ export type S3BucketQueueConfiguration = {
|
|
170658
171224
|
};
|
170659
171225
|
/**
|
170660
171226
|
* Type definition for `AWS::S3::Bucket.RecordExpiration`.
|
171227
|
+
* The journal table record expiration settings for a journal table in an S3 Metadata configuration.
|
170661
171228
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-recordexpiration.html}
|
170662
171229
|
*/
|
170663
171230
|
export type S3BucketRecordExpiration = {
|
170664
171231
|
/**
|
170665
|
-
*
|
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``.
|
170666
171233
|
*/
|
170667
171234
|
Days?: number;
|
170668
171235
|
/**
|
170669
|
-
* Specifies whether record expiration is enabled or disabled.
|
171236
|
+
* Specifies whether journal table record expiration is enabled or disabled.
|
170670
171237
|
*/
|
170671
171238
|
Expiration: "ENABLED" | "DISABLED";
|
170672
171239
|
};
|
@@ -170775,6 +171342,7 @@ export type S3BucketReplicationDestination = {
|
|
170775
171342
|
/**
|
170776
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.
|
170777
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.
|
170778
171346
|
*/
|
170779
171347
|
StorageClass?: "DEEP_ARCHIVE" | "GLACIER" | "GLACIER_IR" | "INTELLIGENT_TIERING" | "ONEZONE_IA" | "REDUCED_REDUNDANCY" | "STANDARD" | "STANDARD_IA";
|
170780
171348
|
};
|
@@ -171017,7 +171585,7 @@ export type S3BucketS3KeyFilter = {
|
|
171017
171585
|
};
|
171018
171586
|
/**
|
171019
171587
|
* Type definition for `AWS::S3::Bucket.S3TablesDestination`.
|
171020
|
-
* The destination information for
|
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.
|
171021
171589
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-s3tablesdestination.html}
|
171022
171590
|
*/
|
171023
171591
|
export type S3BucketS3TablesDestination = {
|
@@ -171939,6 +172507,7 @@ export type S3ExpressAccessPointProps = {
|
|
171939
172507
|
* For directory buckets, you can filter access control to specific prefixes, API operations, or a combination of both.
|
171940
172508
|
*/
|
171941
172509
|
Scope?: S3ExpressAccessPointScope;
|
172510
|
+
Tags?: S3ExpressAccessPointTag[];
|
171942
172511
|
/**
|
171943
172512
|
* If you include this field, Amazon S3 restricts access to this Access Point to requests from the specified Virtual Private Cloud (VPC).
|
171944
172513
|
*/
|
@@ -171999,6 +172568,24 @@ export type S3ExpressAccessPointScope = {
|
|
171999
172568
|
*/
|
172000
172569
|
Prefixes?: string[];
|
172001
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
|
+
};
|
172002
172589
|
/**
|
172003
172590
|
* Type definition for `AWS::S3Express::AccessPoint.VpcConfiguration`.
|
172004
172591
|
* The Virtual Private Cloud (VPC) configuration for a bucket access point.
|
@@ -203291,6 +203878,7 @@ export interface ResourceTypes {
|
|
203291
203878
|
"AWS::APS::RuleGroupsNamespace": APSRuleGroupsNamespaceProps;
|
203292
203879
|
"AWS::APS::Scraper": APSScraperProps;
|
203293
203880
|
"AWS::APS::Workspace": APSWorkspaceProps;
|
203881
|
+
"AWS::ARCRegionSwitch::Plan": ARCRegionSwitchPlanProps;
|
203294
203882
|
"AWS::ARCZonalShift::AutoshiftObserverNotificationStatus": ARCZonalShiftAutoshiftObserverNotificationStatusProps;
|
203295
203883
|
"AWS::ARCZonalShift::ZonalAutoshiftConfiguration": ARCZonalShiftZonalAutoshiftConfigurationProps;
|
203296
203884
|
"AWS::Athena::CapacityReservation": AthenaCapacityReservationProps;
|
@@ -204711,6 +205299,7 @@ export interface AttributeTypes {
|
|
204711
205299
|
"AWS::APS::RuleGroupsNamespace": APSRuleGroupsNamespaceAttributes;
|
204712
205300
|
"AWS::APS::Scraper": APSScraperAttributes;
|
204713
205301
|
"AWS::APS::Workspace": APSWorkspaceAttributes;
|
205302
|
+
"AWS::ARCRegionSwitch::Plan": ARCRegionSwitchPlanAttributes;
|
204714
205303
|
"AWS::ARCZonalShift::AutoshiftObserverNotificationStatus": ARCZonalShiftAutoshiftObserverNotificationStatusAttributes;
|
204715
205304
|
"AWS::Athena::CapacityReservation": AthenaCapacityReservationAttributes;
|
204716
205305
|
"AWS::Athena::NamedQuery": AthenaNamedQueryAttributes;
|
@@ -205988,6 +206577,7 @@ export declare const ResourceType: {
|
|
205988
206577
|
readonly APSRuleGroupsNamespace: "AWS::APS::RuleGroupsNamespace";
|
205989
206578
|
readonly APSScraper: "AWS::APS::Scraper";
|
205990
206579
|
readonly APSWorkspace: "AWS::APS::Workspace";
|
206580
|
+
readonly ARCRegionSwitchPlan: "AWS::ARCRegionSwitch::Plan";
|
205991
206581
|
readonly ARCZonalShiftAutoshiftObserverNotificationStatus: "AWS::ARCZonalShift::AutoshiftObserverNotificationStatus";
|
205992
206582
|
readonly ARCZonalShiftZonalAutoshiftConfiguration: "AWS::ARCZonalShift::ZonalAutoshiftConfiguration";
|
205993
206583
|
readonly AthenaCapacityReservation: "AWS::Athena::CapacityReservation";
|