@awboost/cfntypes 0.100.45 → 0.100.47
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.
@@ -7139,6 +7139,13 @@ export type ApplicationInsightsApplicationProps = {
|
|
7139
7139
|
* @pattern `[a-zA-Z0-9.-_]*`
|
7140
7140
|
*/
|
7141
7141
|
ResourceGroupName: string;
|
7142
|
+
/**
|
7143
|
+
* Application Insights sends notifications to this SNS topic whenever there is a problem update in the associated application.
|
7144
|
+
* @minLength `20`
|
7145
|
+
* @maxLength `300`
|
7146
|
+
* @pattern `^arn:aws(-[\w]+)*:[\w\d-]+:([\w\d-]*)?:[\w\d_-]*([:/].+)*$`
|
7147
|
+
*/
|
7148
|
+
SNSNotificationArn?: string;
|
7142
7149
|
/**
|
7143
7150
|
* The tags of Application Insights application.
|
7144
7151
|
* @minLength `1`
|
@@ -15800,6 +15807,17 @@ export type BatchComputeEnvironmentEksConfiguration = {
|
|
15800
15807
|
export type BatchComputeEnvironmentLaunchTemplateSpecification = {
|
15801
15808
|
LaunchTemplateId?: string;
|
15802
15809
|
LaunchTemplateName?: string;
|
15810
|
+
Overrides?: BatchComputeEnvironmentLaunchTemplateSpecificationOverride[];
|
15811
|
+
Version?: string;
|
15812
|
+
};
|
15813
|
+
/**
|
15814
|
+
* Type definition for `AWS::Batch::ComputeEnvironment.LaunchTemplateSpecificationOverride`.
|
15815
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-computeenvironment-launchtemplatespecificationoverride.html}
|
15816
|
+
*/
|
15817
|
+
export type BatchComputeEnvironmentLaunchTemplateSpecificationOverride = {
|
15818
|
+
LaunchTemplateId?: string;
|
15819
|
+
LaunchTemplateName?: string;
|
15820
|
+
TargetInstanceTypes?: string[];
|
15803
15821
|
Version?: string;
|
15804
15822
|
};
|
15805
15823
|
/**
|
@@ -42696,6 +42714,7 @@ export type DynamoDBGlobalTableProps = {
|
|
42696
42714
|
StreamSpecification?: DynamoDBGlobalTableStreamSpecification;
|
42697
42715
|
TableName?: string;
|
42698
42716
|
TimeToLiveSpecification?: DynamoDBGlobalTableTimeToLiveSpecification;
|
42717
|
+
WarmThroughput?: DynamoDBGlobalTableWarmThroughput;
|
42699
42718
|
WriteOnDemandThroughputSettings?: DynamoDBGlobalTableWriteOnDemandThroughputSettings;
|
42700
42719
|
WriteProvisionedThroughputSettings?: DynamoDBGlobalTableWriteProvisionedThroughputSettings;
|
42701
42720
|
};
|
@@ -42762,6 +42781,7 @@ export type DynamoDBGlobalTableGlobalSecondaryIndex = {
|
|
42762
42781
|
*/
|
42763
42782
|
KeySchema: DynamoDBGlobalTableKeySchema[];
|
42764
42783
|
Projection: DynamoDBGlobalTableProjection;
|
42784
|
+
WarmThroughput?: DynamoDBGlobalTableWarmThroughput;
|
42765
42785
|
WriteOnDemandThroughputSettings?: DynamoDBGlobalTableWriteOnDemandThroughputSettings;
|
42766
42786
|
WriteProvisionedThroughputSettings?: DynamoDBGlobalTableWriteProvisionedThroughputSettings;
|
42767
42787
|
};
|
@@ -42941,6 +42961,20 @@ export type DynamoDBGlobalTableTimeToLiveSpecification = {
|
|
42941
42961
|
AttributeName?: string;
|
42942
42962
|
Enabled: boolean;
|
42943
42963
|
};
|
42964
|
+
/**
|
42965
|
+
* Type definition for `AWS::DynamoDB::GlobalTable.WarmThroughput`.
|
42966
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-warmthroughput.html}
|
42967
|
+
*/
|
42968
|
+
export type DynamoDBGlobalTableWarmThroughput = {
|
42969
|
+
/**
|
42970
|
+
* @min `1`
|
42971
|
+
*/
|
42972
|
+
ReadUnitsPerSecond?: number;
|
42973
|
+
/**
|
42974
|
+
* @min `1`
|
42975
|
+
*/
|
42976
|
+
WriteUnitsPerSecond?: number;
|
42977
|
+
};
|
42944
42978
|
/**
|
42945
42979
|
* Type definition for `AWS::DynamoDB::GlobalTable.WriteOnDemandThroughputSettings`.
|
42946
42980
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-writeondemandthroughputsettings.html}
|
@@ -42963,7 +42997,7 @@ export type DynamoDBGlobalTableWriteProvisionedThroughputSettings = {
|
|
42963
42997
|
You should be aware of the following behaviors when working with DDB tables:
|
42964
42998
|
+ 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).
|
42965
42999
|
|
42966
|
-
Our guidance is to use the latest schema documented
|
43000
|
+
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.
|
42967
43001
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html}
|
42968
43002
|
*/
|
42969
43003
|
export type DynamoDBTableProps = {
|
@@ -43061,6 +43095,7 @@ export type DynamoDBTableProps = {
|
|
43061
43095
|
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.
|
43062
43096
|
*/
|
43063
43097
|
TimeToLiveSpecification?: DynamoDBTableTimeToLiveSpecification;
|
43098
|
+
WarmThroughput?: DynamoDBTableWarmThroughput;
|
43064
43099
|
};
|
43065
43100
|
/**
|
43066
43101
|
* Attribute type definition for `AWS::DynamoDB::Table`.
|
@@ -43150,6 +43185,7 @@ export type DynamoDBTableGlobalSecondaryIndex = {
|
|
43150
43185
|
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*.
|
43151
43186
|
*/
|
43152
43187
|
ProvisionedThroughput?: DynamoDBTableProvisionedThroughput;
|
43188
|
+
WarmThroughput?: DynamoDBTableWarmThroughput;
|
43153
43189
|
};
|
43154
43190
|
/**
|
43155
43191
|
* Type definition for `AWS::DynamoDB::Table.ImportSourceSpecification`.
|
@@ -43428,6 +43464,20 @@ export type DynamoDBTableTimeToLiveSpecification = {
|
|
43428
43464
|
*/
|
43429
43465
|
Enabled: boolean;
|
43430
43466
|
};
|
43467
|
+
/**
|
43468
|
+
* Type definition for `AWS::DynamoDB::Table.WarmThroughput`.
|
43469
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-table-warmthroughput.html}
|
43470
|
+
*/
|
43471
|
+
export type DynamoDBTableWarmThroughput = {
|
43472
|
+
/**
|
43473
|
+
* @min `1`
|
43474
|
+
*/
|
43475
|
+
ReadUnitsPerSecond?: number;
|
43476
|
+
/**
|
43477
|
+
* @min `1`
|
43478
|
+
*/
|
43479
|
+
WriteUnitsPerSecond?: number;
|
43480
|
+
};
|
43431
43481
|
/**
|
43432
43482
|
* Resource Type definition for AWS::EC2::CapacityReservation
|
43433
43483
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html}
|
@@ -43975,7 +44025,7 @@ export type EC2EC2FleetInstanceRequirementsRequest = {
|
|
43975
44025
|
BareMetal?: "included" | "required" | "excluded";
|
43976
44026
|
BaselineEbsBandwidthMbps?: EC2EC2FleetBaselineEbsBandwidthMbpsRequest;
|
43977
44027
|
BurstablePerformance?: "included" | "required" | "excluded";
|
43978
|
-
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services")[];
|
44028
|
+
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services" | "apple")[];
|
43979
44029
|
ExcludedInstanceTypes?: string[];
|
43980
44030
|
InstanceGenerations?: ("current" | "previous")[];
|
43981
44031
|
LocalStorage?: "included" | "required" | "excluded";
|
@@ -45589,7 +45639,7 @@ export type EC2LaunchTemplateProps = {
|
|
45589
45639
|
LaunchTemplateName?: string;
|
45590
45640
|
/**
|
45591
45641
|
* The tags to apply to the launch template on creation. To tag the launch template, the resource type must be ``launch-template``.
|
45592
|
-
To specify the tags for resources that are created
|
45642
|
+
To specify the tags for the resources that are created when an instance is launched, you must use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications).
|
45593
45643
|
*/
|
45594
45644
|
TagSpecifications?: EC2LaunchTemplateLaunchTemplateTagSpecification[];
|
45595
45645
|
/**
|
@@ -45788,7 +45838,7 @@ export type EC2LaunchTemplateEbs = {
|
|
45788
45838
|
*/
|
45789
45839
|
Iops?: number;
|
45790
45840
|
/**
|
45791
|
-
*
|
45841
|
+
* The ARN of the symmetric KMSlong (KMS) CMK used for encryption.
|
45792
45842
|
*/
|
45793
45843
|
KmsKeyId?: string;
|
45794
45844
|
/**
|
@@ -45922,7 +45972,7 @@ export type EC2LaunchTemplateInstanceMarketOptions = {
|
|
45922
45972
|
|
45923
45973
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
45924
45974
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
45925
|
-
For more information, see [
|
45975
|
+
For more information, see [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html), and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
45926
45976
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-instancerequirements.html}
|
45927
45977
|
*/
|
45928
45978
|
export type EC2LaunchTemplateInstanceRequirements = {
|
@@ -45970,6 +46020,7 @@ export type EC2LaunchTemplateInstanceRequirements = {
|
|
45970
46020
|
* The accelerator types that must be on the instance type.
|
45971
46021
|
+ For instance types with GPU accelerators, specify ``gpu``.
|
45972
46022
|
+ For instance types with FPGA accelerators, specify ``fpga``.
|
46023
|
+
+ For instance types with inference accelerators, specify ``inference``.
|
45973
46024
|
|
45974
46025
|
Default: Any accelerator type
|
45975
46026
|
*/
|
@@ -46184,8 +46235,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
46184
46235
|
*/
|
46185
46236
|
ElasticGpuSpecifications?: EC2LaunchTemplateElasticGpuSpecification[];
|
46186
46237
|
/**
|
46187
|
-
*
|
46188
|
-
An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
46238
|
+
* An elastic inference accelerator to associate with the instance. Elastic inference accelerators are a resource you can attach to your Amazon EC2 instances to accelerate your Deep Learning (DL) inference workloads.
|
46189
46239
|
You cannot specify accelerators from different generations in the same request.
|
46190
46240
|
Starting April 15, 2023, AWS will not onboard new customers to Amazon Elastic Inference (EI), and will help current customers migrate their workloads to options that offer better price and performance. After April 15, 2023, new customers will not be able to launch instances with Amazon EI accelerators in Amazon SageMaker, Amazon ECS, or Amazon EC2. However, customers who have used Amazon EI at least once during the past 30-day period are considered current customers and will be able to continue using the service.
|
46191
46241
|
*/
|
@@ -46233,7 +46283,7 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
46233
46283
|
|
46234
46284
|
If you specify ``InstanceRequirements``, you can't specify ``InstanceType``.
|
46235
46285
|
Attribute-based instance type selection is only supported when using Auto Scaling groups, EC2 Fleet, and Spot Fleet to launch instances. If you plan to use the launch template in the [launch instance wizard](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-launch-instance-wizard.html), or with the [RunInstances](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_RunInstances.html) API or [AWS::EC2::Instance](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-instance.html) AWS CloudFormation resource, you can't specify ``InstanceRequirements``.
|
46236
|
-
For more information, see [
|
46286
|
+
For more information, see [Attribute-based instance type selection for EC2 Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-fleet-attribute-based-instance-type-selection.html), [Attribute-based instance type selection for Spot Fleet](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-fleet-attribute-based-instance-type-selection.html), and [Spot placement score](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/spot-placement-score.html) in the *Amazon EC2 User Guide*.
|
46237
46287
|
*/
|
46238
46288
|
InstanceRequirements?: EC2LaunchTemplateInstanceRequirements;
|
46239
46289
|
/**
|
@@ -46295,7 +46345,8 @@ export type EC2LaunchTemplateLaunchTemplateData = {
|
|
46295
46345
|
*/
|
46296
46346
|
SecurityGroups?: string[];
|
46297
46347
|
/**
|
46298
|
-
* The tags to apply to resources that are created during instance launch.
|
46348
|
+
* The tags to apply to the resources that are created during instance launch.
|
46349
|
+
To tag a resource after it has been created, see [CreateTags](https://docs.aws.amazon.com/AWSEC2/latest/APIReference/API_CreateTags.html).
|
46299
46350
|
To tag the launch template itself, use [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html#cfn-ec2-launchtemplate-tagspecifications).
|
46300
46351
|
*/
|
46301
46352
|
TagSpecifications?: EC2LaunchTemplateTagSpecification[];
|
@@ -46325,7 +46376,6 @@ export type EC2LaunchTemplateLaunchTemplateElasticInferenceAccelerator = {
|
|
46325
46376
|
/**
|
46326
46377
|
* Type definition for `AWS::EC2::LaunchTemplate.LaunchTemplateTagSpecification`.
|
46327
46378
|
* Specifies the tags to apply to the launch template during creation.
|
46328
|
-
To specify the tags for the resources that are created during instance launch, use [AWS::EC2::LaunchTemplate TagSpecification](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html).
|
46329
46379
|
``LaunchTemplateTagSpecification`` is a property of [AWS::EC2::LaunchTemplate](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-launchtemplate.html).
|
46330
46380
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatetagspecification.html}
|
46331
46381
|
*/
|
@@ -46499,10 +46549,9 @@ export type EC2LaunchTemplateNetworkInterface = {
|
|
46499
46549
|
*/
|
46500
46550
|
Groups?: string[];
|
46501
46551
|
/**
|
46502
|
-
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa
|
46552
|
+
* The type of network interface. To create an Elastic Fabric Adapter (EFA), specify ``efa``. For more information, see [Elastic Fabric Adapter](https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/efa.html) in the *Amazon EC2 User Guide*.
|
46503
46553
|
If you are not creating an EFA, specify ``interface`` or omit this parameter.
|
46504
|
-
|
46505
|
-
Valid values: ``interface`` | ``efa`` | ``efa-only``
|
46554
|
+
Valid values: ``interface`` | ``efa``
|
46506
46555
|
*/
|
46507
46556
|
InterfaceType?: string;
|
46508
46557
|
/**
|
@@ -46703,7 +46752,7 @@ export type EC2LaunchTemplateTag = {
|
|
46703
46752
|
};
|
46704
46753
|
/**
|
46705
46754
|
* Type definition for `AWS::EC2::LaunchTemplate.TagSpecification`.
|
46706
|
-
* Specifies the tags to apply to
|
46755
|
+
* Specifies the tags to apply to a resource when the resource is created for the launch template.
|
46707
46756
|
``TagSpecification`` is a property type of [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications). [TagSpecifications](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html#cfn-ec2-launchtemplate-launchtemplatedata-tagspecifications) is a property of [AWS::EC2::LaunchTemplate LaunchTemplateData](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-launchtemplatedata.html).
|
46708
46757
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-launchtemplate-tagspecification.html}
|
46709
46758
|
*/
|
@@ -49235,7 +49284,7 @@ export type EC2SpotFleetInstanceRequirementsRequest = {
|
|
49235
49284
|
BareMetal?: "included" | "required" | "excluded";
|
49236
49285
|
BaselineEbsBandwidthMbps?: EC2SpotFleetBaselineEbsBandwidthMbpsRequest;
|
49237
49286
|
BurstablePerformance?: "included" | "required" | "excluded";
|
49238
|
-
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services")[];
|
49287
|
+
CpuManufacturers?: ("intel" | "amd" | "amazon-web-services" | "apple")[];
|
49239
49288
|
ExcludedInstanceTypes?: string[];
|
49240
49289
|
InstanceGenerations?: ("current" | "previous")[];
|
49241
49290
|
LocalStorage?: "included" | "required" | "excluded";
|
@@ -52242,7 +52291,7 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
|
|
52242
52291
|
*/
|
52243
52292
|
EncryptionType: ECRRepositoryCreationTemplateEncryptionType;
|
52244
52293
|
/**
|
52245
|
-
* 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.
|
52294
|
+
* 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.
|
52246
52295
|
* @minLength `1`
|
52247
52296
|
* @maxLength `2048`
|
52248
52297
|
*/
|
@@ -52253,7 +52302,7 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
|
|
52253
52302
|
* The encryption type to use.
|
52254
52303
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptiontype.html}
|
52255
52304
|
*/
|
52256
|
-
export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS";
|
52305
|
+
export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS" | "KMS_DSSE";
|
52257
52306
|
/**
|
52258
52307
|
* Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
|
52259
52308
|
* An array of key-value pairs to apply to this resource.
|
@@ -52604,6 +52653,7 @@ export type ECSPrimaryTaskSetProps = {
|
|
52604
52653
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ecs-service.html}
|
52605
52654
|
*/
|
52606
52655
|
export type ECSServiceProps = {
|
52656
|
+
AvailabilityZoneRebalancing?: "ENABLED" | "DISABLED";
|
52607
52657
|
/**
|
52608
52658
|
* The capacity provider strategy to use for the service.
|
52609
52659
|
If a ``capacityProviderStrategy`` is specified, the ``launchType`` parameter must be omitted. If no ``capacityProviderStrategy`` or ``launchType`` is specified, the ``defaultCapacityProviderStrategy`` for the cluster is used.
|
@@ -52615,7 +52665,7 @@ export type ECSServiceProps = {
|
|
52615
52665
|
*/
|
52616
52666
|
Cluster?: string;
|
52617
52667
|
/**
|
52618
|
-
* Optional deployment parameters that control how many tasks run during the deployment and the
|
52668
|
+
* Optional deployment parameters that control how many tasks run during the deployment and the ordering of stopping and starting tasks.
|
52619
52669
|
*/
|
52620
52670
|
DeploymentConfiguration?: ECSServiceDeploymentConfiguration;
|
52621
52671
|
/**
|
@@ -52724,6 +52774,7 @@ export type ECSServiceProps = {
|
|
52724
52774
|
* The configuration for a volume specified in the task definition as a volume that is configured at launch time. Currently, the only supported volume type is an Amazon EBS volume.
|
52725
52775
|
*/
|
52726
52776
|
VolumeConfigurations?: ECSServiceServiceVolumeConfiguration[];
|
52777
|
+
VpcLatticeConfigurations?: ECSServiceVpcLatticeConfiguration[];
|
52727
52778
|
};
|
52728
52779
|
/**
|
52729
52780
|
* Attribute type definition for `AWS::ECS::Service`.
|
@@ -52819,7 +52870,7 @@ export type ECSServiceDeploymentCircuitBreaker = {
|
|
52819
52870
|
};
|
52820
52871
|
/**
|
52821
52872
|
* Type definition for `AWS::ECS::Service.DeploymentConfiguration`.
|
52822
|
-
* Optional deployment parameters that control how many tasks run during
|
52873
|
+
* Optional deployment parameters that control how many tasks run during a deployment and the ordering of stopping and starting tasks.
|
52823
52874
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-deploymentconfiguration.html}
|
52824
52875
|
*/
|
52825
52876
|
export type ECSServiceDeploymentConfiguration = {
|
@@ -52910,7 +52961,7 @@ export type ECSServiceLoadBalancer = {
|
|
52910
52961
|
*/
|
52911
52962
|
ContainerPort?: number;
|
52912
52963
|
/**
|
52913
|
-
* The name of the load balancer to associate with the service or task set.
|
52964
|
+
* The name of the load balancer to associate with the Amazon ECS service or task set.
|
52914
52965
|
If you are using an Application Load Balancer or a Network Load Balancer the load balancer name parameter should be omitted.
|
52915
52966
|
*/
|
52916
52967
|
LoadBalancerName?: string;
|
@@ -53302,6 +53353,15 @@ export type ECSServiceTimeoutConfiguration = {
|
|
53302
53353
|
*/
|
53303
53354
|
PerRequestTimeoutSeconds?: number;
|
53304
53355
|
};
|
53356
|
+
/**
|
53357
|
+
* Type definition for `AWS::ECS::Service.VpcLatticeConfiguration`.
|
53358
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-vpclatticeconfiguration.html}
|
53359
|
+
*/
|
53360
|
+
export type ECSServiceVpcLatticeConfiguration = {
|
53361
|
+
PortName: string;
|
53362
|
+
RoleArn: string;
|
53363
|
+
TargetGroupArn: string;
|
53364
|
+
};
|
53305
53365
|
/**
|
53306
53366
|
* Resource type definition for `AWS::ECS::TaskDefinition`.
|
53307
53367
|
* Registers a new task definition from the supplied ``family`` and ``containerDefinitions``. Optionally, you can add data volumes to your containers with the ``volumes`` parameter. For more information about task definition parameters and defaults, see [Amazon ECS Task Definitions](https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_defintions.html) in the *Amazon Elastic Container Service Developer Guide*.
|
@@ -53528,7 +53588,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53528
53588
|
DockerSecurityOptions?: string[];
|
53529
53589
|
/**
|
53530
53590
|
* 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.
|
53531
|
-
The entry point that's passed to the container. This parameter maps to ``Entrypoint`` in
|
53591
|
+
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.
|
53532
53592
|
*/
|
53533
53593
|
EntryPoint?: string[];
|
53534
53594
|
/**
|
@@ -53561,7 +53621,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53561
53621
|
*/
|
53562
53622
|
HealthCheck?: ECSTaskDefinitionHealthCheck;
|
53563
53623
|
/**
|
53564
|
-
* The hostname to use for your container. This parameter maps to ``Hostname`` in
|
53624
|
+
* 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.
|
53565
53625
|
The ``hostname`` parameter is not supported if you're using the ``awsvpc`` network mode.
|
53566
53626
|
*/
|
53567
53627
|
Hostname?: string;
|
@@ -53620,7 +53680,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53620
53680
|
*/
|
53621
53681
|
MountPoints?: ECSTaskDefinitionMountPoint[];
|
53622
53682
|
/**
|
53623
|
-
* 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
|
53683
|
+
* 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.
|
53624
53684
|
*/
|
53625
53685
|
Name: string;
|
53626
53686
|
/**
|
@@ -53637,7 +53697,7 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53637
53697
|
*/
|
53638
53698
|
Privileged?: boolean;
|
53639
53699
|
/**
|
53640
|
-
* When this parameter is ``true``, a TTY is allocated. This parameter maps to ``Tty`` in
|
53700
|
+
* 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.
|
53641
53701
|
*/
|
53642
53702
|
PseudoTerminal?: boolean;
|
53643
53703
|
/**
|
@@ -53678,13 +53738,13 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53678
53738
|
+ Linux platform version ``1.3.0`` or later.
|
53679
53739
|
+ Windows platform version ``1.0.0`` or later.
|
53680
53740
|
|
53681
|
-
|
53741
|
+
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.
|
53682
53742
|
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*.
|
53683
|
-
The valid values are 2-120 seconds.
|
53743
|
+
The valid values for Fargate are 2-120 seconds.
|
53684
53744
|
*/
|
53685
53745
|
StopTimeout?: number;
|
53686
53746
|
/**
|
53687
|
-
* A list of namespaced kernel parameters to set in the container. This parameter maps to ``Sysctls`` in
|
53747
|
+
* 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.
|
53688
53748
|
*/
|
53689
53749
|
SystemControls?: ECSTaskDefinitionSystemControl[];
|
53690
53750
|
/**
|
@@ -53706,8 +53766,9 @@ export type ECSTaskDefinitionContainerDefinition = {
|
|
53706
53766
|
This parameter is not supported for Windows containers.
|
53707
53767
|
*/
|
53708
53768
|
User?: string;
|
53769
|
+
VersionConsistency?: "enabled" | "disabled";
|
53709
53770
|
/**
|
53710
|
-
* Data volumes to mount from another container. This parameter maps to ``VolumesFrom`` in
|
53771
|
+
* 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.
|
53711
53772
|
*/
|
53712
53773
|
VolumesFrom?: ECSTaskDefinitionVolumeFrom[];
|
53713
53774
|
/**
|
@@ -53923,7 +53984,7 @@ export type ECSTaskDefinitionHealthCheck = {
|
|
53923
53984
|
``[ "CMD-SHELL", "curl -f http://localhost/ || exit 1" ]``
|
53924
53985
|
You don't include the double quotes and brackets when you use the AWS Management Console.
|
53925
53986
|
``CMD-SHELL, curl -f http://localhost/ || exit 1``
|
53926
|
-
An exit code of 0 indicates success, and non-zero exit code indicates failure. For more information, see ``HealthCheck`` in
|
53987
|
+
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
|
53927
53988
|
*/
|
53928
53989
|
Command?: string[];
|
53929
53990
|
/**
|
@@ -54031,7 +54092,7 @@ export type ECSTaskDefinitionLinuxParameters = {
|
|
54031
54092
|
*/
|
54032
54093
|
Capabilities?: ECSTaskDefinitionKernelCapabilities;
|
54033
54094
|
/**
|
54034
|
-
* Any host devices to expose to the container. This parameter maps to ``Devices`` in
|
54095
|
+
* 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.
|
54035
54096
|
If you're using tasks that use the Fargate launch type, the ``devices`` parameter isn't supported.
|
54036
54097
|
*/
|
54037
54098
|
Devices?: ECSTaskDefinitionDevice[];
|
@@ -54079,8 +54140,17 @@ export type ECSTaskDefinitionLogConfiguration = {
|
|
54079
54140
|
*/
|
54080
54141
|
LogDriver: string;
|
54081
54142
|
/**
|
54082
|
-
|
54083
|
-
|
54143
|
+
* The configuration options to send to the log driver.
|
54144
|
+
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:
|
54145
|
+
+ 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.
|
54146
|
+
To route logs using the ``splunk`` log router, you need to specify a ``splunk-token`` and a ``splunk-url``.
|
54147
|
+
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.
|
54148
|
+
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``.
|
54149
|
+
When you export logs to Amazon Kinesis Data Streams, you can specify an AWS Region with ``region`` and a data stream name with ``stream``.
|
54150
|
+
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``.
|
54151
|
+
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.
|
54152
|
+
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}}'``
|
54153
|
+
*/
|
54084
54154
|
Options?: Record<string, string>;
|
54085
54155
|
/**
|
54086
54156
|
* 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*.
|
@@ -54287,7 +54357,7 @@ export type ECSTaskDefinitionSecret = {
|
|
54287
54357
|
};
|
54288
54358
|
/**
|
54289
54359
|
* Type definition for `AWS::ECS::TaskDefinition.SystemControl`.
|
54290
|
-
* A list of namespaced kernel parameters to set in the container. This parameter maps to ``Sysctls`` in
|
54360
|
+
* 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.
|
54291
54361
|
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:
|
54292
54362
|
+ 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.
|
54293
54363
|
+ For tasks that use the ``host`` network mode, the network namespace ``systemControls`` aren't supported.
|
@@ -54381,7 +54451,7 @@ export type ECSTaskDefinitionTmpfs = {
|
|
54381
54451
|
*/
|
54382
54452
|
export type ECSTaskDefinitionUlimit = {
|
54383
54453
|
/**
|
54384
|
-
* The hard limit for the ``ulimit`` type.
|
54454
|
+
* 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``.
|
54385
54455
|
*/
|
54386
54456
|
HardLimit: number;
|
54387
54457
|
/**
|
@@ -54389,7 +54459,7 @@ export type ECSTaskDefinitionUlimit = {
|
|
54389
54459
|
*/
|
54390
54460
|
Name: string;
|
54391
54461
|
/**
|
54392
|
-
* The soft limit for the ``ulimit`` type.
|
54462
|
+
* 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``.
|
54393
54463
|
*/
|
54394
54464
|
SoftLimit: number;
|
54395
54465
|
};
|
@@ -60609,7 +60679,7 @@ export type EventsConnectionAttributes = {
|
|
60609
60679
|
Arn: string;
|
60610
60680
|
/**
|
60611
60681
|
* The arn of the secrets manager secret created in the customer account.
|
60612
|
-
* @pattern `^arn:aws([a-z]|\-)*:secretsmanager:([a-z]|\d|\-)*:([0-9]{12})?:secret:[\/_+=\.@\-A-Za-z0-9]+$`
|
60682
|
+
* @pattern `^arn:aws([a-z]|\-)*:secretsmanager:([a-z]|\d|\-)*:([0-9]{12})?:secret:([a-z]|\d|\-)*(!)*[\/_+=\.@\-A-Za-z0-9]+$`
|
60613
60683
|
*/
|
60614
60684
|
SecretArn: string;
|
60615
60685
|
};
|
@@ -62174,6 +62244,7 @@ export type FISExperimentTemplateProps = {
|
|
62174
62244
|
*/
|
62175
62245
|
Description: string;
|
62176
62246
|
ExperimentOptions?: FISExperimentTemplateExperimentTemplateExperimentOptions;
|
62247
|
+
ExperimentReportConfiguration?: FISExperimentTemplateExperimentTemplateExperimentReportConfiguration;
|
62177
62248
|
LogConfiguration?: FISExperimentTemplateExperimentTemplateLogConfiguration;
|
62178
62249
|
/**
|
62179
62250
|
* The Amazon Resource Name (ARN) of an IAM role that grants the AWS FIS service permission to perform service actions on your behalf.
|
@@ -62197,6 +62268,17 @@ export type FISExperimentTemplateProps = {
|
|
62197
62268
|
export type FISExperimentTemplateAttributes = {
|
62198
62269
|
Id: string;
|
62199
62270
|
};
|
62271
|
+
/**
|
62272
|
+
* Type definition for `AWS::FIS::ExperimentTemplate.CloudWatchDashboard`.
|
62273
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-cloudwatchdashboard.html}
|
62274
|
+
*/
|
62275
|
+
export type FISExperimentTemplateCloudWatchDashboard = {
|
62276
|
+
/**
|
62277
|
+
* @minLength `1`
|
62278
|
+
* @maxLength `512`
|
62279
|
+
*/
|
62280
|
+
DashboardIdentifier: string;
|
62281
|
+
};
|
62200
62282
|
/**
|
62201
62283
|
* Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateAction`.
|
62202
62284
|
* Specifies an action for the experiment template.
|
@@ -62246,6 +62328,31 @@ export type FISExperimentTemplateExperimentTemplateExperimentOptions = {
|
|
62246
62328
|
*/
|
62247
62329
|
EmptyTargetResolutionMode?: "fail" | "skip";
|
62248
62330
|
};
|
62331
|
+
/**
|
62332
|
+
* Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateExperimentReportConfiguration`.
|
62333
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-experimenttemplateexperimentreportconfiguration.html}
|
62334
|
+
*/
|
62335
|
+
export type FISExperimentTemplateExperimentTemplateExperimentReportConfiguration = {
|
62336
|
+
DataSources: {
|
62337
|
+
CloudWatchDashboards?: FISExperimentTemplateCloudWatchDashboard[];
|
62338
|
+
};
|
62339
|
+
Outputs: {
|
62340
|
+
ExperimentReportS3Configuration: {
|
62341
|
+
/**
|
62342
|
+
* @minLength `3`
|
62343
|
+
* @maxLength `63`
|
62344
|
+
*/
|
62345
|
+
BucketName: string;
|
62346
|
+
/**
|
62347
|
+
* @minLength `1`
|
62348
|
+
* @maxLength `1024`
|
62349
|
+
*/
|
62350
|
+
Prefix?: string;
|
62351
|
+
};
|
62352
|
+
};
|
62353
|
+
PostExperimentDuration?: string;
|
62354
|
+
PreExperimentDuration?: string;
|
62355
|
+
};
|
62249
62356
|
/**
|
62250
62357
|
* Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateLogConfiguration`.
|
62251
62358
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-experimenttemplatelogconfiguration.html}
|
@@ -64311,11 +64418,412 @@ export type GameLiftBuildStorageLocation = {
|
|
64311
64418
|
*/
|
64312
64419
|
RoleArn: string;
|
64313
64420
|
};
|
64421
|
+
/**
|
64422
|
+
* The AWS::GameLift::ContainerFleet resource creates an Amazon GameLift (GameLift) container fleet to host game servers.
|
64423
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containerfleet.html}
|
64424
|
+
*/
|
64425
|
+
export type GameLiftContainerFleetProps = {
|
64426
|
+
/**
|
64427
|
+
* 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.
|
64428
|
+
*/
|
64429
|
+
BillingType?: "ON_DEMAND" | "SPOT";
|
64430
|
+
/**
|
64431
|
+
* Provides details about how to drain old tasks and replace them with new updated tasks.
|
64432
|
+
*/
|
64433
|
+
DeploymentConfiguration?: GameLiftContainerFleetDeploymentConfiguration;
|
64434
|
+
/**
|
64435
|
+
* A human-readable description of a fleet.
|
64436
|
+
* @minLength `1`
|
64437
|
+
* @maxLength `1024`
|
64438
|
+
*/
|
64439
|
+
Description?: string;
|
64440
|
+
/**
|
64441
|
+
* 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.
|
64442
|
+
* @minLength `1`
|
64443
|
+
* @maxLength `256`
|
64444
|
+
* @pattern `^arn:aws(-.*)?:[a-z-]+:(([a-z]+-)+[0-9])?:([0-9]{12})?:[^.]+$`
|
64445
|
+
*/
|
64446
|
+
FleetRoleArn: string;
|
64447
|
+
/**
|
64448
|
+
* 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.
|
64449
|
+
* @minLength `1`
|
64450
|
+
* @maxLength `512`
|
64451
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$`
|
64452
|
+
*/
|
64453
|
+
GameServerContainerGroupDefinitionName?: string;
|
64454
|
+
/**
|
64455
|
+
* The number of desired game server container groups per instance, a number between 1-5000.
|
64456
|
+
* @min `1`
|
64457
|
+
* @max `5000`
|
64458
|
+
*/
|
64459
|
+
GameServerContainerGroupsPerInstance?: number;
|
64460
|
+
/**
|
64461
|
+
* A policy that limits the number of game sessions an individual player can create over a span of time for this fleet.
|
64462
|
+
*/
|
64463
|
+
GameSessionCreationLimitPolicy?: GameLiftContainerFleetGameSessionCreationLimitPolicy;
|
64464
|
+
/**
|
64465
|
+
* Defines the range of ports on the instance that allow inbound traffic to connect with containers in a fleet.
|
64466
|
+
*/
|
64467
|
+
InstanceConnectionPortRange?: GameLiftContainerFleetConnectionPortRange;
|
64468
|
+
/**
|
64469
|
+
* A range of IP addresses and port settings that allow inbound traffic to connect to server processes on an Amazon GameLift server.
|
64470
|
+
* @maxLength `50`
|
64471
|
+
*/
|
64472
|
+
InstanceInboundPermissions?: GameLiftContainerFleetIpPermission[];
|
64473
|
+
/**
|
64474
|
+
* 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.
|
64475
|
+
* @minLength `1`
|
64476
|
+
* @maxLength `1024`
|
64477
|
+
*/
|
64478
|
+
InstanceType?: string;
|
64479
|
+
/**
|
64480
|
+
* @maxLength `100`
|
64481
|
+
*/
|
64482
|
+
Locations?: GameLiftContainerFleetLocationConfiguration[];
|
64483
|
+
/**
|
64484
|
+
* A policy the location and provider of logs from the fleet.
|
64485
|
+
*/
|
64486
|
+
LogConfiguration?: GameLiftContainerFleetLogConfiguration;
|
64487
|
+
/**
|
64488
|
+
* 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.
|
64489
|
+
* @maxLength `1`
|
64490
|
+
*/
|
64491
|
+
MetricGroups?: string[];
|
64492
|
+
/**
|
64493
|
+
* 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.
|
64494
|
+
*/
|
64495
|
+
NewGameSessionProtectionPolicy?: "FullProtection" | "NoProtection";
|
64496
|
+
/**
|
64497
|
+
* The name of the container group definition that will be created per instance. This field is optional if you specify GameServerContainerGroupDefinitionName.
|
64498
|
+
* @minLength `1`
|
64499
|
+
* @maxLength `512`
|
64500
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$`
|
64501
|
+
*/
|
64502
|
+
PerInstanceContainerGroupDefinitionName?: string;
|
64503
|
+
/**
|
64504
|
+
* A list of rules that control how a fleet is scaled.
|
64505
|
+
* @maxLength `50`
|
64506
|
+
*/
|
64507
|
+
ScalingPolicies?: GameLiftContainerFleetScalingPolicy[];
|
64508
|
+
/**
|
64509
|
+
* An array of key-value pairs to apply to this resource.
|
64510
|
+
* @maxLength `200`
|
64511
|
+
*/
|
64512
|
+
Tags?: GameLiftContainerFleetTag[];
|
64513
|
+
};
|
64514
|
+
/**
|
64515
|
+
* Attribute type definition for `AWS::GameLift::ContainerFleet`.
|
64516
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containerfleet.html#aws-resource-gamelift-containerfleet-return-values}
|
64517
|
+
*/
|
64518
|
+
export type GameLiftContainerFleetAttributes = {
|
64519
|
+
/**
|
64520
|
+
* A time stamp indicating when this data object was created. Format is a number expressed in Unix time as milliseconds (for example "1469498468.057").
|
64521
|
+
*/
|
64522
|
+
CreationTime: string;
|
64523
|
+
/**
|
64524
|
+
* Provides information about the last deployment ID and its status.
|
64525
|
+
*/
|
64526
|
+
DeploymentDetails: {
|
64527
|
+
/**
|
64528
|
+
* 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.
|
64529
|
+
* @maxLength `1024`
|
64530
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^$`
|
64531
|
+
*/
|
64532
|
+
LatestDeploymentId: string;
|
64533
|
+
};
|
64534
|
+
/**
|
64535
|
+
* The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift container fleet resource and uniquely identifies it across all AWS Regions.
|
64536
|
+
* @minLength `1`
|
64537
|
+
* @maxLength `512`
|
64538
|
+
* @pattern `^arn:.*:[a-z]*fleet\/[a-z]*fleet-[a-zA-Z0-9\-]+$`
|
64539
|
+
*/
|
64540
|
+
FleetArn: string;
|
64541
|
+
/**
|
64542
|
+
* Unique fleet ID
|
64543
|
+
* @minLength `1`
|
64544
|
+
* @maxLength `128`
|
64545
|
+
* @pattern `^[a-z]*fleet-[a-zA-Z0-9\-]+`
|
64546
|
+
*/
|
64547
|
+
FleetId: string;
|
64548
|
+
/**
|
64549
|
+
* The Amazon Resource Name (ARN) of the game server container group definition. This field will be empty if GameServerContainerGroupDefinitionName is not specified.
|
64550
|
+
* @maxLength `512`
|
64551
|
+
* @pattern `^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$|^$`
|
64552
|
+
*/
|
64553
|
+
GameServerContainerGroupDefinitionArn: string;
|
64554
|
+
/**
|
64555
|
+
* The maximum number of game server container groups per instance, a number between 1-5000.
|
64556
|
+
* @min `1`
|
64557
|
+
* @max `5000`
|
64558
|
+
*/
|
64559
|
+
MaximumGameServerContainerGroupsPerInstance: number;
|
64560
|
+
/**
|
64561
|
+
* The Amazon Resource Name (ARN) of the per instance container group definition. This field will be empty if PerInstanceContainerGroupDefinitionName is not specified.
|
64562
|
+
* @maxLength `512`
|
64563
|
+
* @pattern `^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$|^$`
|
64564
|
+
*/
|
64565
|
+
PerInstanceContainerGroupDefinitionArn: string;
|
64566
|
+
/**
|
64567
|
+
* The current status of the container fleet.
|
64568
|
+
*/
|
64569
|
+
Status: "PENDING" | "CREATING" | "CREATED" | "ACTIVATING" | "ACTIVE" | "UPDATING" | "DELETING";
|
64570
|
+
};
|
64571
|
+
/**
|
64572
|
+
* Type definition for `AWS::GameLift::ContainerFleet.ConnectionPortRange`.
|
64573
|
+
* Defines the range of ports on the instance that allow inbound traffic to connect with containers in a fleet.
|
64574
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-connectionportrange.html}
|
64575
|
+
*/
|
64576
|
+
export type GameLiftContainerFleetConnectionPortRange = {
|
64577
|
+
/**
|
64578
|
+
* A starting value for a range of allowed port numbers.
|
64579
|
+
* @min `1`
|
64580
|
+
* @max `60000`
|
64581
|
+
*/
|
64582
|
+
FromPort: number;
|
64583
|
+
/**
|
64584
|
+
* An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.
|
64585
|
+
* @min `1`
|
64586
|
+
* @max `60000`
|
64587
|
+
*/
|
64588
|
+
ToPort: number;
|
64589
|
+
};
|
64590
|
+
/**
|
64591
|
+
* Type definition for `AWS::GameLift::ContainerFleet.DeploymentConfiguration`.
|
64592
|
+
* Provides details about how to drain old tasks and replace them with new updated tasks.
|
64593
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-deploymentconfiguration.html}
|
64594
|
+
*/
|
64595
|
+
export type GameLiftContainerFleetDeploymentConfiguration = {
|
64596
|
+
/**
|
64597
|
+
* The strategy to apply in case of impairment; defaults to MAINTAIN.
|
64598
|
+
*/
|
64599
|
+
ImpairmentStrategy?: "MAINTAIN" | "ROLLBACK";
|
64600
|
+
/**
|
64601
|
+
* The minimum percentage of healthy required; defaults to 75.
|
64602
|
+
* @min `30`
|
64603
|
+
* @max `75`
|
64604
|
+
*/
|
64605
|
+
MinimumHealthyPercentage?: number;
|
64606
|
+
/**
|
64607
|
+
* The protection strategy for deployment on the container fleet; defaults to WITH_PROTECTION.
|
64608
|
+
*/
|
64609
|
+
ProtectionStrategy?: "WITH_PROTECTION" | "IGNORE_PROTECTION";
|
64610
|
+
};
|
64611
|
+
/**
|
64612
|
+
* Type definition for `AWS::GameLift::ContainerFleet.DeploymentDetails`.
|
64613
|
+
* Provides information about the last deployment ID and its status.
|
64614
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-deploymentdetails.html}
|
64615
|
+
*/
|
64616
|
+
export type GameLiftContainerFleetDeploymentDetails = {
|
64617
|
+
/**
|
64618
|
+
* 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.
|
64619
|
+
* @maxLength `1024`
|
64620
|
+
* @pattern `^[a-zA-Z0-9\-]+$|^$`
|
64621
|
+
*/
|
64622
|
+
LatestDeploymentId?: string;
|
64623
|
+
};
|
64624
|
+
/**
|
64625
|
+
* Type definition for `AWS::GameLift::ContainerFleet.GameSessionCreationLimitPolicy`.
|
64626
|
+
* 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".
|
64627
|
+
|
64628
|
+
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.
|
64629
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-gamesessioncreationlimitpolicy.html}
|
64630
|
+
*/
|
64631
|
+
export type GameLiftContainerFleetGameSessionCreationLimitPolicy = {
|
64632
|
+
/**
|
64633
|
+
* The maximum number of game sessions that an individual can create during the policy period.
|
64634
|
+
* @min `0`
|
64635
|
+
*/
|
64636
|
+
NewGameSessionsPerCreator?: number;
|
64637
|
+
/**
|
64638
|
+
* The time span used in evaluating the resource creation limit policy.
|
64639
|
+
* @min `0`
|
64640
|
+
*/
|
64641
|
+
PolicyPeriodInMinutes?: number;
|
64642
|
+
};
|
64643
|
+
/**
|
64644
|
+
* Type definition for `AWS::GameLift::ContainerFleet.IpPermission`.
|
64645
|
+
* 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.
|
64646
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-ippermission.html}
|
64647
|
+
*/
|
64648
|
+
export type GameLiftContainerFleetIpPermission = {
|
64649
|
+
/**
|
64650
|
+
* A starting value for a range of allowed port numbers.
|
64651
|
+
* @min `1`
|
64652
|
+
* @max `60000`
|
64653
|
+
*/
|
64654
|
+
FromPort: number;
|
64655
|
+
/**
|
64656
|
+
* 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]".
|
64657
|
+
* @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]))$)`
|
64658
|
+
*/
|
64659
|
+
IpRange: string;
|
64660
|
+
/**
|
64661
|
+
* The network communication protocol used by the fleet.
|
64662
|
+
*/
|
64663
|
+
Protocol: "TCP" | "UDP";
|
64664
|
+
/**
|
64665
|
+
* An ending value for a range of allowed port numbers. Port numbers are end-inclusive. This value must be higher than FromPort.
|
64666
|
+
* @min `1`
|
64667
|
+
* @max `60000`
|
64668
|
+
*/
|
64669
|
+
ToPort: number;
|
64670
|
+
};
|
64671
|
+
/**
|
64672
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LocationCapacity`.
|
64673
|
+
* 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.
|
64674
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-locationcapacity.html}
|
64675
|
+
*/
|
64676
|
+
export type GameLiftContainerFleetLocationCapacity = {
|
64677
|
+
/**
|
64678
|
+
* 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.
|
64679
|
+
* @min `0`
|
64680
|
+
*/
|
64681
|
+
DesiredEC2Instances: number;
|
64682
|
+
/**
|
64683
|
+
* The maximum value that is allowed for the fleet's instance count for a location.
|
64684
|
+
* @min `0`
|
64685
|
+
*/
|
64686
|
+
MaxSize: number;
|
64687
|
+
/**
|
64688
|
+
* The minimum value allowed for the fleet's instance count for a location.
|
64689
|
+
* @min `0`
|
64690
|
+
*/
|
64691
|
+
MinSize: number;
|
64692
|
+
};
|
64693
|
+
/**
|
64694
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LocationConfiguration`.
|
64695
|
+
* A remote location where a multi-location fleet can deploy EC2 instances for game hosting.
|
64696
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-locationconfiguration.html}
|
64697
|
+
*/
|
64698
|
+
export type GameLiftContainerFleetLocationConfiguration = {
|
64699
|
+
/**
|
64700
|
+
* @minLength `1`
|
64701
|
+
* @maxLength `64`
|
64702
|
+
* @pattern `^[A-Za-z0-9\-]+`
|
64703
|
+
*/
|
64704
|
+
Location: string;
|
64705
|
+
/**
|
64706
|
+
* 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.
|
64707
|
+
*/
|
64708
|
+
LocationCapacity?: GameLiftContainerFleetLocationCapacity;
|
64709
|
+
/**
|
64710
|
+
* A list of fleet actions that have been suspended in the fleet location.
|
64711
|
+
* @maxLength `1`
|
64712
|
+
*/
|
64713
|
+
StoppedActions?: "AUTO_SCALING"[];
|
64714
|
+
};
|
64715
|
+
/**
|
64716
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LogConfiguration`.
|
64717
|
+
* A policy the location and provider of logs from the fleet.
|
64718
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logconfiguration.html}
|
64719
|
+
*/
|
64720
|
+
export type GameLiftContainerFleetLogConfiguration = {
|
64721
|
+
/**
|
64722
|
+
* Configures the service that provides logs.
|
64723
|
+
*/
|
64724
|
+
LogDestination?: GameLiftContainerFleetLogDestination;
|
64725
|
+
/**
|
64726
|
+
* The name of the S3 bucket to pull logs from if S3 is the LogDestination
|
64727
|
+
* @minLength `1`
|
64728
|
+
* @maxLength `1024`
|
64729
|
+
*/
|
64730
|
+
S3BucketName?: string;
|
64731
|
+
};
|
64732
|
+
/**
|
64733
|
+
* Type definition for `AWS::GameLift::ContainerFleet.LogDestination`.
|
64734
|
+
* Configures the service that provides logs.
|
64735
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-logdestination.html}
|
64736
|
+
*/
|
64737
|
+
export type GameLiftContainerFleetLogDestination = "NONE" | "CLOUDWATCH" | "S3";
|
64738
|
+
/**
|
64739
|
+
* Type definition for `AWS::GameLift::ContainerFleet.ScalingPolicy`.
|
64740
|
+
* Rule that controls how a fleet is scaled. Scaling policies are uniquely identified by the combination of name and fleet ID.
|
64741
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-scalingpolicy.html}
|
64742
|
+
*/
|
64743
|
+
export type GameLiftContainerFleetScalingPolicy = {
|
64744
|
+
/**
|
64745
|
+
* Comparison operator to use when measuring a metric against the threshold value.
|
64746
|
+
*/
|
64747
|
+
ComparisonOperator?: "GreaterThanOrEqualToThreshold" | "GreaterThanThreshold" | "LessThanThreshold" | "LessThanOrEqualToThreshold";
|
64748
|
+
/**
|
64749
|
+
* Length of time (in minutes) the metric must be at or beyond the threshold before a scaling event is triggered.
|
64750
|
+
* @min `1`
|
64751
|
+
*/
|
64752
|
+
EvaluationPeriods?: number;
|
64753
|
+
/**
|
64754
|
+
* Name of the Amazon GameLift-defined metric that is used to trigger a scaling adjustment.
|
64755
|
+
*/
|
64756
|
+
MetricName: "ActivatingGameSessions" | "ActiveGameSessions" | "ActiveInstances" | "AvailableGameSessions" | "AvailablePlayerSessions" | "CurrentPlayerSessions" | "IdleInstances" | "PercentAvailableGameSessions" | "PercentIdleInstances" | "QueueDepth" | "WaitTime" | "ConcurrentActivatableGameSessions";
|
64757
|
+
/**
|
64758
|
+
* A descriptive label that is associated with a fleet's scaling policy. Policy names do not need to be unique.
|
64759
|
+
* @minLength `1`
|
64760
|
+
* @maxLength `1024`
|
64761
|
+
*/
|
64762
|
+
Name: string;
|
64763
|
+
/**
|
64764
|
+
* 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.
|
64765
|
+
*/
|
64766
|
+
PolicyType?: "RuleBased" | "TargetBased";
|
64767
|
+
/**
|
64768
|
+
* Amount of adjustment to make, based on the scaling adjustment type.
|
64769
|
+
*/
|
64770
|
+
ScalingAdjustment?: number;
|
64771
|
+
/**
|
64772
|
+
* The type of adjustment to make to a fleet's instance count.
|
64773
|
+
*/
|
64774
|
+
ScalingAdjustmentType?: "ChangeInCapacity" | "ExactCapacity" | "PercentChangeInCapacity";
|
64775
|
+
/**
|
64776
|
+
* An object that contains settings for a target-based scaling policy.
|
64777
|
+
*/
|
64778
|
+
TargetConfiguration?: GameLiftContainerFleetTargetConfiguration;
|
64779
|
+
/**
|
64780
|
+
* Metric value used to trigger a scaling event.
|
64781
|
+
*/
|
64782
|
+
Threshold?: number;
|
64783
|
+
};
|
64784
|
+
/**
|
64785
|
+
* Type definition for `AWS::GameLift::ContainerFleet.Tag`.
|
64786
|
+
* A key-value pair to associate with a resource.
|
64787
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-tag.html}
|
64788
|
+
*/
|
64789
|
+
export type GameLiftContainerFleetTag = {
|
64790
|
+
/**
|
64791
|
+
* The key name of the tag. You can specify a value that is 1 to 128 Unicode characters in length.
|
64792
|
+
* @minLength `1`
|
64793
|
+
* @maxLength `128`
|
64794
|
+
*/
|
64795
|
+
Key: string;
|
64796
|
+
/**
|
64797
|
+
* The value for the tag. You can specify a value that is 0 to 256 Unicode characters in length.
|
64798
|
+
* @minLength `0`
|
64799
|
+
* @maxLength `256`
|
64800
|
+
*/
|
64801
|
+
Value: string;
|
64802
|
+
};
|
64803
|
+
/**
|
64804
|
+
* Type definition for `AWS::GameLift::ContainerFleet.TargetConfiguration`.
|
64805
|
+
* 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.
|
64806
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containerfleet-targetconfiguration.html}
|
64807
|
+
*/
|
64808
|
+
export type GameLiftContainerFleetTargetConfiguration = {
|
64809
|
+
/**
|
64810
|
+
* 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).
|
64811
|
+
*/
|
64812
|
+
TargetValue: number;
|
64813
|
+
};
|
64314
64814
|
/**
|
64315
64815
|
* The AWS::GameLift::ContainerGroupDefinition resource creates an Amazon GameLift container group definition.
|
64316
64816
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html}
|
64317
64817
|
*/
|
64318
64818
|
export type GameLiftContainerGroupDefinitionProps = {
|
64819
|
+
/**
|
64820
|
+
* The scope of the container group
|
64821
|
+
*/
|
64822
|
+
ContainerGroupType?: "GAME_SERVER" | "PER_INSTANCE";
|
64823
|
+
/**
|
64824
|
+
* Specifies the information required to run game servers with this container group
|
64825
|
+
*/
|
64826
|
+
GameServerContainerDefinition?: GameLiftContainerGroupDefinitionGameServerContainerDefinition;
|
64319
64827
|
/**
|
64320
64828
|
* A descriptive label for the container group definition.
|
64321
64829
|
* @minLength `1`
|
@@ -64337,13 +64845,31 @@ export type GameLiftContainerGroupDefinitionProps = {
|
|
64337
64845
|
* @minLength `1`
|
64338
64846
|
* @maxLength `10`
|
64339
64847
|
*/
|
64340
|
-
SupportContainerDefinitions?:
|
64848
|
+
SupportContainerDefinitions?: GameLiftContainerGroupDefinitionSupportContainerDefinition[];
|
64341
64849
|
/**
|
64342
64850
|
* An array of key-value pairs to apply to this resource.
|
64343
64851
|
* @minLength `0`
|
64344
64852
|
* @maxLength `200`
|
64345
64853
|
*/
|
64346
64854
|
Tags?: GameLiftContainerGroupDefinitionTag[];
|
64855
|
+
/**
|
64856
|
+
* The total memory limit of container groups following this definition in MiB
|
64857
|
+
* @min `4`
|
64858
|
+
* @max `1024000`
|
64859
|
+
*/
|
64860
|
+
TotalMemoryLimitMebibytes: number;
|
64861
|
+
/**
|
64862
|
+
* The total amount of virtual CPUs on the container group definition
|
64863
|
+
* @min `0.125`
|
64864
|
+
* @max `10`
|
64865
|
+
*/
|
64866
|
+
TotalVcpuLimit: number;
|
64867
|
+
/**
|
64868
|
+
* The description of this version
|
64869
|
+
* @minLength `1`
|
64870
|
+
* @maxLength `1024`
|
64871
|
+
*/
|
64872
|
+
VersionDescription?: string;
|
64347
64873
|
};
|
64348
64874
|
/**
|
64349
64875
|
* Attribute type definition for `AWS::GameLift::ContainerGroupDefinition`.
|
@@ -64354,7 +64880,7 @@ export type GameLiftContainerGroupDefinitionAttributes = {
|
|
64354
64880
|
* The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift container group resource and uniquely identifies it across all AWS Regions.
|
64355
64881
|
* @minLength `1`
|
64356
64882
|
* @maxLength `512`
|
64357
|
-
* @pattern `^arn:.*:containergroupdefinition
|
64883
|
+
* @pattern `^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$`
|
64358
64884
|
*/
|
64359
64885
|
ContainerGroupDefinitionArn: string;
|
64360
64886
|
/**
|
@@ -64369,6 +64895,270 @@ export type GameLiftContainerGroupDefinitionAttributes = {
|
|
64369
64895
|
* A string indicating the reason for ContainerGroupDefinition status.
|
64370
64896
|
*/
|
64371
64897
|
StatusReason: string;
|
64898
|
+
/**
|
64899
|
+
* The version of this ContainerGroupDefinition
|
64900
|
+
* @min `0`
|
64901
|
+
*/
|
64902
|
+
VersionNumber: number;
|
64903
|
+
};
|
64904
|
+
/**
|
64905
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerDependency`.
|
64906
|
+
* A dependency that impacts a container's startup and shutdown.
|
64907
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerdependency.html}
|
64908
|
+
*/
|
64909
|
+
export type GameLiftContainerGroupDefinitionContainerDependency = {
|
64910
|
+
/**
|
64911
|
+
* The type of dependency.
|
64912
|
+
*/
|
64913
|
+
Condition: "START" | "COMPLETE" | "SUCCESS" | "HEALTHY";
|
64914
|
+
/**
|
64915
|
+
* A descriptive label for the container definition. The container being defined depends on this container's condition.
|
64916
|
+
* @minLength `1`
|
64917
|
+
* @maxLength `128`
|
64918
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
64919
|
+
*/
|
64920
|
+
ContainerName: string;
|
64921
|
+
};
|
64922
|
+
/**
|
64923
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerEnvironment`.
|
64924
|
+
* An environment variable to set inside a container, in the form of a key-value pair.
|
64925
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerenvironment.html}
|
64926
|
+
*/
|
64927
|
+
export type GameLiftContainerGroupDefinitionContainerEnvironment = {
|
64928
|
+
/**
|
64929
|
+
* The environment variable name.
|
64930
|
+
* @minLength `1`
|
64931
|
+
* @maxLength `255`
|
64932
|
+
* @pattern `^.*$`
|
64933
|
+
*/
|
64934
|
+
Name: string;
|
64935
|
+
/**
|
64936
|
+
* The environment variable value.
|
64937
|
+
* @minLength `1`
|
64938
|
+
* @maxLength `255`
|
64939
|
+
* @pattern `^.*$`
|
64940
|
+
*/
|
64941
|
+
Value: string;
|
64942
|
+
};
|
64943
|
+
/**
|
64944
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerHealthCheck`.
|
64945
|
+
* Specifies how the process manager checks the health of containers.
|
64946
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerhealthcheck.html}
|
64947
|
+
*/
|
64948
|
+
export type GameLiftContainerGroupDefinitionContainerHealthCheck = {
|
64949
|
+
/**
|
64950
|
+
* A string array representing the command that the container runs to determine if it is healthy.
|
64951
|
+
* @minLength `1`
|
64952
|
+
* @maxLength `20`
|
64953
|
+
*/
|
64954
|
+
Command: string[];
|
64955
|
+
/**
|
64956
|
+
* How often (in seconds) the health is checked.
|
64957
|
+
* @min `60`
|
64958
|
+
* @max `300`
|
64959
|
+
*/
|
64960
|
+
Interval?: number;
|
64961
|
+
/**
|
64962
|
+
* 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.)
|
64963
|
+
* @min `5`
|
64964
|
+
* @max `10`
|
64965
|
+
*/
|
64966
|
+
Retries?: number;
|
64967
|
+
/**
|
64968
|
+
* The optional grace period (in seconds) to give a container time to boostrap before teh health check is declared failed.
|
64969
|
+
* @min `0`
|
64970
|
+
* @max `300`
|
64971
|
+
*/
|
64972
|
+
StartPeriod?: number;
|
64973
|
+
/**
|
64974
|
+
* How many seconds the process manager allows the command to run before canceling it.
|
64975
|
+
* @min `30`
|
64976
|
+
* @max `60`
|
64977
|
+
*/
|
64978
|
+
Timeout?: number;
|
64979
|
+
};
|
64980
|
+
/**
|
64981
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerMountPoint`.
|
64982
|
+
* Defines the mount point configuration within a container.
|
64983
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containermountpoint.html}
|
64984
|
+
*/
|
64985
|
+
export type GameLiftContainerGroupDefinitionContainerMountPoint = {
|
64986
|
+
/**
|
64987
|
+
* The access permissions for the mounted path.
|
64988
|
+
*/
|
64989
|
+
AccessLevel?: "READ_ONLY" | "READ_AND_WRITE";
|
64990
|
+
/**
|
64991
|
+
* The path inside the container where the mount is accessible.
|
64992
|
+
* @minLength `1`
|
64993
|
+
* @maxLength `1024`
|
64994
|
+
* @pattern `^(\/+[^\/]+\/*)+$`
|
64995
|
+
*/
|
64996
|
+
ContainerPath?: string;
|
64997
|
+
/**
|
64998
|
+
* The path on the host that will be mounted in the container.
|
64999
|
+
* @minLength `1`
|
65000
|
+
* @maxLength `1024`
|
65001
|
+
* @pattern `^\/[\s\S]*$`
|
65002
|
+
*/
|
65003
|
+
InstancePath: string;
|
65004
|
+
};
|
65005
|
+
/**
|
65006
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.ContainerPortRange`.
|
65007
|
+
* A set of one or more port numbers that can be opened on the container.
|
65008
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-containerportrange.html}
|
65009
|
+
*/
|
65010
|
+
export type GameLiftContainerGroupDefinitionContainerPortRange = {
|
65011
|
+
/**
|
65012
|
+
* A starting value for the range of allowed port numbers.
|
65013
|
+
* @min `1`
|
65014
|
+
* @max `60000`
|
65015
|
+
*/
|
65016
|
+
FromPort: number;
|
65017
|
+
/**
|
65018
|
+
* Defines the protocol of these ports.
|
65019
|
+
*/
|
65020
|
+
Protocol: "TCP" | "UDP";
|
65021
|
+
/**
|
65022
|
+
* 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.
|
65023
|
+
* @min `1`
|
65024
|
+
* @max `60000`
|
65025
|
+
*/
|
65026
|
+
ToPort: number;
|
65027
|
+
};
|
65028
|
+
/**
|
65029
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.GameServerContainerDefinition`.
|
65030
|
+
* Specifies the information required to run game servers with this container group
|
65031
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-gameservercontainerdefinition.html}
|
65032
|
+
*/
|
65033
|
+
export type GameLiftContainerGroupDefinitionGameServerContainerDefinition = {
|
65034
|
+
/**
|
65035
|
+
* A descriptive label for the container definition. Container definition names must be unique with a container group definition.
|
65036
|
+
* @minLength `1`
|
65037
|
+
* @maxLength `128`
|
65038
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
65039
|
+
*/
|
65040
|
+
ContainerName: string;
|
65041
|
+
/**
|
65042
|
+
* 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.
|
65043
|
+
* @minLength `1`
|
65044
|
+
* @maxLength `10`
|
65045
|
+
*/
|
65046
|
+
DependsOn?: GameLiftContainerGroupDefinitionContainerDependency[];
|
65047
|
+
/**
|
65048
|
+
* The environment variables to pass to a container.
|
65049
|
+
* @minLength `1`
|
65050
|
+
* @maxLength `20`
|
65051
|
+
*/
|
65052
|
+
EnvironmentOverride?: GameLiftContainerGroupDefinitionContainerEnvironment[];
|
65053
|
+
/**
|
65054
|
+
* Specifies the image URI of this container.
|
65055
|
+
* @minLength `1`
|
65056
|
+
* @maxLength `255`
|
65057
|
+
* @pattern `^[a-zA-Z0-9-_\.@\/:]+$`
|
65058
|
+
*/
|
65059
|
+
ImageUri: string;
|
65060
|
+
/**
|
65061
|
+
* A list of mount point configurations to be used in a container.
|
65062
|
+
* @minLength `1`
|
65063
|
+
* @maxLength `10`
|
65064
|
+
*/
|
65065
|
+
MountPoints?: GameLiftContainerGroupDefinitionContainerMountPoint[];
|
65066
|
+
/**
|
65067
|
+
* Defines the ports on the container.
|
65068
|
+
*/
|
65069
|
+
PortConfiguration?: GameLiftContainerGroupDefinitionPortConfiguration;
|
65070
|
+
/**
|
65071
|
+
* The digest of the container image.
|
65072
|
+
* @pattern `^sha256:[a-fA-F0-9]{64}$`
|
65073
|
+
*/
|
65074
|
+
ResolvedImageDigest?: string;
|
65075
|
+
/**
|
65076
|
+
* The version of the server SDK used in this container group
|
65077
|
+
* @maxLength `128`
|
65078
|
+
* @pattern `^\d+\.\d+\.\d+$`
|
65079
|
+
*/
|
65080
|
+
ServerSdkVersion: string;
|
65081
|
+
};
|
65082
|
+
/**
|
65083
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.PortConfiguration`.
|
65084
|
+
* Defines the ports on a container.
|
65085
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-portconfiguration.html}
|
65086
|
+
*/
|
65087
|
+
export type GameLiftContainerGroupDefinitionPortConfiguration = {
|
65088
|
+
/**
|
65089
|
+
* Specifies one or more ranges of ports on a container.
|
65090
|
+
* @minLength `1`
|
65091
|
+
* @maxLength `100`
|
65092
|
+
*/
|
65093
|
+
ContainerPortRanges: GameLiftContainerGroupDefinitionContainerPortRange[];
|
65094
|
+
};
|
65095
|
+
/**
|
65096
|
+
* Type definition for `AWS::GameLift::ContainerGroupDefinition.SupportContainerDefinition`.
|
65097
|
+
* Supports the function of the main container group
|
65098
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-gamelift-containergroupdefinition-supportcontainerdefinition.html}
|
65099
|
+
*/
|
65100
|
+
export type GameLiftContainerGroupDefinitionSupportContainerDefinition = {
|
65101
|
+
/**
|
65102
|
+
* A descriptive label for the container definition.
|
65103
|
+
* @minLength `1`
|
65104
|
+
* @maxLength `128`
|
65105
|
+
* @pattern `^[a-zA-Z0-9-]+$`
|
65106
|
+
*/
|
65107
|
+
ContainerName: string;
|
65108
|
+
/**
|
65109
|
+
* 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.
|
65110
|
+
* @minLength `1`
|
65111
|
+
* @maxLength `10`
|
65112
|
+
*/
|
65113
|
+
DependsOn?: GameLiftContainerGroupDefinitionContainerDependency[];
|
65114
|
+
/**
|
65115
|
+
* The environment variables to pass to a container.
|
65116
|
+
* @minLength `1`
|
65117
|
+
* @maxLength `20`
|
65118
|
+
*/
|
65119
|
+
EnvironmentOverride?: GameLiftContainerGroupDefinitionContainerEnvironment[];
|
65120
|
+
/**
|
65121
|
+
* 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.
|
65122
|
+
*/
|
65123
|
+
Essential?: boolean;
|
65124
|
+
/**
|
65125
|
+
* Specifies how the health of the containers will be checked.
|
65126
|
+
*/
|
65127
|
+
HealthCheck?: GameLiftContainerGroupDefinitionContainerHealthCheck;
|
65128
|
+
/**
|
65129
|
+
* Specifies the image URI of this container.
|
65130
|
+
* @minLength `1`
|
65131
|
+
* @maxLength `255`
|
65132
|
+
* @pattern `^[a-zA-Z0-9-_\.@\/:]+$`
|
65133
|
+
*/
|
65134
|
+
ImageUri: string;
|
65135
|
+
/**
|
65136
|
+
* The total memory limit of container groups following this definition in MiB
|
65137
|
+
* @min `4`
|
65138
|
+
* @max `1024000`
|
65139
|
+
*/
|
65140
|
+
MemoryHardLimitMebibytes?: number;
|
65141
|
+
/**
|
65142
|
+
* A list of mount point configurations to be used in a container.
|
65143
|
+
* @minLength `1`
|
65144
|
+
* @maxLength `10`
|
65145
|
+
*/
|
65146
|
+
MountPoints?: GameLiftContainerGroupDefinitionContainerMountPoint[];
|
65147
|
+
/**
|
65148
|
+
* Defines the ports on the container.
|
65149
|
+
*/
|
65150
|
+
PortConfiguration?: GameLiftContainerGroupDefinitionPortConfiguration;
|
65151
|
+
/**
|
65152
|
+
* The digest of the container image.
|
65153
|
+
* @pattern `^sha256:[a-fA-F0-9]{64}$`
|
65154
|
+
*/
|
65155
|
+
ResolvedImageDigest?: string;
|
65156
|
+
/**
|
65157
|
+
* The number of virtual CPUs to give to the support group
|
65158
|
+
* @min `0.125`
|
65159
|
+
* @max `10`
|
65160
|
+
*/
|
65161
|
+
Vcpu?: number;
|
64372
65162
|
};
|
64373
65163
|
/**
|
64374
65164
|
* Type definition for `AWS::GameLift::ContainerGroupDefinition.Tag`.
|
@@ -85995,6 +86785,7 @@ export type KinesisAnalyticsV2ApplicationReferenceDataSourceS3ReferenceDataSourc
|
|
85995
86785
|
export type KinesisFirehoseDeliveryStreamProps = {
|
85996
86786
|
AmazonOpenSearchServerlessDestinationConfiguration?: KinesisFirehoseDeliveryStreamAmazonOpenSearchServerlessDestinationConfiguration;
|
85997
86787
|
AmazonopensearchserviceDestinationConfiguration?: KinesisFirehoseDeliveryStreamAmazonopensearchserviceDestinationConfiguration;
|
86788
|
+
DatabaseSourceConfiguration?: KinesisFirehoseDeliveryStreamDatabaseSourceConfiguration;
|
85998
86789
|
DeliveryStreamEncryptionConfigurationInput?: KinesisFirehoseDeliveryStreamDeliveryStreamEncryptionConfigurationInput;
|
85999
86790
|
/**
|
86000
86791
|
* @minLength `1`
|
@@ -86002,7 +86793,7 @@ export type KinesisFirehoseDeliveryStreamProps = {
|
|
86002
86793
|
* @pattern `[a-zA-Z0-9._-]+`
|
86003
86794
|
*/
|
86004
86795
|
DeliveryStreamName?: string;
|
86005
|
-
DeliveryStreamType?: "DirectPut" | "KinesisStreamAsSource" | "MSKAsSource";
|
86796
|
+
DeliveryStreamType?: "DatabaseAsSource" | "DirectPut" | "KinesisStreamAsSource" | "MSKAsSource";
|
86006
86797
|
ElasticsearchDestinationConfiguration?: KinesisFirehoseDeliveryStreamElasticsearchDestinationConfiguration;
|
86007
86798
|
ExtendedS3DestinationConfiguration?: KinesisFirehoseDeliveryStreamExtendedS3DestinationConfiguration;
|
86008
86799
|
HttpEndpointDestinationConfiguration?: KinesisFirehoseDeliveryStreamHttpEndpointDestinationConfiguration;
|
@@ -86192,6 +86983,92 @@ export type KinesisFirehoseDeliveryStreamCopyCommand = {
|
|
86192
86983
|
*/
|
86193
86984
|
DataTableName: string;
|
86194
86985
|
};
|
86986
|
+
/**
|
86987
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseColumns`.
|
86988
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasecolumns.html}
|
86989
|
+
*/
|
86990
|
+
export type KinesisFirehoseDeliveryStreamDatabaseColumns = {
|
86991
|
+
Exclude?: string[];
|
86992
|
+
Include?: string[];
|
86993
|
+
};
|
86994
|
+
/**
|
86995
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.Databases`.
|
86996
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databases.html}
|
86997
|
+
*/
|
86998
|
+
export type KinesisFirehoseDeliveryStreamDatabases = {
|
86999
|
+
Exclude?: string[];
|
87000
|
+
Include?: string[];
|
87001
|
+
};
|
87002
|
+
/**
|
87003
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseSourceAuthenticationConfiguration`.
|
87004
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceauthenticationconfiguration.html}
|
87005
|
+
*/
|
87006
|
+
export type KinesisFirehoseDeliveryStreamDatabaseSourceAuthenticationConfiguration = {
|
87007
|
+
SecretsManagerConfiguration: KinesisFirehoseDeliveryStreamSecretsManagerConfiguration;
|
87008
|
+
};
|
87009
|
+
/**
|
87010
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseSourceConfiguration`.
|
87011
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourceconfiguration.html}
|
87012
|
+
*/
|
87013
|
+
export type KinesisFirehoseDeliveryStreamDatabaseSourceConfiguration = {
|
87014
|
+
Columns?: KinesisFirehoseDeliveryStreamDatabaseColumns;
|
87015
|
+
DatabaseSourceAuthenticationConfiguration: KinesisFirehoseDeliveryStreamDatabaseSourceAuthenticationConfiguration;
|
87016
|
+
DatabaseSourceVPCConfiguration: KinesisFirehoseDeliveryStreamDatabaseSourceVPCConfiguration;
|
87017
|
+
Databases: KinesisFirehoseDeliveryStreamDatabases;
|
87018
|
+
/**
|
87019
|
+
* @minLength `1`
|
87020
|
+
* @maxLength `512`
|
87021
|
+
* @pattern `.*`
|
87022
|
+
*/
|
87023
|
+
Digest?: string;
|
87024
|
+
/**
|
87025
|
+
* @minLength `1`
|
87026
|
+
* @maxLength `255`
|
87027
|
+
* @pattern `^(?!\s*$).+`
|
87028
|
+
*/
|
87029
|
+
Endpoint: string;
|
87030
|
+
/**
|
87031
|
+
* @min `0`
|
87032
|
+
* @max `65535`
|
87033
|
+
*/
|
87034
|
+
Port: number;
|
87035
|
+
/**
|
87036
|
+
* @minLength `1`
|
87037
|
+
* @maxLength `4096`
|
87038
|
+
* @pattern `.*`
|
87039
|
+
*/
|
87040
|
+
PublicCertificate?: string;
|
87041
|
+
SSLMode?: "Disabled" | "Enabled";
|
87042
|
+
/**
|
87043
|
+
* @minLength `1`
|
87044
|
+
* @maxLength `129`
|
87045
|
+
* @pattern `[\u0001-\uFFFF]*`
|
87046
|
+
*/
|
87047
|
+
SnapshotWatermarkTable: string;
|
87048
|
+
SurrogateKeys?: string[];
|
87049
|
+
Tables: KinesisFirehoseDeliveryStreamDatabaseTables;
|
87050
|
+
Type: "MySQL" | "PostgreSQL";
|
87051
|
+
};
|
87052
|
+
/**
|
87053
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseSourceVPCConfiguration`.
|
87054
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasesourcevpcconfiguration.html}
|
87055
|
+
*/
|
87056
|
+
export type KinesisFirehoseDeliveryStreamDatabaseSourceVPCConfiguration = {
|
87057
|
+
/**
|
87058
|
+
* @minLength `47`
|
87059
|
+
* @maxLength `255`
|
87060
|
+
* @pattern `([a-zA-Z0-9\-\_]+\.){2,3}vpce\.[a-zA-Z0-9\-]*\.vpce-svc\-[a-zA-Z0-9\-]{17}$`
|
87061
|
+
*/
|
87062
|
+
VpcEndpointServiceName: string;
|
87063
|
+
};
|
87064
|
+
/**
|
87065
|
+
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DatabaseTables`.
|
87066
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-databasetables.html}
|
87067
|
+
*/
|
87068
|
+
export type KinesisFirehoseDeliveryStreamDatabaseTables = {
|
87069
|
+
Exclude?: string[];
|
87070
|
+
Include?: string[];
|
87071
|
+
};
|
86195
87072
|
/**
|
86196
87073
|
* Type definition for `AWS::KinesisFirehose::DeliveryStream.DataFormatConversionConfiguration`.
|
86197
87074
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html}
|
@@ -86698,13 +87575,13 @@ export type KinesisFirehoseDeliveryStreamSecretsManagerConfiguration = {
|
|
86698
87575
|
/**
|
86699
87576
|
* @minLength `1`
|
86700
87577
|
* @maxLength `512`
|
86701
|
-
* @pattern `arn
|
87578
|
+
* @pattern `arn:.*:iam::\d{12}:role/[a-zA-Z_0-9+=,.@\-_/]+`
|
86702
87579
|
*/
|
86703
87580
|
RoleARN?: string;
|
86704
87581
|
/**
|
86705
87582
|
* @minLength `1`
|
86706
|
-
* @maxLength `
|
86707
|
-
* @pattern `arn
|
87583
|
+
* @maxLength `2048`
|
87584
|
+
* @pattern `arn:.*:secretsmanager:[a-zA-Z0-9\-]+:\d{12}:secret:[a-zA-Z0-9\-/_+=.@]+`
|
86708
87585
|
*/
|
86709
87586
|
SecretARN?: string;
|
86710
87587
|
};
|
@@ -177237,6 +178114,7 @@ export interface ResourceTypes {
|
|
177237
178114
|
"AWS::FSx::Volume": FSxVolumeProps;
|
177238
178115
|
"AWS::GameLift::Alias": GameLiftAliasProps;
|
177239
178116
|
"AWS::GameLift::Build": GameLiftBuildProps;
|
178117
|
+
"AWS::GameLift::ContainerFleet": GameLiftContainerFleetProps;
|
177240
178118
|
"AWS::GameLift::ContainerGroupDefinition": GameLiftContainerGroupDefinitionProps;
|
177241
178119
|
"AWS::GameLift::Fleet": GameLiftFleetProps;
|
177242
178120
|
"AWS::GameLift::GameServerGroup": GameLiftGameServerGroupProps;
|
@@ -178496,6 +179374,7 @@ export interface AttributeTypes {
|
|
178496
179374
|
"AWS::FSx::Volume": FSxVolumeAttributes;
|
178497
179375
|
"AWS::GameLift::Alias": GameLiftAliasAttributes;
|
178498
179376
|
"AWS::GameLift::Build": GameLiftBuildAttributes;
|
179377
|
+
"AWS::GameLift::ContainerFleet": GameLiftContainerFleetAttributes;
|
178499
179378
|
"AWS::GameLift::ContainerGroupDefinition": GameLiftContainerGroupDefinitionAttributes;
|
178500
179379
|
"AWS::GameLift::Fleet": GameLiftFleetAttributes;
|
178501
179380
|
"AWS::GameLift::GameServerGroup": GameLiftGameServerGroupAttributes;
|
@@ -179743,6 +180622,7 @@ export declare const ResourceType: {
|
|
179743
180622
|
readonly FSxVolume: "AWS::FSx::Volume";
|
179744
180623
|
readonly GameLiftAlias: "AWS::GameLift::Alias";
|
179745
180624
|
readonly GameLiftBuild: "AWS::GameLift::Build";
|
180625
|
+
readonly GameLiftContainerFleet: "AWS::GameLift::ContainerFleet";
|
179746
180626
|
readonly GameLiftContainerGroupDefinition: "AWS::GameLift::ContainerGroupDefinition";
|
179747
180627
|
readonly GameLiftFleet: "AWS::GameLift::Fleet";
|
179748
180628
|
readonly GameLiftGameServerGroup: "AWS::GameLift::GameServerGroup";
|