@awboost/cfntypes 0.100.46 → 0.100.48
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/resources.generated.d.ts +1259 -24
- package/lib/resources.generated.js +16 -0
- package/lib/resources.generated.js.map +1 -1
- package/package.json +1 -1
@@ -7603,6 +7603,12 @@ export type ApplicationInsightsApplicationWindowsEvent = {
|
|
7603
7603
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-servicelevelobjective.html}
|
7604
7604
|
*/
|
7605
7605
|
export type ApplicationSignalsServiceLevelObjectiveProps = {
|
7606
|
+
/**
|
7607
|
+
* Each object in this array defines the length of the look-back window used to calculate one burn rate metric for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO.
|
7608
|
+
* @minLength `0`
|
7609
|
+
* @maxLength `10`
|
7610
|
+
*/
|
7611
|
+
BurnRateConfigurations?: ApplicationSignalsServiceLevelObjectiveBurnRateConfiguration[];
|
7606
7612
|
/**
|
7607
7613
|
* An optional description for this SLO. Default is 'No description'
|
7608
7614
|
* @minLength `1`
|
@@ -7658,6 +7664,21 @@ export type ApplicationSignalsServiceLevelObjectiveAttributes = {
|
|
7658
7664
|
*/
|
7659
7665
|
LastUpdatedTime: number;
|
7660
7666
|
};
|
7667
|
+
/**
|
7668
|
+
* Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.BurnRateConfiguration`.
|
7669
|
+
* This object defines the length of the look-back window used to calculate one burn rate metric for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO. A burn rate of exactly 1 indicates that the SLO goal will be met exactly.
|
7670
|
+
For example, if you specify 60 as the number of minutes in the look-back window, the burn rate is calculated as the following:
|
7671
|
+
burn rate = error rate over the look-back window / (1 - attainment goal percentage)
|
7672
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-burnrateconfiguration.html}
|
7673
|
+
*/
|
7674
|
+
export type ApplicationSignalsServiceLevelObjectiveBurnRateConfiguration = {
|
7675
|
+
/**
|
7676
|
+
* The number of minutes to use as the look-back window.
|
7677
|
+
* @min `1`
|
7678
|
+
* @max `10080`
|
7679
|
+
*/
|
7680
|
+
LookBackWindowMinutes: number;
|
7681
|
+
};
|
7661
7682
|
/**
|
7662
7683
|
* Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.CalendarInterval`.
|
7663
7684
|
* If the interval for this service level objective is a calendar interval, this structure contains the interval specifications.
|
@@ -15807,6 +15828,17 @@ export type BatchComputeEnvironmentEksConfiguration = {
|
|
15807
15828
|
export type BatchComputeEnvironmentLaunchTemplateSpecification = {
|
15808
15829
|
LaunchTemplateId?: string;
|
15809
15830
|
LaunchTemplateName?: string;
|
15831
|
+
Overrides?: BatchComputeEnvironmentLaunchTemplateSpecificationOverride[];
|
15832
|
+
Version?: string;
|
15833
|
+
};
|
15834
|
+
/**
|
15835
|
+
* Type definition for `AWS::Batch::ComputeEnvironment.LaunchTemplateSpecificationOverride`.
|
15836
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecificationoverride.html}
|
15837
|
+
*/
|
15838
|
+
export type BatchComputeEnvironmentLaunchTemplateSpecificationOverride = {
|
15839
|
+
LaunchTemplateId?: string;
|
15840
|
+
LaunchTemplateName?: string;
|
15841
|
+
TargetInstanceTypes?: string[];
|
15810
15842
|
Version?: string;
|
15811
15843
|
};
|
15812
15844
|
/**
|
@@ -23532,6 +23564,189 @@ export type CloudFormationCustomResourceProps = {
|
|
23532
23564
|
export type CloudFormationCustomResourceAttributes = {
|
23533
23565
|
Id: string;
|
23534
23566
|
};
|
23567
|
+
/**
|
23568
|
+
* Resource type definition for `AWS::CloudFormation::GuardHook`.
|
23569
|
+
* This is a CloudFormation resource for activating the first-party AWS::Hooks::GuardHook.
|
23570
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-guardhook.html}
|
23571
|
+
*/
|
23572
|
+
export type CloudFormationGuardHookProps = {
|
23573
|
+
/**
|
23574
|
+
* The typename alias for the hook.
|
23575
|
+
* @pattern `^[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
|
23576
|
+
*/
|
23577
|
+
Alias: string;
|
23578
|
+
/**
|
23579
|
+
* The execution role ARN assumed by hooks to read Guard rules from S3 and write Guard outputs to S3.
|
23580
|
+
* @maxLength `256`
|
23581
|
+
* @pattern `arn:.+:iam::[0-9]{12}:role/.+`
|
23582
|
+
*/
|
23583
|
+
ExecutionRole: string;
|
23584
|
+
/**
|
23585
|
+
* Attribute to specify CloudFormation behavior on hook failure.
|
23586
|
+
*/
|
23587
|
+
FailureMode: "FAIL" | "WARN";
|
23588
|
+
/**
|
23589
|
+
* Attribute to specify which stacks this hook applies to or should get invoked for
|
23590
|
+
*/
|
23591
|
+
HookStatus: "ENABLED" | "DISABLED";
|
23592
|
+
/**
|
23593
|
+
* S3 Bucket where the guard validate report will be uploaded to
|
23594
|
+
*/
|
23595
|
+
LogBucket?: string;
|
23596
|
+
Options?: {
|
23597
|
+
/**
|
23598
|
+
* S3 Source Location for the Guard files.
|
23599
|
+
*/
|
23600
|
+
InputParams?: CloudFormationGuardHookS3Location;
|
23601
|
+
};
|
23602
|
+
/**
|
23603
|
+
* S3 Source Location for the Guard files.
|
23604
|
+
*/
|
23605
|
+
RuleLocation: CloudFormationGuardHookS3Location;
|
23606
|
+
/**
|
23607
|
+
* Filters to allow hooks to target specific stack attributes
|
23608
|
+
*/
|
23609
|
+
StackFilters?: {
|
23610
|
+
/**
|
23611
|
+
* Attribute to specify the filtering behavior. ANY will make the Hook pass if one filter matches. ALL will make the Hook pass if all filters match
|
23612
|
+
*/
|
23613
|
+
FilteringCriteria: "ALL" | "ANY";
|
23614
|
+
/**
|
23615
|
+
* List of stack names as filters
|
23616
|
+
*/
|
23617
|
+
StackNames?: {
|
23618
|
+
/**
|
23619
|
+
* List of stack names that the hook is going to be excluded from
|
23620
|
+
* @minLength `1`
|
23621
|
+
* @maxLength `50`
|
23622
|
+
*/
|
23623
|
+
Exclude?: string[];
|
23624
|
+
/**
|
23625
|
+
* List of stack names that the hook is going to target
|
23626
|
+
* @minLength `1`
|
23627
|
+
* @maxLength `50`
|
23628
|
+
*/
|
23629
|
+
Include?: string[];
|
23630
|
+
};
|
23631
|
+
/**
|
23632
|
+
* List of stack roles that are performing the stack operations.
|
23633
|
+
*/
|
23634
|
+
StackRoles?: {
|
23635
|
+
/**
|
23636
|
+
* List of stack roles that the hook is going to be excluded from
|
23637
|
+
* @minLength `1`
|
23638
|
+
* @maxLength `50`
|
23639
|
+
*/
|
23640
|
+
Exclude?: string[];
|
23641
|
+
/**
|
23642
|
+
* List of stack roles that the hook is going to target
|
23643
|
+
* @minLength `1`
|
23644
|
+
* @maxLength `50`
|
23645
|
+
*/
|
23646
|
+
Include?: string[];
|
23647
|
+
};
|
23648
|
+
};
|
23649
|
+
/**
|
23650
|
+
* Attribute to specify which targets should invoke the hook
|
23651
|
+
*/
|
23652
|
+
TargetFilters?: {
|
23653
|
+
/**
|
23654
|
+
* List of actions that the hook is going to target
|
23655
|
+
* @minLength `1`
|
23656
|
+
* @maxLength `50`
|
23657
|
+
*/
|
23658
|
+
Actions?: CloudFormationGuardHookAction[];
|
23659
|
+
/**
|
23660
|
+
* List of invocation points that the hook is going to target
|
23661
|
+
* @minLength `1`
|
23662
|
+
* @maxLength `50`
|
23663
|
+
*/
|
23664
|
+
InvocationPoints?: CloudFormationGuardHookInvocationPoint[];
|
23665
|
+
/**
|
23666
|
+
* List of type names that the hook is going to target
|
23667
|
+
* @minLength `1`
|
23668
|
+
* @maxLength `50`
|
23669
|
+
*/
|
23670
|
+
TargetNames?: string[];
|
23671
|
+
} | {
|
23672
|
+
/**
|
23673
|
+
* List of hook targets
|
23674
|
+
* @minLength `1`
|
23675
|
+
* @maxLength `50`
|
23676
|
+
*/
|
23677
|
+
Targets: CloudFormationGuardHookHookTarget[];
|
23678
|
+
};
|
23679
|
+
/**
|
23680
|
+
* Which operations should this Hook run against? Resource changes, stacks or change sets.
|
23681
|
+
*/
|
23682
|
+
TargetOperations: CloudFormationGuardHookTargetOperation[];
|
23683
|
+
};
|
23684
|
+
/**
|
23685
|
+
* Attribute type definition for `AWS::CloudFormation::GuardHook`.
|
23686
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-guardhook.html#aws-resource-cloudformation-guardhook-return-values}
|
23687
|
+
*/
|
23688
|
+
export type CloudFormationGuardHookAttributes = {
|
23689
|
+
/**
|
23690
|
+
* The Amazon Resource Name (ARN) of the activated hook
|
23691
|
+
* @pattern `^arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/hook/.+$`
|
23692
|
+
*/
|
23693
|
+
HookArn: string;
|
23694
|
+
};
|
23695
|
+
/**
|
23696
|
+
* Type definition for `AWS::CloudFormation::GuardHook.Action`.
|
23697
|
+
* Target actions are the type of operation hooks will be executed at.
|
23698
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-action.html}
|
23699
|
+
*/
|
23700
|
+
export type CloudFormationGuardHookAction = "CREATE" | "UPDATE" | "DELETE";
|
23701
|
+
/**
|
23702
|
+
* Type definition for `AWS::CloudFormation::GuardHook.HookTarget`.
|
23703
|
+
* Hook targets are the destination where hooks will be invoked against.
|
23704
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-hooktarget.html}
|
23705
|
+
*/
|
23706
|
+
export type CloudFormationGuardHookHookTarget = {
|
23707
|
+
/**
|
23708
|
+
* Target actions are the type of operation hooks will be executed at.
|
23709
|
+
*/
|
23710
|
+
Action: CloudFormationGuardHookAction;
|
23711
|
+
/**
|
23712
|
+
* Invocation points are the point in provisioning workflow where hooks will be executed.
|
23713
|
+
*/
|
23714
|
+
InvocationPoint: CloudFormationGuardHookInvocationPoint;
|
23715
|
+
/**
|
23716
|
+
* Type name of hook target. Hook targets are the destination where hooks will be invoked against.
|
23717
|
+
* @minLength `1`
|
23718
|
+
* @maxLength `256`
|
23719
|
+
* @pattern `^(?!.*\*\?).*$`
|
23720
|
+
*/
|
23721
|
+
TargetName: string;
|
23722
|
+
};
|
23723
|
+
/**
|
23724
|
+
* Type definition for `AWS::CloudFormation::GuardHook.InvocationPoint`.
|
23725
|
+
* Invocation points are the point in provisioning workflow where hooks will be executed.
|
23726
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-invocationpoint.html}
|
23727
|
+
*/
|
23728
|
+
export type CloudFormationGuardHookInvocationPoint = "PRE_PROVISION";
|
23729
|
+
/**
|
23730
|
+
* Type definition for `AWS::CloudFormation::GuardHook.S3Location`.
|
23731
|
+
* S3 Source Location for the Guard files.
|
23732
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-s3location.html}
|
23733
|
+
*/
|
23734
|
+
export type CloudFormationGuardHookS3Location = {
|
23735
|
+
/**
|
23736
|
+
* S3 uri of Guard files.
|
23737
|
+
*/
|
23738
|
+
Uri: string;
|
23739
|
+
/**
|
23740
|
+
* S3 object version
|
23741
|
+
*/
|
23742
|
+
VersionId?: string;
|
23743
|
+
};
|
23744
|
+
/**
|
23745
|
+
* Type definition for `AWS::CloudFormation::GuardHook.TargetOperation`.
|
23746
|
+
* Which operations should this Hook run against? Resource changes, stacks or change sets.
|
23747
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-targetoperation.html}
|
23748
|
+
*/
|
23749
|
+
export type CloudFormationGuardHookTargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET";
|
23535
23750
|
/**
|
23536
23751
|
* Resource type definition for `AWS::CloudFormation::HookDefaultVersion`.
|
23537
23752
|
* Set a version as default version for a hook in CloudFormation Registry.
|
@@ -23692,6 +23907,167 @@ export type CloudFormationHookVersionLoggingConfig = {
|
|
23692
23907
|
*/
|
23693
23908
|
LogRoleArn?: string;
|
23694
23909
|
};
|
23910
|
+
/**
|
23911
|
+
* Resource type definition for `AWS::CloudFormation::LambdaHook`.
|
23912
|
+
* This is a CloudFormation resource for the first-party AWS::Hooks::LambdaHook.
|
23913
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-lambdahook.html}
|
23914
|
+
*/
|
23915
|
+
export type CloudFormationLambdaHookProps = {
|
23916
|
+
/**
|
23917
|
+
* The typename alias for the hook.
|
23918
|
+
* @pattern `^[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
|
23919
|
+
*/
|
23920
|
+
Alias: string;
|
23921
|
+
/**
|
23922
|
+
* The execution role ARN assumed by Hooks to invoke Lambda.
|
23923
|
+
* @maxLength `256`
|
23924
|
+
* @pattern `arn:.+:iam::[0-9]{12}:role/.+`
|
23925
|
+
*/
|
23926
|
+
ExecutionRole: string;
|
23927
|
+
/**
|
23928
|
+
* Attribute to specify CloudFormation behavior on hook failure.
|
23929
|
+
*/
|
23930
|
+
FailureMode: "FAIL" | "WARN";
|
23931
|
+
/**
|
23932
|
+
* Attribute to specify which stacks this hook applies to or should get invoked for
|
23933
|
+
*/
|
23934
|
+
HookStatus: "ENABLED" | "DISABLED";
|
23935
|
+
/**
|
23936
|
+
* Amazon Resource Name (ARN), Partial ARN, name, version, or alias of the Lambda function to invoke with this hook.
|
23937
|
+
* @minLength `1`
|
23938
|
+
* @maxLength `170`
|
23939
|
+
* @pattern `(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?`
|
23940
|
+
*/
|
23941
|
+
LambdaFunction: string;
|
23942
|
+
/**
|
23943
|
+
* Filters to allow hooks to target specific stack attributes
|
23944
|
+
*/
|
23945
|
+
StackFilters?: {
|
23946
|
+
/**
|
23947
|
+
* Attribute to specify the filtering behavior. ANY will make the Hook pass if one filter matches. ALL will make the Hook pass if all filters match
|
23948
|
+
*/
|
23949
|
+
FilteringCriteria: "ALL" | "ANY";
|
23950
|
+
/**
|
23951
|
+
* List of stack names as filters
|
23952
|
+
*/
|
23953
|
+
StackNames?: {
|
23954
|
+
/**
|
23955
|
+
* List of stack names that the hook is going to be excluded from
|
23956
|
+
* @minLength `1`
|
23957
|
+
* @maxLength `50`
|
23958
|
+
*/
|
23959
|
+
Exclude?: string[];
|
23960
|
+
/**
|
23961
|
+
* List of stack names that the hook is going to target
|
23962
|
+
* @minLength `1`
|
23963
|
+
* @maxLength `50`
|
23964
|
+
*/
|
23965
|
+
Include?: string[];
|
23966
|
+
};
|
23967
|
+
/**
|
23968
|
+
* List of stack roles that are performing the stack operations.
|
23969
|
+
*/
|
23970
|
+
StackRoles?: {
|
23971
|
+
/**
|
23972
|
+
* List of stack roles that the hook is going to be excluded from
|
23973
|
+
* @minLength `1`
|
23974
|
+
* @maxLength `50`
|
23975
|
+
*/
|
23976
|
+
Exclude?: string[];
|
23977
|
+
/**
|
23978
|
+
* List of stack roles that the hook is going to target
|
23979
|
+
* @minLength `1`
|
23980
|
+
* @maxLength `50`
|
23981
|
+
*/
|
23982
|
+
Include?: string[];
|
23983
|
+
};
|
23984
|
+
};
|
23985
|
+
/**
|
23986
|
+
* Attribute to specify which targets should invoke the hook
|
23987
|
+
*/
|
23988
|
+
TargetFilters?: {
|
23989
|
+
/**
|
23990
|
+
* List of actions that the hook is going to target
|
23991
|
+
* @minLength `1`
|
23992
|
+
* @maxLength `50`
|
23993
|
+
*/
|
23994
|
+
Actions?: CloudFormationLambdaHookAction[];
|
23995
|
+
/**
|
23996
|
+
* List of invocation points that the hook is going to target
|
23997
|
+
* @minLength `1`
|
23998
|
+
* @maxLength `50`
|
23999
|
+
*/
|
24000
|
+
InvocationPoints?: CloudFormationLambdaHookInvocationPoint[];
|
24001
|
+
/**
|
24002
|
+
* List of type names that the hook is going to target
|
24003
|
+
* @minLength `1`
|
24004
|
+
* @maxLength `50`
|
24005
|
+
*/
|
24006
|
+
TargetNames?: string[];
|
24007
|
+
} | {
|
24008
|
+
/**
|
24009
|
+
* List of hook targets
|
24010
|
+
* @minLength `1`
|
24011
|
+
* @maxLength `50`
|
24012
|
+
*/
|
24013
|
+
Targets: CloudFormationLambdaHookHookTarget[];
|
24014
|
+
};
|
24015
|
+
/**
|
24016
|
+
* Which operations should this Hook run against? Resource changes, stacks or change sets.
|
24017
|
+
*/
|
24018
|
+
TargetOperations: CloudFormationLambdaHookTargetOperation[];
|
24019
|
+
};
|
24020
|
+
/**
|
24021
|
+
* Attribute type definition for `AWS::CloudFormation::LambdaHook`.
|
24022
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-lambdahook.html#aws-resource-cloudformation-lambdahook-return-values}
|
24023
|
+
*/
|
24024
|
+
export type CloudFormationLambdaHookAttributes = {
|
24025
|
+
/**
|
24026
|
+
* The Amazon Resource Name (ARN) of the activated hook
|
24027
|
+
* @pattern `^arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/hook/.+$`
|
24028
|
+
*/
|
24029
|
+
HookArn: string;
|
24030
|
+
};
|
24031
|
+
/**
|
24032
|
+
* Type definition for `AWS::CloudFormation::LambdaHook.Action`.
|
24033
|
+
* Target actions are the type of operation hooks will be executed at.
|
24034
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-action.html}
|
24035
|
+
*/
|
24036
|
+
export type CloudFormationLambdaHookAction = "CREATE" | "UPDATE" | "DELETE";
|
24037
|
+
/**
|
24038
|
+
* Type definition for `AWS::CloudFormation::LambdaHook.HookTarget`.
|
24039
|
+
* Hook targets are the destination where hooks will be invoked against.
|
24040
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-hooktarget.html}
|
24041
|
+
*/
|
24042
|
+
export type CloudFormationLambdaHookHookTarget = {
|
24043
|
+
/**
|
24044
|
+
* Target actions are the type of operation hooks will be executed at.
|
24045
|
+
*/
|
24046
|
+
Action: CloudFormationLambdaHookAction;
|
24047
|
+
/**
|
24048
|
+
* Invocation points are the point in provisioning workflow where hooks will be executed.
|
24049
|
+
*/
|
24050
|
+
InvocationPoint: CloudFormationLambdaHookInvocationPoint;
|
24051
|
+
/**
|
24052
|
+
* Type name of hook target. Hook targets are the destination where hooks will be invoked against.
|
24053
|
+
* @minLength `1`
|
24054
|
+
* @maxLength `256`
|
24055
|
+
* @pattern `^(?!.*\*\?).*$`
|
24056
|
+
*/
|
24057
|
+
TargetName: string;
|
24058
|
+
};
|
24059
|
+
/**
|
24060
|
+
* Type definition for `AWS::CloudFormation::LambdaHook.InvocationPoint`.
|
24061
|
+
* Invocation points are the point in provisioning workflow where hooks will be executed.
|
24062
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-invocationpoint.html}
|
24063
|
+
*/
|
24064
|
+
export type CloudFormationLambdaHookInvocationPoint = "PRE_PROVISION";
|
24065
|
+
/**
|
24066
|
+
* Type definition for `AWS::CloudFormation::LambdaHook.TargetOperation`.
|
24067
|
+
* Which operations should this Hook run against? Resource changes, stacks or change sets.
|
24068
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-targetoperation.html}
|
24069
|
+
*/
|
24070
|
+
export type CloudFormationLambdaHookTargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET";
|
23695
24071
|
/**
|
23696
24072
|
* Resource Type definition for AWS::CloudFormation::Macro
|
23697
24073
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-macro.html}
|
@@ -42703,6 +43079,7 @@ export type DynamoDBGlobalTableProps = {
|
|
42703
43079
|
StreamSpecification?: DynamoDBGlobalTableStreamSpecification;
|
42704
43080
|
TableName?: string;
|
42705
43081
|
TimeToLiveSpecification?: DynamoDBGlobalTableTimeToLiveSpecification;
|
43082
|
+
WarmThroughput?: DynamoDBGlobalTableWarmThroughput;
|
42706
43083
|
WriteOnDemandThroughputSettings?: DynamoDBGlobalTableWriteOnDemandThroughputSettings;
|
42707
43084
|
WriteProvisionedThroughputSettings?: DynamoDBGlobalTableWriteProvisionedThroughputSettings;
|
42708
43085
|
};
|
@@ -42769,6 +43146,7 @@ export type DynamoDBGlobalTableGlobalSecondaryIndex = {
|
|
42769
43146
|
*/
|
42770
43147
|
KeySchema: DynamoDBGlobalTableKeySchema[];
|
42771
43148
|
Projection: DynamoDBGlobalTableProjection;
|
43149
|
+
WarmThroughput?: DynamoDBGlobalTableWarmThroughput;
|
42772
43150
|
WriteOnDemandThroughputSettings?: DynamoDBGlobalTableWriteOnDemandThroughputSettings;
|
42773
43151
|
WriteProvisionedThroughputSettings?: DynamoDBGlobalTableWriteProvisionedThroughputSettings;
|
42774
43152
|
};
|
@@ -42948,6 +43326,20 @@ export type DynamoDBGlobalTableTimeToLiveSpecification = {
|
|
42948
43326
|
AttributeName?: string;
|
42949
43327
|
Enabled: boolean;
|
42950
43328
|
};
|
43329
|
+
/**
|
43330
|
+
* Type definition for `AWS::DynamoDB::GlobalTable.WarmThroughput`.
|
43331
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-warmthroughput.html}
|
43332
|
+
*/
|
43333
|
+
export type DynamoDBGlobalTableWarmThroughput = {
|
43334
|
+
/**
|
43335
|
+
* @min `1`
|
43336
|
+
*/
|
43337
|
+
ReadUnitsPerSecond?: number;
|
43338
|
+
/**
|
43339
|
+
* @min `1`
|
43340
|
+
*/
|
43341
|
+
WriteUnitsPerSecond?: number;
|
43342
|
+
};
|
42951
43343
|
/**
|
42952
43344
|
* Type definition for `AWS::DynamoDB::GlobalTable.WriteOnDemandThroughputSettings`.
|
42953
43345
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-writeondemandthroughputsettings.html}
|
@@ -42970,7 +43362,7 @@ export type DynamoDBGlobalTableWriteProvisionedThroughputSettings = {
|
|
42970
43362
|
You should be aware of the following behaviors when working with DDB tables:
|
42971
43363
|
+ CFNlong typically creates DDB tables in parallel. However, if your template includes multiple DDB tables with indexes, you must declare dependencies so that the tables are created sequentially. DDBlong limits the number of tables with secondary indexes that are in the creating state. If you create multiple tables with indexes at the same time, DDB returns an error and the stack operation fails. For an example, see [DynamoDB Table with a DependsOn Attribute](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html#aws-resource-dynamodb-table--examples--DynamoDB_Table_with_a_DependsOn_Attribute).
|
42972
43364
|
|
42973
|
-
Our guidance is to use the latest schema documented
|
43365
|
+
Our guidance is to use the latest schema documented for your CFNlong templates. This schema supports the provisioning of all table settings below. When using this schema in your CFNlong templates, please ensure that your Identity and Access Management (IAM) policies are updated with appropriate permissions to allow for the authorization of these setting changes.
|
42974
43366
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html}
|
42975
43367
|
*/
|
42976
43368
|
export type DynamoDBTableProps = {
|
@@ -43068,6 +43460,7 @@ export type DynamoDBTableProps = {
|
|
43068
43460
|
For detailed information about the limits in DynamoDB, see [Limits in Amazon DynamoDB](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the Amazon DynamoDB Developer Guide.
|
43069
43461
|
*/
|
43070
43462
|
TimeToLiveSpecification?: DynamoDBTableTimeToLiveSpecification;
|
43463
|
+
WarmThroughput?: DynamoDBTableWarmThroughput;
|
43071
43464
|
};
|
43072
43465
|
/**
|
43073
43466
|
* Attribute type definition for `AWS::DynamoDB::Table`.
|
@@ -43157,6 +43550,7 @@ export type DynamoDBTableGlobalSecondaryIndex = {
|
|
43157
43550
|
For current minimum and maximum provisioned throughput values, see [Service, Account, and Table Quotas](https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Limits.html) in the *Amazon DynamoDB Developer Guide*.
|
43158
43551
|
*/
|
43159
43552
|
ProvisionedThroughput?: DynamoDBTableProvisionedThroughput;
|
43553
|
+
WarmThroughput?: DynamoDBTableWarmThroughput;
|
43160
43554
|
};
|
43161
43555
|
/**
|
43162
43556
|
* Type definition for `AWS::DynamoDB::Table.ImportSourceSpecification`.
|
@@ -43435,6 +43829,20 @@ export type DynamoDBTableTimeToLiveSpecification = {
|
|
43435
43829
|
*/
|
43436
43830
|
Enabled: boolean;
|
43437
43831
|
};
|
43832
|
+
/**
|
43833
|
+
* Type definition for `AWS::DynamoDB::Table.WarmThroughput`.
|
43834
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-warmthroughput.html}
|
43835
|
+
*/
|
43836
|
+
export type DynamoDBTableWarmThroughput = {
|
43837
|
+
/**
|
43838
|
+
* @min `1`
|
43839
|
+
*/
|
43840
|
+
ReadUnitsPerSecond?: number;
|
43841
|
+
/**
|
43842
|
+
* @min `1`
|
43843
|
+
*/
|
43844
|
+
WriteUnitsPerSecond?: number;
|
43845
|
+
};
|
43438
43846
|
/**
|
43439
43847
|
* Resource Type definition for AWS::EC2::CapacityReservation
|
43440
43848
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html}
|
@@ -52248,7 +52656,7 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
|
|
52248
52656
|
*/
|
52249
52657
|
EncryptionType: ECRRepositoryCreationTemplateEncryptionType;
|
52250
52658
|
/**
|
52251
|
-
* If you use the KMS encryption type, specify the CMK to use for encryption. The alias, key ID, or full ARN of the CMK can be specified. The key must exist in the same Region as the repository. If no key is specified, the default AWS managed CMK for Amazon ECR will be used.
|
52659
|
+
* If you use the KMS or KMS_DSSE encryption type, specify the CMK to use for encryption. The alias, key ID, or full ARN of the CMK can be specified. The key must exist in the same Region as the repository. If no key is specified, the default AWS managed CMK for Amazon ECR will be used.
|
52252
52660
|
* @minLength `1`
|
52253
52661
|
* @maxLength `2048`
|
52254
52662
|
*/
|
@@ -52259,7 +52667,7 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
|
|
52259
52667
|
* The encryption type to use.
|
52260
52668
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptiontype.html}
|
52261
52669
|
*/
|
52262
|
-
export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS";
|
52670
|
+
export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
52263
52671
|
/**
|
52264
52672
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
|
52265
52673
|
* An array of key-value pairs to apply to this resource.
|
@@ -53545,7 +53953,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53545
53953
|
DockerSecurityOptions?: string[];
|
53546
53954
|
/**
|
53547
53955
|
* Early versions of the Amazon ECS container agent don't properly handle ``entryPoint`` parameters. If you have problems using ``entryPoint``, update your container agent or enter your commands and arguments as ``command`` array items instead.
|
53548
|
-
The entry point that's passed to the container. This parameter maps to ``Entrypoint`` in
|
53956
|
+
The entry point that's passed to the container. This parameter maps to ``Entrypoint`` in the docker container create command and the ``--entrypoint`` option to docker run.
|
53549
53957
|
*/
|
53550
53958
|
EntryPoint?: string[];
|
53551
53959
|
/**
|
@@ -53578,7 +53986,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53578
53986
|
*/
|
53579
53987
|
HealthCheck?: ECSTaskDefinitionHealthCheck;
|
53580
53988
|
/**
|
53581
|
-
* The hostname to use for your container. This parameter maps to ``Hostname`` in
|
53989
|
+
* The hostname to use for your container. This parameter maps to ``Hostname`` in the docker container create command and the ``--hostname`` option to docker run.
|
53582
53990
|
The ``hostname`` parameter is not supported if you're using the ``awsvpc`` network mode.
|
53583
53991
|
*/
|
53584
53992
|
Hostname?: string;
|
@@ -53637,7 +54045,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53637
54045
|
*/
|
53638
54046
|
MountPoints?: ECSTaskDefinitionMountPoint[];
|
53639
54047
|
/**
|
53640
|
-
* The name of a container. If you're linking multiple containers together in a task definition, the ``name`` of one container can be entered in the ``links`` of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to ``name`` in
|
54048
|
+
* The name of a container. If you're linking multiple containers together in a task definition, the ``name`` of one container can be entered in the ``links`` of another container to connect the containers. Up to 255 letters (uppercase and lowercase), numbers, underscores, and hyphens are allowed. This parameter maps to ``name`` in the docker container create command and the ``--name`` option to docker run.
|
53641
54049
|
*/
|
53642
54050
|
Name: string;
|
53643
54051
|
/**
|
@@ -53654,7 +54062,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53654
54062
|
*/
|
53655
54063
|
Privileged?: boolean;
|
53656
54064
|
/**
|
53657
|
-
* When this parameter is ``true``, a TTY is allocated. This parameter maps to ``Tty`` in
|
54065
|
+
* When this parameter is ``true``, a TTY is allocated. This parameter maps to ``Tty`` in the docker container create command and the ``--tty`` option to docker run.
|
53658
54066
|
*/
|
53659
54067
|
PseudoTerminal?: boolean;
|
53660
54068
|
/**
|
@@ -53695,13 +54103,13 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53695
54103
|
+ Linux platform version ``1.3.0`` or later.
|
53696
54104
|
+ Windows platform version ``1.0.0`` or later.
|
53697
54105
|
|
53698
|
-
|
54106
|
+
For tasks that use the Fargate launch type, the max stop timeout value is 120 seconds and if the parameter is not specified, the default value of 30 seconds is used.
|
53699
54107
|
For tasks that use the EC2 launch type, if the ``stopTimeout`` parameter isn't specified, the value set for the Amazon ECS container agent configuration variable ``ECS_CONTAINER_STOP_TIMEOUT`` is used. If neither the ``stopTimeout`` parameter or the ``ECS_CONTAINER_STOP_TIMEOUT`` agent configuration variable are set, then the default values of 30 seconds for Linux containers and 30 seconds on Windows containers are used. Your container instances require at least version 1.26.0 of the container agent to use a container stop timeout value. However, we recommend using the latest container agent version. For information about checking your agent version and updating to the latest version, see [Updating the Amazon ECS Container Agent](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-agent-update.html) in the *Amazon Elastic Container Service Developer Guide*. If you're using an Amazon ECS-optimized Linux AMI, your instance needs at least version 1.26.0-1 of the ``ecs-init`` package. If your container instances are launched from version ``20190301`` or later, then they contain the required versions of the container agent and ``ecs-init``. For more information, see [Amazon ECS-optimized Linux AMI](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/ecs-optimized_AMI.html) in the *Amazon Elastic Container Service Developer Guide*.
|
53700
|
-
The valid values are 2-120 seconds.
|
54108
|
+
The valid values for Fargate are 2-120 seconds.
|
53701
54109
|
*/
|
53702
54110
|
StopTimeout?: number;
|
53703
54111
|
/**
|
53704
|
-
* A list of namespaced kernel parameters to set in the container. This parameter maps to ``Sysctls`` in
|
54112
|
+
* A list of namespaced kernel parameters to set in the container. This parameter maps to ``Sysctls`` in the docker container create command and the ``--sysctl`` option to docker run. For example, you can configure ``net.ipv4.tcp_keepalive_time`` setting to maintain longer lived connections.
|
53705
54113
|
*/
|
53706
54114
|
SystemControls?: ECSTaskDefinitionSystemControl[];
|
53707
54115
|
/**
|
@@ -53723,8 +54131,9 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53723
54131
|
This parameter is not supported for Windows containers.
|
53724
54132
|
*/
|
53725
54133
|
User?: string;
|
54134
|
+
VersionConsistency?: "enabled" | "disabled";
|
53726
54135
|
/**
|
53727
|
-
* Data volumes to mount from another container. This parameter maps to ``VolumesFrom`` in
|
54136
|
+
* Data volumes to mount from another container. This parameter maps to ``VolumesFrom`` in the docker container create command and the ``--volumes-from`` option to docker run.
|
53728
54137
|
*/
|
53729
54138
|
VolumesFrom?: ECSTaskDefinitionVolumeFrom[];
|
53730
54139
|
/**
|
@@ -53940,7 +54349,7 @@ export type ECSTaskDefinitionHealthCheck = {
|
|
53940
54349
|
``[ "CMD-SHELL", "curl -f http://localhost/ || exit 1" ]``
|
53941
54350
|
You don't include the double quotes and brackets when you use the AWS Management Console.
|
53942
54351
|
``CMD-SHELL, curl -f http://localhost/ || exit 1``
|
53943
|
-
An exit code of 0 indicates success, and non-zero exit code indicates failure. For more information, see ``HealthCheck`` in
|
54352
|
+
An exit code of 0 indicates success, and non-zero exit code indicates failure. For more information, see ``HealthCheck`` in the docker container create command
|
53944
54353
|
*/
|
53945
54354
|
Command?: string[];
|
53946
54355
|
/**
|
@@ -54048,7 +54457,7 @@ export type ECSTaskDefinitionLinuxParameters = {
|
|
54048
54457
|
*/
|
54049
54458
|
Capabilities?: ECSTaskDefinitionKernelCapabilities;
|
54050
54459
|
/**
|
54051
|
-
* Any host devices to expose to the container. This parameter maps to ``Devices`` in
|
54460
|
+
* Any host devices to expose to the container. This parameter maps to ``Devices`` in the docker container create command and the ``--device`` option to docker run.
|
54052
54461
|
If you're using tasks that use the Fargate launch type, the ``devices`` parameter isn't supported.
|
54053
54462
|
*/
|
54054
54463
|
Devices?: ECSTaskDefinitionDevice[];
|
@@ -54096,8 +54505,17 @@ export type ECSTaskDefinitionLogConfiguration = {
|
|
54096
54505
|
*/
|
54097
54506
|
LogDriver: string;
|
54098
54507
|
/**
|
54099
|
-
|
54100
|
-
|
54508
|
+
* The configuration options to send to the log driver.
|
54509
|
+
The options you can specify depend on the log driver. Some of the options you can specify when you use the ``awslogs`` log driver to route logs to Amazon CloudWatch include the following:
|
54510
|
+
+ awslogs-create-group Required: No Specify whether you want the log group to be created automatically. If this option isn't specified, it defaults to false. Your IAM policy must include the logs:CreateLogGroup permission before you attempt to use awslogs-create-group. + awslogs-region Required: Yes Specify the Region that the awslogs log driver is to send your Docker logs to. You can choose to send all of your logs from clusters in different Regions to a single region in CloudWatch Logs. This is so that they're all visible in one location. Otherwise, you can separate them by Region for more granularity. Make sure that the specified log group exists in the Region that you specify with this option. + awslogs-group Required: Yes Make sure to specify a log group that the awslogs log driver sends its log streams to. + awslogs-stream-prefix Required: Yes, when using the Fargate launch type.Optional for the EC2 launch type, required for the Fargate launch type. Use the awslogs-stream-prefix option to associate a log stream with the specified prefix, the container name, and the ID of the Amazon ECS task that the container belongs to. If you specify a prefix with this option, then the log stream takes the format prefix-name/container-name/ecs-task-id. If you don't specify a prefix with this option, then the log stream is named after the container ID that's assigned by the Docker daemon on the container instance. Because it's difficult to trace logs back to the container that sent them with just the Docker container ID (which is only available on the container instance), we recommend that you specify a prefix with this option. For Amazon ECS services, you can use the service name as the prefix. Doing so, you can trace log streams to the service that the container belongs to, the name of the container that sent them, and the ID of the task that the container belongs to. You must specify a stream-prefix for your logs to have your logs appear in the Log pane when using the Amazon ECS console. + awslogs-datetime-format Required: No This option defines a multiline start pattern in Python strftime format. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. One example of a use case for using this format is for parsing output such as a stack dump, which might otherwise be logged in multiple entries. The correct pattern allows it to be captured in a single entry. For more information, see awslogs-datetime-format. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance. + awslogs-multiline-pattern Required: No This option defines a multiline start pattern that uses a regular expression. A log message consists of a line that matches the pattern and any following lines that don’t match the pattern. The matched line is the delimiter between log messages. For more information, see awslogs-multiline-pattern. This option is ignored if awslogs-datetime-format is also configured. You cannot configure both the awslogs-datetime-format and awslogs-multiline-pattern options. Multiline logging performs regular expression parsing and matching of all log messages. This might have a negative impact on logging performance. + mode Required: No Valid values: non-blocking | blocking This option defines the delivery mode of log messages from the container to CloudWatch Logs. The delivery mode you choose affects application availability when the flow of logs from container to CloudWatch is interrupted. If you use the blocking mode and the flow of logs to CloudWatch is interrupted, calls from container code to write to the stdout and stderr streams will block. The logging thread of the application will block as a result. This may cause the application to become unresponsive and lead to container healthcheck failure. If you use the non-blocking mode, the container's logs are instead stored in an in-memory intermediate buffer configured with the max-buffer-size option. This prevents the application from becoming unresponsive when logs cannot be sent to CloudWatch. We recommend using this mode if you want to ensure service availability and are okay with some log loss. For more information, see Preventing log loss with non-blocking mode in the awslogs container log driver. + max-buffer-size Required: No Default value: 1m When non-blocking mode is used, the max-buffer-size log option controls the size of the buffer that's used for intermediate message storage. Make sure to specify an adequate buffer size based on your application. When the buffer fills up, further logs cannot be stored. Logs that cannot be stored are lost.
|
54511
|
+
To route logs using the ``splunk`` log router, you need to specify a ``splunk-token`` and a ``splunk-url``.
|
54512
|
+
When you use the ``awsfirelens`` log router to route logs to an AWS Service or AWS Partner Network destination for log storage and analytics, you can set the ``log-driver-buffer-limit`` option to limit the number of events that are buffered in memory, before being sent to the log router container. It can help to resolve potential log loss issue because high throughput might result in memory running out for the buffer inside of Docker.
|
54513
|
+
Other options you can specify when using ``awsfirelens`` to route logs depend on the destination. When you export logs to Amazon Data Firehose, you can specify the AWS Region with ``region`` and a name for the log stream with ``delivery_stream``.
|
54514
|
+
When you export logs to Amazon Kinesis Data Streams, you can specify an AWS Region with ``region`` and a data stream name with ``stream``.
|
54515
|
+
When you export logs to Amazon OpenSearch Service, you can specify options like ``Name``, ``Host`` (OpenSearch Service endpoint without protocol), ``Port``, ``Index``, ``Type``, ``Aws_auth``, ``Aws_region``, ``Suppress_Type_Name``, and ``tls``.
|
54516
|
+
When you export logs to Amazon S3, you can specify the bucket using the ``bucket`` option. You can also specify ``region``, ``total_file_size``, ``upload_timeout``, and ``use_put_object`` as options.
|
54517
|
+
This parameter requires version 1.19 of the Docker Remote API or greater on your container instance. To check the Docker Remote API version on your container instance, log in to your container instance and run the following command: ``sudo docker version --format '{{.Server.APIVersion}}'``
|
54518
|
+
*/
|
54101
54519
|
Options?: Record<string, string>;
|
54102
54520
|
/**
|
54103
54521
|
* The secrets to pass to the log configuration. For more information, see [Specifying sensitive data](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/specifying-sensitive-data.html) in the *Amazon Elastic Container Service Developer Guide*.
|
@@ -54304,7 +54722,7 @@ export type ECSTaskDefinitionSecret = {
|
|
54304
54722
|
};
|
54305
54723
|
/**
|
54306
54724
|
* Type definition for `AWS::ECS::TaskDefinition.SystemControl`.
|
54307
|
-
* A list of namespaced kernel parameters to set in the container. This parameter maps to ``Sysctls`` in
|
54725
|
+
* A list of namespaced kernel parameters to set in the container. This parameter maps to ``Sysctls`` in the docker container create command and the ``--sysctl`` option to docker run. For example, you can configure ``net.ipv4.tcp_keepalive_time`` setting to maintain longer lived connections.
|
54308
54726
|
We don't recommend that you specify network-related ``systemControls`` parameters for multiple containers in a single task that also uses either the ``awsvpc`` or ``host`` network mode. Doing this has the following disadvantages:
|
54309
54727
|
+ For tasks that use the ``awsvpc`` network mode including Fargate, if you set ``systemControls`` for any container, it applies to all containers in the task. If you set different ``systemControls`` for multiple containers in a single task, the container that's started last determines which ``systemControls`` take effect.
|
54310
54728
|
+ For tasks that use the ``host`` network mode, the network namespace ``systemControls`` aren't supported.
|
@@ -54398,7 +54816,7 @@ export type ECSTaskDefinitionTmpfs = {
|
|
54398
54816
|
*/
|
54399
54817
|
export type ECSTaskDefinitionUlimit = {
|
54400
54818
|
/**
|
54401
|
-
* The hard limit for the ``ulimit`` type.
|
54819
|
+
* The hard limit for the ``ulimit`` type. The value can be specified in bytes, seconds, or as a count, depending on the ``type`` of the ``ulimit``.
|
54402
54820
|
*/
|
54403
54821
|
HardLimit: number;
|
54404
54822
|
/**
|
@@ -54406,7 +54824,7 @@ export type ECSTaskDefinitionUlimit = {
|
|
54406
54824
|
*/
|
54407
54825
|
Name: string;
|
54408
54826
|
/**
|
54409
|
-
* The soft limit for the ``ulimit`` type.
|
54827
|
+
* The soft limit for the ``ulimit`` type. The value can be specified in bytes, seconds, or as a count, depending on the ``type`` of the ``ulimit``.
|
54410
54828
|
*/
|
54411
54829
|
SoftLimit: number;
|
54412
54830
|
};
|
@@ -62191,6 +62609,7 @@ export type FISExperimentTemplateProps = {
|
|
62191
62609
|
*/
|
62192
62610
|
Description: string;
|
62193
62611
|
ExperimentOptions?: FISExperimentTemplateExperimentTemplateExperimentOptions;
|
62612
|
+
ExperimentReportConfiguration?: FISExperimentTemplateExperimentTemplateExperimentReportConfiguration;
|
62194
62613
|
LogConfiguration?: FISExperimentTemplateExperimentTemplateLogConfiguration;
|
62195
62614
|
/**
|
62196
62615
|
* The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf.
|
@@ -62214,6 +62633,17 @@ export type FISExperimentTemplateProps = {
|
|
62214
62633
|
export type FISExperimentTemplateAttributes = {
|
62215
62634
|
Id: string;
|
62216
62635
|
};
|
62636
|
+
/**
|
62637
|
+
* Type definition for `AWS::FIS::ExperimentTemplate.CloudWatchDashboard`.
|
62638
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-cloudwatchdashboard.html}
|
62639
|
+
*/
|
62640
|
+
export type FISExperimentTemplateCloudWatchDashboard = {
|
62641
|
+
/**
|
62642
|
+
* @minLength `1`
|
62643
|
+
* @maxLength `512`
|
62644
|
+
*/
|
62645
|
+
DashboardIdentifier: string;
|
62646
|
+
};
|
62217
62647
|
/**
|
62218
62648
|
* Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateAction`.
|
62219
62649
|
* Specifies an action for the experiment template.
|
@@ -62263,6 +62693,31 @@ export type FISExperimentTemplateExperimentTemplateExperimentOptions = {
|
|
62263
62693
|
*/
|
62264
62694
|
EmptyTargetResolutionMode?: "fail" | "skip";
|
62265
62695
|
};
|
62696
|
+
/**
|
62697
|
+
* Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentReportConfiguration`.
|
62698
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-experimenttemplateexperimentreportconfiguration.html}
|
62699
|
+
*/
|
62700
|
+
export type FISExperimentTemplateExperimentTemplateExperimentReportConfiguration = {
|
62701
|
+
DataSources: {
|
62702
|
+
CloudWatchDashboards?: FISExperimentTemplateCloudWatchDashboard[];
|
62703
|
+
};
|
62704
|
+
Outputs: {
|
62705
|
+
ExperimentReportS3Configuration: {
|
62706
|
+
/**
|
62707
|
+
* @minLength `3`
|
62708
|
+
* @maxLength `63`
|
62709
|
+
*/
|
62710
|
+
BucketName: string;
|
62711
|
+
/**
|
62712
|
+
* @minLength `1`
|
62713
|
+
* @maxLength `1024`
|
62714
|
+
*/
|
62715
|
+
Prefix?: string;
|
62716
|
+
};
|
62717
|
+
};
|
62718
|
+
PostExperimentDuration?: string;
|
62719
|
+
PreExperimentDuration?: string;
|
62720
|
+
};
|
62266
62721
|
/**
|
62267
62722
|
* Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateLogConfiguration`.
|
62268
62723
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-experimenttemplatelogconfiguration.html}
|
@@ -64328,11 +64783,412 @@ export type GameLiftBuildStorageLocation = {
|
|
64328
64783
|
*/
|
64329
64784
|
RoleArn: string;
|
64330
64785
|
};
|
64786
|
+
/**
|
64787
|
+
* The AWS::GameLift::ContainerFleet resource creates an Amazon GameLift (GameLift) container fleet to host game servers.
|
64788
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containerfleet.html}
|
64789
|
+
*/
|
64790
|
+
export type GameLiftContainerFleetProps = {
|
64791
|
+
/**
|
64792
|
+
* Indicates whether to use On-Demand instances or Spot instances for this fleet. If empty, the default is ON_DEMAND. Both categories of instances use identical hardware and configurations based on the instance type selected for this fleet.
|
64793
|
+
*/
|
64794
|
+
BillingType?: "ON_DEMAND" | "SPOT";
|
64795
|
+
/**
|
64796
|
+
* Provides details about how to drain old tasks and replace them with new updated tasks.
|
64797
|
+
*/
|
64798
|
+
DeploymentConfiguration?: GameLiftContainerFleetDeploymentConfiguration;
|
64799
|
+
/**
|
64800
|
+
* A human-readable description of a fleet.
|
64801
|
+
* @minLength `1`
|
64802
|
+
* @maxLength `1024`
|
64803
|
+
*/
|
64804
|
+
Description?: string;
|
64805
|
+
/**
|
64806
|
+
* A unique identifier for an AWS IAM role that manages access to your AWS services. Create a role or look up a role's ARN from the IAM dashboard in the AWS Management Console.
|
64807
|
+
* @minLength `1`
|
64808
|
+
* @maxLength `256`
|
64809
|
+
* @pattern `^arn:aws(-.*)?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
|
64810
|
+
*/
|
64811
|
+
FleetRoleArn: string;
|
64812
|
+
/**
|
64813
|
+
* The name of the container group definition that will be created per game server. You must specify GAME_SERVER container group. You have the option to also specify one PER_INSTANCE container group.
|
64814
|
+
* @minLength `1`
|
64815
|
+
* @maxLength `512`
|
64816
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$`
|
64817
|
+
*/
|
64818
|
+
GameServerContainerGroupDefinitionName?: string;
|
64819
|
+
/**
|
64820
|
+
* The number of desired game server container groups per instance, a number between 1-5000.
|
64821
|
+
* @min `1`
|
64822
|
+
* @max `5000`
|
64823
|
+
*/
|
64824
|
+
GameServerContainerGroupsPerInstance?: number;
|
64825
|
+
/**
|
64826
|
+
* A policy that limits the number of game sessions an individual player can create over a span of time for this fleet.
|
64827
|
+
*/
|
64828
|
+
GameSessionCreationLimitPolicy?: GameLiftContainerFleetGameSessionCreationLimitPolicy;
|
64829
|
+
/**
|
64830
|
+
* Defines the range of ports on the instance that allow inbound traffic to connect with containers in a fleet.
|
64831
|
+
*/
|
64832
|
+
InstanceConnectionPortRange?: GameLiftContainerFleetConnectionPortRange;
|
64833
|
+
/**
|
64834
|
+
* A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an Amazon GameLift server.
|
64835
|
+
* @maxLength `50`
|
64836
|
+
*/
|
64837
|
+
InstanceInboundPermissions?: GameLiftContainerFleetIpPermission[];
|
64838
|
+
/**
|
64839
|
+
* The name of an EC2 instance type that is supported in Amazon GameLift. A fleet instance type determines the computing resources of each instance in the fleet, including CPU, memory, storage, and networking capacity. Amazon GameLift supports the following EC2 instance types. See Amazon EC2 Instance Types for detailed descriptions.
|
64840
|
+
* @minLength `1`
|
64841
|
+
* @maxLength `1024`
|
64842
|
+
*/
|
64843
|
+
InstanceType?: string;
|
64844
|
+
/**
|
64845
|
+
* @maxLength `100`
|
64846
|
+
*/
|
64847
|
+
Locations?: GameLiftContainerFleetLocationConfiguration[];
|
64848
|
+
/**
|
64849
|
+
* A policy the location and provider of logs from the fleet.
|
64850
|
+
*/
|
64851
|
+
LogConfiguration?: GameLiftContainerFleetLogConfiguration;
|
64852
|
+
/**
|
64853
|
+
* The name of an Amazon CloudWatch metric group. A metric group aggregates the metrics for all fleets in the group. Specify a string containing the metric group name. You can use an existing name or use a new name to create a new metric group. Currently, this parameter can have only one string.
|
64854
|
+
* @maxLength `1`
|
64855
|
+
*/
|
64856
|
+
MetricGroups?: string[];
|
64857
|
+
/**
|
64858
|
+
* A game session protection policy to apply to all game sessions hosted on instances in this fleet. When protected, active game sessions cannot be terminated during a scale-down event. If this parameter is not set, instances in this fleet default to no protection. You can change a fleet's protection policy to affect future game sessions on the fleet. You can also set protection for individual game sessions.
|
64859
|
+
*/
|
64860
|
+
NewGameSessionProtectionPolicy?: "FullProtection" | "NoProtection";
|
64861
|
+
/**
|
64862
|
+
* The name of the container group definition that will be created per instance. This field is optional if you specify GameServerContainerGroupDefinitionName.
|
64863
|
+
* @minLength `1`
|
64864
|
+
* @maxLength `512`
|
64865
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$`
|
64866
|
+
*/
|
64867
|
+
PerInstanceContainerGroupDefinitionName?: string;
|
64868
|
+
/**
|
64869
|
+
* A list of rules that control how a fleet is scaled.
|
64870
|
+
* @maxLength `50`
|
64871
|
+
*/
|
64872
|
+
ScalingPolicies?: GameLiftContainerFleetScalingPolicy[];
|
64873
|
+
/**
|
64874
|
+
* An array of key-value pairs to apply to this resource.
|
64875
|
+
* @maxLength `200`
|
64876
|
+
*/
|
64877
|
+
Tags?: GameLiftContainerFleetTag[];
|
64878
|
+
};
|
64879
|
+
/**
|
64880
|
+
* Attribute type definition for `AWS::GameLift::ContainerFleet`.
|
64881
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containerfleet.html#aws-resource-gamelift-containerfleet-return-values}
|
64882
|
+
*/
|
64883
|
+
export type GameLiftContainerFleetAttributes = {
|
64884
|
+
/**
|
64885
|
+
* A time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").
|
64886
|
+
*/
|
64887
|
+
CreationTime: string;
|
64888
|
+
/**
|
64889
|
+
* Provides information about the last deployment ID and its status.
|
64890
|
+
*/
|
64891
|
+
DeploymentDetails: {
|
64892
|
+
/**
|
64893
|
+
* The ID of the last deployment on the container fleet. This field will be empty if the container fleet does not have a ContainerGroupDefinition attached.
|
64894
|
+
* @maxLength `1024`
|
64895
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^$`
|
64896
|
+
*/
|
64897
|
+
LatestDeploymentId: string;
|
64898
|
+
};
|
64899
|
+
/**
|
64900
|
+
* The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift container fleet resource and uniquely identifies it across all AWS Regions.
|
64901
|
+
* @minLength `1`
|
64902
|
+
* @maxLength `512`
|
64903
|
+
* @pattern `^arn:.*:[a-z]*fleet\/[a-z]*fleet-[a-zA-Z0-9\-]+$`
|
64904
|
+
*/
|
64905
|
+
FleetArn: string;
|
64906
|
+
/**
|
64907
|
+
* Unique fleet ID
|
64908
|
+
* @minLength `1`
|
64909
|
+
* @maxLength `128`
|
64910
|
+
* @pattern `^[a-z]*fleet-[a-zA-Z0-9\-]+`
|
64911
|
+
*/
|
64912
|
+
FleetId: string;
|
64913
|
+
/**
|
64914
|
+
* The Amazon Resource Name (ARN) of the game server container group definition. This field will be empty if GameServerContainerGroupDefinitionName is not specified.
|
64915
|
+
* @maxLength `512`
|
64916
|
+
* @pattern `^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$|^$`
|
64917
|
+
*/
|
64918
|
+
GameServerContainerGroupDefinitionArn: string;
|
64919
|
+
/**
|
64920
|
+
* The maximum number of game server container groups per instance, a number between 1-5000.
|
64921
|
+
* @min `1`
|
64922
|
+
* @max `5000`
|
64923
|
+
*/
|
64924
|
+
MaximumGameServerContainerGroupsPerInstance: number;
|
64925
|
+
/**
|
64926
|
+
* The Amazon Resource Name (ARN) of the per instance container group definition. This field will be empty if PerInstanceContainerGroupDefinitionName is not specified.
|
64927
|
+
* @maxLength `512`
|
64928
|
+
* @pattern `^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$|^$`
|
64929
|
+
*/
|
64930
|
+
PerInstanceContainerGroupDefinitionArn: string;
|
64931
|
+
/**
|
64932
|
+
* The current status of the container fleet.
|
64933
|
+
*/
|
64934
|
+
Status: "PENDING" | "CREATING" | "CREATED" | "ACTIVATING" | "ACTIVE" | "UPDATING" | "DELETING";
|
64935
|
+
};
|
64936
|
+
/**
|
64937
|
+
* Type definition for `AWS::GameLift::ContainerFleet.ConnectionPortRange`.
|
64938
|
+
* Defines the range of ports on the instance that allow inbound traffic to connect with containers in a fleet.
|
64939
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-connectionportrange.html}
|
64940
|
+
*/
|
64941
|
+
export type GameLiftContainerFleetConnectionPortRange = {
|
64942
|
+
/**
|
64943
|
+
* A starting value for a range of allowed port numbers.
|
64944
|
+
* @min `1`
|
64945
|
+
* @max `60000`
|
64946
|
+
*/
|
64947
|
+
FromPort: number;
|
64948
|
+
/**
|
64949
|
+
* An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.
|
64950
|
+
* @min `1`
|
64951
|
+
* @max `60000`
|
64952
|
+
*/
|
64953
|
+
ToPort: number;
|
64954
|
+
};
|
64955
|
+
/**
|
64956
|
+
* Type definition for `AWS::GameLift::ContainerFleet.DeploymentConfiguration`.
|
64957
|
+
* Provides details about how to drain old tasks and replace them with new updated tasks.
|
64958
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-deploymentconfiguration.html}
|
64959
|
+
*/
|
64960
|
+
export type GameLiftContainerFleetDeploymentConfiguration = {
|
64961
|
+
/**
|
64962
|
+
* The strategy to apply in case of impairment; defaults to MAINTAIN.
|
64963
|
+
*/
|
64964
|
+
ImpairmentStrategy?: "MAINTAIN" | "ROLLBACK";
|
64965
|
+
/**
|
64966
|
+
* The minimum percentage of healthy required; defaults to 75.
|
64967
|
+
* @min `30`
|
64968
|
+
* @max `75`
|
64969
|
+
*/
|
64970
|
+
MinimumHealthyPercentage?: number;
|
64971
|
+
/**
|
64972
|
+
* The protection strategy for deployment on the container fleet; defaults to WITH_PROTECTION.
|
64973
|
+
*/
|
64974
|
+
ProtectionStrategy?: "WITH_PROTECTION" | "IGNORE_PROTECTION";
|
64975
|
+
};
|
64976
|
+
/**
|
64977
|
+
* Type definition for `AWS::GameLift::ContainerFleet.DeploymentDetails`.
|
64978
|
+
* Provides information about the last deployment ID and its status.
|
64979
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-deploymentdetails.html}
|
64980
|
+
*/
|
64981
|
+
export type GameLiftContainerFleetDeploymentDetails = {
|
64982
|
+
/**
|
64983
|
+
* The ID of the last deployment on the container fleet. This field will be empty if the container fleet does not have a ContainerGroupDefinition attached.
|
64984
|
+
* @maxLength `1024`
|
64985
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^$`
|
64986
|
+
*/
|
64987
|
+
LatestDeploymentId?: string;
|
64988
|
+
};
|
64989
|
+
/**
|
64990
|
+
* Type definition for `AWS::GameLift::ContainerFleet.GameSessionCreationLimitPolicy`.
|
64991
|
+
* A policy that limits the number of game sessions a player can create on the same fleet. This optional policy gives game owners control over how players can consume available game server resources. A resource creation policy makes the following statement: "An individual player can create a maximum number of new game sessions within a specified time period".
|
64992
|
+
|
64993
|
+
The policy is evaluated when a player tries to create a new game session. For example, assume you have a policy of 10 new game sessions and a time period of 60 minutes. On receiving a CreateGameSession request, Amazon GameLift checks that the player (identified by CreatorId) has created fewer than 10 game sessions in the past 60 minutes.
|
64994
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-gamesessioncreationlimitpolicy.html}
|
64995
|
+
*/
|
64996
|
+
export type GameLiftContainerFleetGameSessionCreationLimitPolicy = {
|
64997
|
+
/**
|
64998
|
+
* The maximum number of game sessions that an individual can create during the policy period.
|
64999
|
+
* @min `0`
|
65000
|
+
*/
|
65001
|
+
NewGameSessionsPerCreator?: number;
|
65002
|
+
/**
|
65003
|
+
* The time span used in evaluating the resource creation limit policy.
|
65004
|
+
* @min `0`
|
65005
|
+
*/
|
65006
|
+
PolicyPeriodInMinutes?: number;
|
65007
|
+
};
|
65008
|
+
/**
|
65009
|
+
* Type definition for `AWS::GameLift::ContainerFleet.IpPermission`.
|
65010
|
+
* A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an Amazon GameLift hosting resource. New game sessions that are started on the fleet are assigned an IP address/port number combination, which must fall into the fleet's allowed ranges. For fleets created with a custom game server, the ranges reflect the server's game session assignments. For Realtime Servers fleets, Amazon GameLift automatically opens two port ranges, one for TCP messaging and one for UDP, for use by the Realtime servers.
|
65011
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-ippermission.html}
|
65012
|
+
*/
|
65013
|
+
export type GameLiftContainerFleetIpPermission = {
|
65014
|
+
/**
|
65015
|
+
* A starting value for a range of allowed port numbers.
|
65016
|
+
* @min `1`
|
65017
|
+
* @max `60000`
|
65018
|
+
*/
|
65019
|
+
FromPort: number;
|
65020
|
+
/**
|
65021
|
+
* A range of allowed IP addresses. This value must be expressed in CIDR notation. Example: "000.000.000.000/[subnet mask]" or optionally the shortened version "0.0.0.0/[subnet mask]".
|
65022
|
+
* @pattern `(^(([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])\.){3}([0-9]|[1-9][0-9]|1[0-9]{2}|2[0-4][0-9]|25[0-5])(/([0-9]|[1-2][0-9]|3[0-2]))$)`
|
65023
|
+
*/
|
65024
|
+
IpRange: string;
|
65025
|
+
/**
|
65026
|
+
* The network communication protocol used by the fleet.
|
65027
|
+
*/
|
65028
|
+
Protocol: "TCP" | "UDP";
|
65029
|
+
/**
|
65030
|
+
* An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.
|
65031
|
+
* @min `1`
|
65032
|
+
* @max `60000`
|
65033
|
+
*/
|
65034
|
+
ToPort: number;
|
65035
|
+
};
|
65036
|
+
/**
|
65037
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LocationCapacity`.
|
65038
|
+
* Current resource capacity settings in a specified fleet or location. The location value might refer to a fleet's remote location or its home Region.
|
65039
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-locationcapacity.html}
|
65040
|
+
*/
|
65041
|
+
export type GameLiftContainerFleetLocationCapacity = {
|
65042
|
+
/**
|
65043
|
+
* The number of EC2 instances you want to maintain in the specified fleet location. This value must fall between the minimum and maximum size limits.
|
65044
|
+
* @min `0`
|
65045
|
+
*/
|
65046
|
+
DesiredEC2Instances: number;
|
65047
|
+
/**
|
65048
|
+
* The maximum value that is allowed for the fleet's instance count for a location.
|
65049
|
+
* @min `0`
|
65050
|
+
*/
|
65051
|
+
MaxSize: number;
|
65052
|
+
/**
|
65053
|
+
* The minimum value allowed for the fleet's instance count for a location.
|
65054
|
+
* @min `0`
|
65055
|
+
*/
|
65056
|
+
MinSize: number;
|
65057
|
+
};
|
65058
|
+
/**
|
65059
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LocationConfiguration`.
|
65060
|
+
* A remote location where a multi-location fleet can deploy EC2 instances for game hosting.
|
65061
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-locationconfiguration.html}
|
65062
|
+
*/
|
65063
|
+
export type GameLiftContainerFleetLocationConfiguration = {
|
65064
|
+
/**
|
65065
|
+
* @minLength `1`
|
65066
|
+
* @maxLength `64`
|
65067
|
+
* @pattern `^[A-Za-z0-9\-]+`
|
65068
|
+
*/
|
65069
|
+
Location: string;
|
65070
|
+
/**
|
65071
|
+
* Current resource capacity settings in a specified fleet or location. The location value might refer to a fleet's remote location or its home Region.
|
65072
|
+
*/
|
65073
|
+
LocationCapacity?: GameLiftContainerFleetLocationCapacity;
|
65074
|
+
/**
|
65075
|
+
* A list of fleet actions that have been suspended in the fleet location.
|
65076
|
+
* @maxLength `1`
|
65077
|
+
*/
|
65078
|
+
StoppedActions?: "AUTO_SCALING"[];
|
65079
|
+
};
|
65080
|
+
/**
|
65081
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LogConfiguration`.
|
65082
|
+
* A policy the location and provider of logs from the fleet.
|
65083
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logconfiguration.html}
|
65084
|
+
*/
|
65085
|
+
export type GameLiftContainerFleetLogConfiguration = {
|
65086
|
+
/**
|
65087
|
+
* Configures the service that provides logs.
|
65088
|
+
*/
|
65089
|
+
LogDestination?: GameLiftContainerFleetLogDestination;
|
65090
|
+
/**
|
65091
|
+
* The name of the S3 bucket to pull logs from if S3 is the LogDestination
|
65092
|
+
* @minLength `1`
|
65093
|
+
* @maxLength `1024`
|
65094
|
+
*/
|
65095
|
+
S3BucketName?: string;
|
65096
|
+
};
|
65097
|
+
/**
|
65098
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LogDestination`.
|
65099
|
+
* Configures the service that provides logs.
|
65100
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logdestination.html}
|
65101
|
+
*/
|
65102
|
+
export type GameLiftContainerFleetLogDestination = "NONE" | "CLOUDWATCH" | "S3";
|
65103
|
+
/**
|
65104
|
+
* Type definition for `AWS::GameLift::ContainerFleet.ScalingPolicy`.
|
65105
|
+
* Rule that controls how a fleet is scaled. Scaling policies are uniquely identified by the combination of name and fleet ID.
|
65106
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-scalingpolicy.html}
|
65107
|
+
*/
|
65108
|
+
export type GameLiftContainerFleetScalingPolicy = {
|
65109
|
+
/**
|
65110
|
+
* Comparison operator to use when measuring a metric against the threshold value.
|
65111
|
+
*/
|
65112
|
+
ComparisonOperator?: "GreaterThanOrEqualToThreshold" | "GreaterThanThreshold" | "LessThanThreshold" | "LessThanOrEqualToThreshold";
|
65113
|
+
/**
|
65114
|
+
* Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.
|
65115
|
+
* @min `1`
|
65116
|
+
*/
|
65117
|
+
EvaluationPeriods?: number;
|
65118
|
+
/**
|
65119
|
+
* Name of the Amazon GameLift-defined metric that is used to trigger a scaling adjustment.
|
65120
|
+
*/
|
65121
|
+
MetricName: "ActivatingGameSessions" | "ActiveGameSessions" | "ActiveInstances" | "AvailableGameSessions" | "AvailablePlayerSessions" | "CurrentPlayerSessions" | "IdleInstances" | "PercentAvailableGameSessions" | "PercentIdleInstances" | "QueueDepth" | "WaitTime" | "ConcurrentActivatableGameSessions";
|
65122
|
+
/**
|
65123
|
+
* A descriptive label that is associated with a fleet's scaling policy. Policy names do not need to be unique.
|
65124
|
+
* @minLength `1`
|
65125
|
+
* @maxLength `1024`
|
65126
|
+
*/
|
65127
|
+
Name: string;
|
65128
|
+
/**
|
65129
|
+
* The type of scaling policy to create. For a target-based policy, set the parameter MetricName to 'PercentAvailableGameSessions' and specify a TargetConfiguration. For a rule-based policy set the following parameters: MetricName, ComparisonOperator, Threshold, EvaluationPeriods, ScalingAdjustmentType, and ScalingAdjustment.
|
65130
|
+
*/
|
65131
|
+
PolicyType?: "RuleBased" | "TargetBased";
|
65132
|
+
/**
|
65133
|
+
* Amount of adjustment to make, based on the scaling adjustment type.
|
65134
|
+
*/
|
65135
|
+
ScalingAdjustment?: number;
|
65136
|
+
/**
|
65137
|
+
* The type of adjustment to make to a fleet's instance count.
|
65138
|
+
*/
|
65139
|
+
ScalingAdjustmentType?: "ChangeInCapacity" | "ExactCapacity" | "PercentChangeInCapacity";
|
65140
|
+
/**
|
65141
|
+
* An object that contains settings for a target-based scaling policy.
|
65142
|
+
*/
|
65143
|
+
TargetConfiguration?: GameLiftContainerFleetTargetConfiguration;
|
65144
|
+
/**
|
65145
|
+
* Metric value used to trigger a scaling event.
|
65146
|
+
*/
|
65147
|
+
Threshold?: number;
|
65148
|
+
};
|
65149
|
+
/**
|
65150
|
+
* Type definition for `AWS::GameLift::ContainerFleet.Tag`.
|
65151
|
+
* A key-value pair to associate with a resource.
|
65152
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-tag.html}
|
65153
|
+
*/
|
65154
|
+
export type GameLiftContainerFleetTag = {
|
65155
|
+
/**
|
65156
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length.
|
65157
|
+
* @minLength `1`
|
65158
|
+
* @maxLength `128`
|
65159
|
+
*/
|
65160
|
+
Key: string;
|
65161
|
+
/**
|
65162
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length.
|
65163
|
+
* @minLength `0`
|
65164
|
+
* @maxLength `256`
|
65165
|
+
*/
|
65166
|
+
Value: string;
|
65167
|
+
};
|
65168
|
+
/**
|
65169
|
+
* Type definition for `AWS::GameLift::ContainerFleet.TargetConfiguration`.
|
65170
|
+
* Settings for a target-based scaling policy. A target-based policy tracks a particular fleet metric specifies a target value for the metric. As player usage changes, the policy triggers Amazon GameLift to adjust capacity so that the metric returns to the target value. The target configuration specifies settings as needed for the target based policy, including the target value.
|
65171
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-targetconfiguration.html}
|
65172
|
+
*/
|
65173
|
+
export type GameLiftContainerFleetTargetConfiguration = {
|
65174
|
+
/**
|
65175
|
+
* Desired value to use with a target-based scaling policy. The value must be relevant for whatever metric the scaling policy is using. For example, in a policy using the metric PercentAvailableGameSessions, the target value should be the preferred size of the fleet's buffer (the percent of capacity that should be idle and ready for new game sessions).
|
65176
|
+
*/
|
65177
|
+
TargetValue: number;
|
65178
|
+
};
|
64331
65179
|
/**
|
64332
65180
|
* The AWS::GameLift::ContainerGroupDefinition resource creates an Amazon GameLift container group definition.
|
64333
65181
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html}
|
64334
65182
|
*/
|
64335
65183
|
export type GameLiftContainerGroupDefinitionProps = {
|
65184
|
+
/**
|
65185
|
+
* The scope of the container group
|
65186
|
+
*/
|
65187
|
+
ContainerGroupType?: "GAME_SERVER" | "PER_INSTANCE";
|
65188
|
+
/**
|
65189
|
+
* Specifies the information required to run game servers with this container group
|
65190
|
+
*/
|
65191
|
+
GameServerContainerDefinition?: GameLiftContainerGroupDefinitionGameServerContainerDefinition;
|
64336
65192
|
/**
|
64337
65193
|
* A descriptive label for the container group definition.
|
64338
65194
|
* @minLength `1`
|
@@ -64354,13 +65210,31 @@ export type GameLiftContainerGroupDefinitionProps = {
|
|
64354
65210
|
* @minLength `1`
|
64355
65211
|
* @maxLength `10`
|
64356
65212
|
*/
|
64357
|
-
SupportContainerDefinitions?:
|
65213
|
+
SupportContainerDefinitions?: GameLiftContainerGroupDefinitionSupportContainerDefinition[];
|
64358
65214
|
/**
|
64359
65215
|
* An array of key-value pairs to apply to this resource.
|
64360
65216
|
* @minLength `0`
|
64361
65217
|
* @maxLength `200`
|
64362
65218
|
*/
|
64363
65219
|
Tags?: GameLiftContainerGroupDefinitionTag[];
|
65220
|
+
/**
|
65221
|
+
* The total memory limit of container groups following this definition in MiB
|
65222
|
+
* @min `4`
|
65223
|
+
* @max `1024000`
|
65224
|
+
*/
|
65225
|
+
TotalMemoryLimitMebibytes: number;
|
65226
|
+
/**
|
65227
|
+
* The total amount of virtual CPUs on the container group definition
|
65228
|
+
* @min `0.125`
|
65229
|
+
* @max `10`
|
65230
|
+
*/
|
65231
|
+
TotalVcpuLimit: number;
|
65232
|
+
/**
|
65233
|
+
* The description of this version
|
65234
|
+
* @minLength `1`
|
65235
|
+
* @maxLength `1024`
|
65236
|
+
*/
|
65237
|
+
VersionDescription?: string;
|
64364
65238
|
};
|
64365
65239
|
/**
|
64366
65240
|
* Attribute type definition for `AWS::GameLift::ContainerGroupDefinition`.
|
@@ -64371,7 +65245,7 @@ export type GameLiftContainerGroupDefinitionAttributes = {
|
|
64371
65245
|
* The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift container group resource and uniquely identifies it across all AWS Regions.
|
64372
65246
|
* @minLength `1`
|
64373
65247
|
* @maxLength `512`
|
64374
|
-
* @pattern `^arn:.*:containergroupdefinition
|
65248
|
+
* @pattern `^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$`
|
64375
65249
|
*/
|
64376
65250
|
ContainerGroupDefinitionArn: string;
|
64377
65251
|
/**
|
@@ -64386,6 +65260,270 @@ export type GameLiftContainerGroupDefinitionAttributes = {
|
|
64386
65260
|
* A string indicating the reason for ContainerGroupDefinition status.
|
64387
65261
|
*/
|
64388
65262
|
StatusReason: string;
|
65263
|
+
/**
|
65264
|
+
* The version of this ContainerGroupDefinition
|
65265
|
+
* @min `0`
|
65266
|
+
*/
|
65267
|
+
VersionNumber: number;
|
65268
|
+
};
|
65269
|
+
/**
|
65270
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerDependency`.
|
65271
|
+
* A dependency that impacts a container's startup and shutdown.
|
65272
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerdependency.html}
|
65273
|
+
*/
|
65274
|
+
export type GameLiftContainerGroupDefinitionContainerDependency = {
|
65275
|
+
/**
|
65276
|
+
* The type of dependency.
|
65277
|
+
*/
|
65278
|
+
Condition: "START" | "COMPLETE" | "SUCCESS" | "HEALTHY";
|
65279
|
+
/**
|
65280
|
+
* A descriptive label for the container definition. The container being defined depends on this container's condition.
|
65281
|
+
* @minLength `1`
|
65282
|
+
* @maxLength `128`
|
65283
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
65284
|
+
*/
|
65285
|
+
ContainerName: string;
|
65286
|
+
};
|
65287
|
+
/**
|
65288
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerEnvironment`.
|
65289
|
+
* An environment variable to set inside a container, in the form of a key-value pair.
|
65290
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerenvironment.html}
|
65291
|
+
*/
|
65292
|
+
export type GameLiftContainerGroupDefinitionContainerEnvironment = {
|
65293
|
+
/**
|
65294
|
+
* The environment variable name.
|
65295
|
+
* @minLength `1`
|
65296
|
+
* @maxLength `255`
|
65297
|
+
* @pattern `^.*$`
|
65298
|
+
*/
|
65299
|
+
Name: string;
|
65300
|
+
/**
|
65301
|
+
* The environment variable value.
|
65302
|
+
* @minLength `1`
|
65303
|
+
* @maxLength `255`
|
65304
|
+
* @pattern `^.*$`
|
65305
|
+
*/
|
65306
|
+
Value: string;
|
65307
|
+
};
|
65308
|
+
/**
|
65309
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerHealthCheck`.
|
65310
|
+
* Specifies how the process manager checks the health of containers.
|
65311
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerhealthcheck.html}
|
65312
|
+
*/
|
65313
|
+
export type GameLiftContainerGroupDefinitionContainerHealthCheck = {
|
65314
|
+
/**
|
65315
|
+
* A string array representing the command that the container runs to determine if it is healthy.
|
65316
|
+
* @minLength `1`
|
65317
|
+
* @maxLength `20`
|
65318
|
+
*/
|
65319
|
+
Command: string[];
|
65320
|
+
/**
|
65321
|
+
* How often (in seconds) the health is checked.
|
65322
|
+
* @min `60`
|
65323
|
+
* @max `300`
|
65324
|
+
*/
|
65325
|
+
Interval?: number;
|
65326
|
+
/**
|
65327
|
+
* How many times the process manager will retry the command after a timeout. (The first run of the command does not count as a retry.)
|
65328
|
+
* @min `5`
|
65329
|
+
* @max `10`
|
65330
|
+
*/
|
65331
|
+
Retries?: number;
|
65332
|
+
/**
|
65333
|
+
* The optional grace period (in seconds) to give a container time to boostrap before teh health check is declared failed.
|
65334
|
+
* @min `0`
|
65335
|
+
* @max `300`
|
65336
|
+
*/
|
65337
|
+
StartPeriod?: number;
|
65338
|
+
/**
|
65339
|
+
* How many seconds the process manager allows the command to run before canceling it.
|
65340
|
+
* @min `30`
|
65341
|
+
* @max `60`
|
65342
|
+
*/
|
65343
|
+
Timeout?: number;
|
65344
|
+
};
|
65345
|
+
/**
|
65346
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerMountPoint`.
|
65347
|
+
* Defines the mount point configuration within a container.
|
65348
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containermountpoint.html}
|
65349
|
+
*/
|
65350
|
+
export type GameLiftContainerGroupDefinitionContainerMountPoint = {
|
65351
|
+
/**
|
65352
|
+
* The access permissions for the mounted path.
|
65353
|
+
*/
|
65354
|
+
AccessLevel?: "READ_ONLY" | "READ_AND_WRITE";
|
65355
|
+
/**
|
65356
|
+
* The path inside the container where the mount is accessible.
|
65357
|
+
* @minLength `1`
|
65358
|
+
* @maxLength `1024`
|
65359
|
+
* @pattern `^(\/+[^\/]+\/*)+$`
|
65360
|
+
*/
|
65361
|
+
ContainerPath?: string;
|
65362
|
+
/**
|
65363
|
+
* The path on the host that will be mounted in the container.
|
65364
|
+
* @minLength `1`
|
65365
|
+
* @maxLength `1024`
|
65366
|
+
* @pattern `^\/[\s\S]*$`
|
65367
|
+
*/
|
65368
|
+
InstancePath: string;
|
65369
|
+
};
|
65370
|
+
/**
|
65371
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerPortRange`.
|
65372
|
+
* A set of one or more port numbers that can be opened on the container.
|
65373
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerportrange.html}
|
65374
|
+
*/
|
65375
|
+
export type GameLiftContainerGroupDefinitionContainerPortRange = {
|
65376
|
+
/**
|
65377
|
+
* A starting value for the range of allowed port numbers.
|
65378
|
+
* @min `1`
|
65379
|
+
* @max `60000`
|
65380
|
+
*/
|
65381
|
+
FromPort: number;
|
65382
|
+
/**
|
65383
|
+
* Defines the protocol of these ports.
|
65384
|
+
*/
|
65385
|
+
Protocol: "TCP" | "UDP";
|
65386
|
+
/**
|
65387
|
+
* An ending value for the range of allowed port numbers. Port numbers are end-inclusive. This value must be equal to or greater than FromPort.
|
65388
|
+
* @min `1`
|
65389
|
+
* @max `60000`
|
65390
|
+
*/
|
65391
|
+
ToPort: number;
|
65392
|
+
};
|
65393
|
+
/**
|
65394
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.GameServerContainerDefinition`.
|
65395
|
+
* Specifies the information required to run game servers with this container group
|
65396
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-gameservercontainerdefinition.html}
|
65397
|
+
*/
|
65398
|
+
export type GameLiftContainerGroupDefinitionGameServerContainerDefinition = {
|
65399
|
+
/**
|
65400
|
+
* A descriptive label for the container definition. Container definition names must be unique with a container group definition.
|
65401
|
+
* @minLength `1`
|
65402
|
+
* @maxLength `128`
|
65403
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
65404
|
+
*/
|
65405
|
+
ContainerName: string;
|
65406
|
+
/**
|
65407
|
+
* A list of container dependencies that determines when this container starts up and shuts down. For container groups with multiple containers, dependencies let you define a startup/shutdown sequence across the containers.
|
65408
|
+
* @minLength `1`
|
65409
|
+
* @maxLength `10`
|
65410
|
+
*/
|
65411
|
+
DependsOn?: GameLiftContainerGroupDefinitionContainerDependency[];
|
65412
|
+
/**
|
65413
|
+
* The environment variables to pass to a container.
|
65414
|
+
* @minLength `1`
|
65415
|
+
* @maxLength `20`
|
65416
|
+
*/
|
65417
|
+
EnvironmentOverride?: GameLiftContainerGroupDefinitionContainerEnvironment[];
|
65418
|
+
/**
|
65419
|
+
* Specifies the image URI of this container.
|
65420
|
+
* @minLength `1`
|
65421
|
+
* @maxLength `255`
|
65422
|
+
* @pattern `^[a-zA-Z0-9-_\.@\/:]+$`
|
65423
|
+
*/
|
65424
|
+
ImageUri: string;
|
65425
|
+
/**
|
65426
|
+
* A list of mount point configurations to be used in a container.
|
65427
|
+
* @minLength `1`
|
65428
|
+
* @maxLength `10`
|
65429
|
+
*/
|
65430
|
+
MountPoints?: GameLiftContainerGroupDefinitionContainerMountPoint[];
|
65431
|
+
/**
|
65432
|
+
* Defines the ports on the container.
|
65433
|
+
*/
|
65434
|
+
PortConfiguration?: GameLiftContainerGroupDefinitionPortConfiguration;
|
65435
|
+
/**
|
65436
|
+
* The digest of the container image.
|
65437
|
+
* @pattern `^sha256:[a-fA-F0-9]{64}$`
|
65438
|
+
*/
|
65439
|
+
ResolvedImageDigest?: string;
|
65440
|
+
/**
|
65441
|
+
* The version of the server SDK used in this container group
|
65442
|
+
* @maxLength `128`
|
65443
|
+
* @pattern `^\d+\.\d+\.\d+$`
|
65444
|
+
*/
|
65445
|
+
ServerSdkVersion: string;
|
65446
|
+
};
|
65447
|
+
/**
|
65448
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.PortConfiguration`.
|
65449
|
+
* Defines the ports on a container.
|
65450
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-portconfiguration.html}
|
65451
|
+
*/
|
65452
|
+
export type GameLiftContainerGroupDefinitionPortConfiguration = {
|
65453
|
+
/**
|
65454
|
+
* Specifies one or more ranges of ports on a container.
|
65455
|
+
* @minLength `1`
|
65456
|
+
* @maxLength `100`
|
65457
|
+
*/
|
65458
|
+
ContainerPortRanges: GameLiftContainerGroupDefinitionContainerPortRange[];
|
65459
|
+
};
|
65460
|
+
/**
|
65461
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.SupportContainerDefinition`.
|
65462
|
+
* Supports the function of the main container group
|
65463
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-supportcontainerdefinition.html}
|
65464
|
+
*/
|
65465
|
+
export type GameLiftContainerGroupDefinitionSupportContainerDefinition = {
|
65466
|
+
/**
|
65467
|
+
* A descriptive label for the container definition.
|
65468
|
+
* @minLength `1`
|
65469
|
+
* @maxLength `128`
|
65470
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
65471
|
+
*/
|
65472
|
+
ContainerName: string;
|
65473
|
+
/**
|
65474
|
+
* A list of container dependencies that determines when this container starts up and shuts down. For container groups with multiple containers, dependencies let you define a startup/shutdown sequence across the containers.
|
65475
|
+
* @minLength `1`
|
65476
|
+
* @maxLength `10`
|
65477
|
+
*/
|
65478
|
+
DependsOn?: GameLiftContainerGroupDefinitionContainerDependency[];
|
65479
|
+
/**
|
65480
|
+
* The environment variables to pass to a container.
|
65481
|
+
* @minLength `1`
|
65482
|
+
* @maxLength `20`
|
65483
|
+
*/
|
65484
|
+
EnvironmentOverride?: GameLiftContainerGroupDefinitionContainerEnvironment[];
|
65485
|
+
/**
|
65486
|
+
* Specifies if the container is essential. If an essential container fails a health check, then all containers in the container group will be restarted. You must specify exactly 1 essential container in a container group.
|
65487
|
+
*/
|
65488
|
+
Essential?: boolean;
|
65489
|
+
/**
|
65490
|
+
* Specifies how the health of the containers will be checked.
|
65491
|
+
*/
|
65492
|
+
HealthCheck?: GameLiftContainerGroupDefinitionContainerHealthCheck;
|
65493
|
+
/**
|
65494
|
+
* Specifies the image URI of this container.
|
65495
|
+
* @minLength `1`
|
65496
|
+
* @maxLength `255`
|
65497
|
+
* @pattern `^[a-zA-Z0-9-_\.@\/:]+$`
|
65498
|
+
*/
|
65499
|
+
ImageUri: string;
|
65500
|
+
/**
|
65501
|
+
* The total memory limit of container groups following this definition in MiB
|
65502
|
+
* @min `4`
|
65503
|
+
* @max `1024000`
|
65504
|
+
*/
|
65505
|
+
MemoryHardLimitMebibytes?: number;
|
65506
|
+
/**
|
65507
|
+
* A list of mount point configurations to be used in a container.
|
65508
|
+
* @minLength `1`
|
65509
|
+
* @maxLength `10`
|
65510
|
+
*/
|
65511
|
+
MountPoints?: GameLiftContainerGroupDefinitionContainerMountPoint[];
|
65512
|
+
/**
|
65513
|
+
* Defines the ports on the container.
|
65514
|
+
*/
|
65515
|
+
PortConfiguration?: GameLiftContainerGroupDefinitionPortConfiguration;
|
65516
|
+
/**
|
65517
|
+
* The digest of the container image.
|
65518
|
+
* @pattern `^sha256:[a-fA-F0-9]{64}$`
|
65519
|
+
*/
|
65520
|
+
ResolvedImageDigest?: string;
|
65521
|
+
/**
|
65522
|
+
* The number of virtual CPUs to give to the support group
|
65523
|
+
* @min `0.125`
|
65524
|
+
* @max `10`
|
65525
|
+
*/
|
65526
|
+
Vcpu?: number;
|
64389
65527
|
};
|
64390
65528
|
/**
|
64391
65529
|
* Type definition for `AWS::GameLift::ContainerGroupDefinition.Tag`.
|
@@ -86012,6 +87150,7 @@ export type KinesisAnalyticsV2ApplicationReferenceDataSourceS3ReferenceDataSourc
|
|
86012
87150
|
export type KinesisFirehoseDeliveryStreamProps = {
|
86013
87151
|
AmazonOpenSearchServerlessDestinationConfiguration?: KinesisFirehoseDeliveryStreamAmazonOpenSearchServerlessDestinationConfiguration;
|
86014
87152
|
AmazonopensearchserviceDestinationConfiguration?: KinesisFirehoseDeliveryStreamAmazonopensearchserviceDestinationConfiguration;
|
87153
|
+
DatabaseSourceConfiguration?: KinesisFirehoseDeliveryStreamDatabaseSourceConfiguration;
|
86015
87154
|
DeliveryStreamEncryptionConfigurationInput?: KinesisFirehoseDeliveryStreamDeliveryStreamEncryptionConfigurationInput;
|
86016
87155
|
/**
|
86017
87156
|
* @minLength `1`
|
@@ -86019,7 +87158,7 @@ export type KinesisFirehoseDeliveryStreamProps = {
|
|
86019
87158
|
* @pattern `[a-zA-Z0-9._-]+`
|
86020
87159
|
*/
|
86021
87160
|
DeliveryStreamName?: string;
|
86022
|
-
DeliveryStreamType?: "DirectPut" | "KinesisStreamAsSource" | "MSKAsSource";
|
87161
|
+
DeliveryStreamType?: "DatabaseAsSource" | "DirectPut" | "KinesisStreamAsSource" | "MSKAsSource";
|
86023
87162
|
ElasticsearchDestinationConfiguration?: KinesisFirehoseDeliveryStreamElasticsearchDestinationConfiguration;
|
86024
87163
|
ExtendedS3DestinationConfiguration?: KinesisFirehoseDeliveryStreamExtendedS3DestinationConfiguration;
|
86025
87164
|
HttpEndpointDestinationConfiguration?: KinesisFirehoseDeliveryStreamHttpEndpointDestinationConfiguration;
|
@@ -86209,6 +87348,92 @@ export type KinesisFirehoseDeliveryStreamCopyCommand = {
|
|
86209
87348
|
*/
|
86210
87349
|
DataTableName: string;
|
86211
87350
|
};
|
87351
|
+
/**
|
87352
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseColumns`.
|
87353
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasecolumns.html}
|
87354
|
+
*/
|
87355
|
+
export type KinesisFirehoseDeliveryStreamDatabaseColumns = {
|
87356
|
+
Exclude?: string[];
|
87357
|
+
Include?: string[];
|
87358
|
+
};
|
87359
|
+
/**
|
87360
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.Databases`.
|
87361
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databases.html}
|
87362
|
+
*/
|
87363
|
+
export type KinesisFirehoseDeliveryStreamDatabases = {
|
87364
|
+
Exclude?: string[];
|
87365
|
+
Include?: string[];
|
87366
|
+
};
|
87367
|
+
/**
|
87368
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseSourceAuthenticationConfiguration`.
|
87369
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceauthenticationconfiguration.html}
|
87370
|
+
*/
|
87371
|
+
export type KinesisFirehoseDeliveryStreamDatabaseSourceAuthenticationConfiguration = {
|
87372
|
+
SecretsManagerConfiguration: KinesisFirehoseDeliveryStreamSecretsManagerConfiguration;
|
87373
|
+
};
|
87374
|
+
/**
|
87375
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseSourceConfiguration`.
|
87376
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html}
|
87377
|
+
*/
|
87378
|
+
export type KinesisFirehoseDeliveryStreamDatabaseSourceConfiguration = {
|
87379
|
+
Columns?: KinesisFirehoseDeliveryStreamDatabaseColumns;
|
87380
|
+
DatabaseSourceAuthenticationConfiguration: KinesisFirehoseDeliveryStreamDatabaseSourceAuthenticationConfiguration;
|
87381
|
+
DatabaseSourceVPCConfiguration: KinesisFirehoseDeliveryStreamDatabaseSourceVPCConfiguration;
|
87382
|
+
Databases: KinesisFirehoseDeliveryStreamDatabases;
|
87383
|
+
/**
|
87384
|
+
* @minLength `1`
|
87385
|
+
* @maxLength `512`
|
87386
|
+
* @pattern `.*`
|
87387
|
+
*/
|
87388
|
+
Digest?: string;
|
87389
|
+
/**
|
87390
|
+
* @minLength `1`
|
87391
|
+
* @maxLength `255`
|
87392
|
+
* @pattern `^(?!\s*$).+`
|
87393
|
+
*/
|
87394
|
+
Endpoint: string;
|
87395
|
+
/**
|
87396
|
+
* @min `0`
|
87397
|
+
* @max `65535`
|
87398
|
+
*/
|
87399
|
+
Port: number;
|
87400
|
+
/**
|
87401
|
+
* @minLength `1`
|
87402
|
+
* @maxLength `4096`
|
87403
|
+
* @pattern `.*`
|
87404
|
+
*/
|
87405
|
+
PublicCertificate?: string;
|
87406
|
+
SSLMode?: "Disabled" | "Enabled";
|
87407
|
+
/**
|
87408
|
+
* @minLength `1`
|
87409
|
+
* @maxLength `129`
|
87410
|
+
* @pattern `[\u0001-\uFFFF]*`
|
87411
|
+
*/
|
87412
|
+
SnapshotWatermarkTable: string;
|
87413
|
+
SurrogateKeys?: string[];
|
87414
|
+
Tables: KinesisFirehoseDeliveryStreamDatabaseTables;
|
87415
|
+
Type: "MySQL" | "PostgreSQL";
|
87416
|
+
};
|
87417
|
+
/**
|
87418
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseSourceVPCConfiguration`.
|
87419
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourcevpcconfiguration.html}
|
87420
|
+
*/
|
87421
|
+
export type KinesisFirehoseDeliveryStreamDatabaseSourceVPCConfiguration = {
|
87422
|
+
/**
|
87423
|
+
* @minLength `47`
|
87424
|
+
* @maxLength `255`
|
87425
|
+
* @pattern `([a-zA-Z0-9\-\_]+\.){2,3}vpce\.[a-zA-Z0-9\-]*\.vpce-svc\-[a-zA-Z0-9\-]{17}$`
|
87426
|
+
*/
|
87427
|
+
VpcEndpointServiceName: string;
|
87428
|
+
};
|
87429
|
+
/**
|
87430
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseTables`.
|
87431
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasetables.html}
|
87432
|
+
*/
|
87433
|
+
export type KinesisFirehoseDeliveryStreamDatabaseTables = {
|
87434
|
+
Exclude?: string[];
|
87435
|
+
Include?: string[];
|
87436
|
+
};
|
86212
87437
|
/**
|
86213
87438
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DataFormatConversionConfiguration`.
|
86214
87439
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html}
|
@@ -86715,13 +87940,13 @@ export type KinesisFirehoseDeliveryStreamSecretsManagerConfiguration = {
|
|
86715
87940
|
/**
|
86716
87941
|
* @minLength `1`
|
86717
87942
|
* @maxLength `512`
|
86718
|
-
* @pattern `arn
|
87943
|
+
* @pattern `arn:.*:iam::\d{12}:role/[a-zA-Z_0-9+=,.@\-_/]+`
|
86719
87944
|
*/
|
86720
87945
|
RoleARN?: string;
|
86721
87946
|
/**
|
86722
87947
|
* @minLength `1`
|
86723
|
-
* @maxLength `
|
86724
|
-
* @pattern `arn
|
87948
|
+
* @maxLength `2048`
|
87949
|
+
* @pattern `arn:.*:secretsmanager:[a-zA-Z0-9\-]+:\d{12}:secret:[a-zA-Z0-9\-/_+=.@]+`
|
86725
87950
|
*/
|
86726
87951
|
SecretARN?: string;
|
86727
87952
|
};
|
@@ -170876,6 +172101,7 @@ export type VpcLatticeAccessLogSubscriptionProps = {
|
|
170876
172101
|
* @pattern `^((((sn)|(svc))-[0-9a-z]{17})|(arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}))$`
|
170877
172102
|
*/
|
170878
172103
|
ResourceIdentifier?: string;
|
172104
|
+
ServiceNetworkLogType?: "SERVICE" | "RESOURCE";
|
170879
172105
|
/**
|
170880
172106
|
* @minLength `0`
|
170881
172107
|
* @maxLength `50`
|
@@ -176867,9 +178093,11 @@ export interface ResourceTypes {
|
|
176867
178093
|
"AWS::CleanRoomsML::TrainingDataset": CleanRoomsMLTrainingDatasetProps;
|
176868
178094
|
"AWS::Cloud9::EnvironmentEC2": Cloud9EnvironmentEC2Props;
|
176869
178095
|
"AWS::CloudFormation::CustomResource": CloudFormationCustomResourceProps;
|
178096
|
+
"AWS::CloudFormation::GuardHook": CloudFormationGuardHookProps;
|
176870
178097
|
"AWS::CloudFormation::HookDefaultVersion": CloudFormationHookDefaultVersionProps;
|
176871
178098
|
"AWS::CloudFormation::HookTypeConfig": CloudFormationHookTypeConfigProps;
|
176872
178099
|
"AWS::CloudFormation::HookVersion": CloudFormationHookVersionProps;
|
178100
|
+
"AWS::CloudFormation::LambdaHook": CloudFormationLambdaHookProps;
|
176873
178101
|
"AWS::CloudFormation::Macro": CloudFormationMacroProps;
|
176874
178102
|
"AWS::CloudFormation::ModuleDefaultVersion": CloudFormationModuleDefaultVersionProps;
|
176875
178103
|
"AWS::CloudFormation::ModuleVersion": CloudFormationModuleVersionProps;
|
@@ -177254,6 +178482,7 @@ export interface ResourceTypes {
|
|
177254
178482
|
"AWS::FSx::Volume": FSxVolumeProps;
|
177255
178483
|
"AWS::GameLift::Alias": GameLiftAliasProps;
|
177256
178484
|
"AWS::GameLift::Build": GameLiftBuildProps;
|
178485
|
+
"AWS::GameLift::ContainerFleet": GameLiftContainerFleetProps;
|
177257
178486
|
"AWS::GameLift::ContainerGroupDefinition": GameLiftContainerGroupDefinitionProps;
|
177258
178487
|
"AWS::GameLift::Fleet": GameLiftFleetProps;
|
177259
178488
|
"AWS::GameLift::GameServerGroup": GameLiftGameServerGroupProps;
|
@@ -178174,9 +179403,11 @@ export interface AttributeTypes {
|
|
178174
179403
|
"AWS::CleanRoomsML::TrainingDataset": CleanRoomsMLTrainingDatasetAttributes;
|
178175
179404
|
"AWS::Cloud9::EnvironmentEC2": Cloud9EnvironmentEC2Attributes;
|
178176
179405
|
"AWS::CloudFormation::CustomResource": CloudFormationCustomResourceAttributes;
|
179406
|
+
"AWS::CloudFormation::GuardHook": CloudFormationGuardHookAttributes;
|
178177
179407
|
"AWS::CloudFormation::HookDefaultVersion": CloudFormationHookDefaultVersionAttributes;
|
178178
179408
|
"AWS::CloudFormation::HookTypeConfig": CloudFormationHookTypeConfigAttributes;
|
178179
179409
|
"AWS::CloudFormation::HookVersion": CloudFormationHookVersionAttributes;
|
179410
|
+
"AWS::CloudFormation::LambdaHook": CloudFormationLambdaHookAttributes;
|
178180
179411
|
"AWS::CloudFormation::Macro": CloudFormationMacroAttributes;
|
178181
179412
|
"AWS::CloudFormation::ModuleVersion": CloudFormationModuleVersionAttributes;
|
178182
179413
|
"AWS::CloudFormation::PublicTypeVersion": CloudFormationPublicTypeVersionAttributes;
|
@@ -178513,6 +179744,7 @@ export interface AttributeTypes {
|
|
178513
179744
|
"AWS::FSx::Volume": FSxVolumeAttributes;
|
178514
179745
|
"AWS::GameLift::Alias": GameLiftAliasAttributes;
|
178515
179746
|
"AWS::GameLift::Build": GameLiftBuildAttributes;
|
179747
|
+
"AWS::GameLift::ContainerFleet": GameLiftContainerFleetAttributes;
|
178516
179748
|
"AWS::GameLift::ContainerGroupDefinition": GameLiftContainerGroupDefinitionAttributes;
|
178517
179749
|
"AWS::GameLift::Fleet": GameLiftFleetAttributes;
|
178518
179750
|
"AWS::GameLift::GameServerGroup": GameLiftGameServerGroupAttributes;
|
@@ -179373,9 +180605,11 @@ export declare const ResourceType: {
|
|
179373
180605
|
readonly CleanRoomsMLTrainingDataset: "AWS::CleanRoomsML::TrainingDataset";
|
179374
180606
|
readonly Cloud9EnvironmentEC2: "AWS::Cloud9::EnvironmentEC2";
|
179375
180607
|
readonly CloudFormationCustomResource: "AWS::CloudFormation::CustomResource";
|
180608
|
+
readonly CloudFormationGuardHook: "AWS::CloudFormation::GuardHook";
|
179376
180609
|
readonly CloudFormationHookDefaultVersion: "AWS::CloudFormation::HookDefaultVersion";
|
179377
180610
|
readonly CloudFormationHookTypeConfig: "AWS::CloudFormation::HookTypeConfig";
|
179378
180611
|
readonly CloudFormationHookVersion: "AWS::CloudFormation::HookVersion";
|
180612
|
+
readonly CloudFormationLambdaHook: "AWS::CloudFormation::LambdaHook";
|
179379
180613
|
readonly CloudFormationMacro: "AWS::CloudFormation::Macro";
|
179380
180614
|
readonly CloudFormationModuleDefaultVersion: "AWS::CloudFormation::ModuleDefaultVersion";
|
179381
180615
|
readonly CloudFormationModuleVersion: "AWS::CloudFormation::ModuleVersion";
|
@@ -179760,6 +180994,7 @@ export declare const ResourceType: {
|
|
179760
180994
|
readonly FSxVolume: "AWS::FSx::Volume";
|
179761
180995
|
readonly GameLiftAlias: "AWS::GameLift::Alias";
|
179762
180996
|
readonly GameLiftBuild: "AWS::GameLift::Build";
|
180997
|
+
readonly GameLiftContainerFleet: "AWS::GameLift::ContainerFleet";
|
179763
180998
|
readonly GameLiftContainerGroupDefinition: "AWS::GameLift::ContainerGroupDefinition";
|
179764
180999
|
readonly GameLiftFleet: "AWS::GameLift::Fleet";
|
179765
181000
|
readonly GameLiftGameServerGroup: "AWS::GameLift::GameServerGroup";
|