@awboost/cfntypes 0.100.46 → 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.
@@ -15807,6 +15807,17 @@ export type BatchComputeEnvironmentEksConfiguration = {
15807
15807
  export type BatchComputeEnvironmentLaunchTemplateSpecification = {
15808
15808
  LaunchTemplateId?: string;
15809
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[];
15810
15821
  Version?: string;
15811
15822
  };
15812
15823
  /**
@@ -42703,6 +42714,7 @@ export type DynamoDBGlobalTableProps = {
42703
42714
  StreamSpecification?: DynamoDBGlobalTableStreamSpecification;
42704
42715
  TableName?: string;
42705
42716
  TimeToLiveSpecification?: DynamoDBGlobalTableTimeToLiveSpecification;
42717
+ WarmThroughput?: DynamoDBGlobalTableWarmThroughput;
42706
42718
  WriteOnDemandThroughputSettings?: DynamoDBGlobalTableWriteOnDemandThroughputSettings;
42707
42719
  WriteProvisionedThroughputSettings?: DynamoDBGlobalTableWriteProvisionedThroughputSettings;
42708
42720
  };
@@ -42769,6 +42781,7 @@ export type DynamoDBGlobalTableGlobalSecondaryIndex = {
42769
42781
  */
42770
42782
  KeySchema: DynamoDBGlobalTableKeySchema[];
42771
42783
  Projection: DynamoDBGlobalTableProjection;
42784
+ WarmThroughput?: DynamoDBGlobalTableWarmThroughput;
42772
42785
  WriteOnDemandThroughputSettings?: DynamoDBGlobalTableWriteOnDemandThroughputSettings;
42773
42786
  WriteProvisionedThroughputSettings?: DynamoDBGlobalTableWriteProvisionedThroughputSettings;
42774
42787
  };
@@ -42948,6 +42961,20 @@ export type DynamoDBGlobalTableTimeToLiveSpecification = {
42948
42961
  AttributeName?: string;
42949
42962
  Enabled: boolean;
42950
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
+ };
42951
42978
  /**
42952
42979
  * Type definition for `AWS::DynamoDB::GlobalTable.WriteOnDemandThroughputSettings`.
42953
42980
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-dynamodb-globaltable-writeondemandthroughputsettings.html}
@@ -42970,7 +42997,7 @@ export type DynamoDBGlobalTableWriteProvisionedThroughputSettings = {
42970
42997
  You should be aware of the following behaviors when working with DDB tables:
42971
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).
42972
42999
 
42973
- Our guidance is to use the latest schema documented here 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.
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.
42974
43001
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-dynamodb-table.html}
42975
43002
  */
42976
43003
  export type DynamoDBTableProps = {
@@ -43068,6 +43095,7 @@ export type DynamoDBTableProps = {
43068
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.
43069
43096
  */
43070
43097
  TimeToLiveSpecification?: DynamoDBTableTimeToLiveSpecification;
43098
+ WarmThroughput?: DynamoDBTableWarmThroughput;
43071
43099
  };
43072
43100
  /**
43073
43101
  * Attribute type definition for `AWS::DynamoDB::Table`.
@@ -43157,6 +43185,7 @@ export type DynamoDBTableGlobalSecondaryIndex = {
43157
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*.
43158
43186
  */
43159
43187
  ProvisionedThroughput?: DynamoDBTableProvisionedThroughput;
43188
+ WarmThroughput?: DynamoDBTableWarmThroughput;
43160
43189
  };
43161
43190
  /**
43162
43191
  * Type definition for `AWS::DynamoDB::Table.ImportSourceSpecification`.
@@ -43435,6 +43464,20 @@ export type DynamoDBTableTimeToLiveSpecification = {
43435
43464
  */
43436
43465
  Enabled: boolean;
43437
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
+ };
43438
43481
  /**
43439
43482
  * Resource Type definition for AWS::EC2::CapacityReservation
43440
43483
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html}
@@ -52248,7 +52291,7 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
52248
52291
  */
52249
52292
  EncryptionType: ECRRepositoryCreationTemplateEncryptionType;
52250
52293
  /**
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.
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.
52252
52295
  * @minLength `1`
52253
52296
  * @maxLength `2048`
52254
52297
  */
@@ -52259,7 +52302,7 @@ export type ECRRepositoryCreationTemplateEncryptionConfiguration = {
52259
52302
  * The encryption type to use.
52260
52303
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-encryptiontype.html}
52261
52304
  */
52262
- export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS";
52305
+ export type ECRRepositoryCreationTemplateEncryptionType = "AES256" | "KMS" | "KMS_DSSE";
52263
52306
  /**
52264
52307
  * Type definition for `AWS::ECR::RepositoryCreationTemplate.Tag`.
52265
52308
  * An array of key-value pairs to apply to this resource.
@@ -53545,7 +53588,7 @@ export type ECSTaskDefinitionContainerDefinition = {
53545
53588
  DockerSecurityOptions?: string[];
53546
53589
  /**
53547
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.
53548
- The entry point that's passed to the container. This parameter maps to ``Entrypoint`` in tthe docker container create command and the ``--entrypoint`` option to docker run.
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.
53549
53592
  */
53550
53593
  EntryPoint?: string[];
53551
53594
  /**
@@ -53578,7 +53621,7 @@ export type ECSTaskDefinitionContainerDefinition = {
53578
53621
  */
53579
53622
  HealthCheck?: ECSTaskDefinitionHealthCheck;
53580
53623
  /**
53581
- * The hostname to use for your container. This parameter maps to ``Hostname`` in thethe docker container create command and the ``--hostname`` option to docker run.
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.
53582
53625
  The ``hostname`` parameter is not supported if you're using the ``awsvpc`` network mode.
53583
53626
  */
53584
53627
  Hostname?: string;
@@ -53637,7 +53680,7 @@ export type ECSTaskDefinitionContainerDefinition = {
53637
53680
  */
53638
53681
  MountPoints?: ECSTaskDefinitionMountPoint[];
53639
53682
  /**
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 tthe docker container create command and the ``--name`` option to docker run.
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.
53641
53684
  */
53642
53685
  Name: string;
53643
53686
  /**
@@ -53654,7 +53697,7 @@ export type ECSTaskDefinitionContainerDefinition = {
53654
53697
  */
53655
53698
  Privileged?: boolean;
53656
53699
  /**
53657
- * When this parameter is ``true``, a TTY is allocated. This parameter maps to ``Tty`` in tthe docker container create command and the ``--tty`` option to docker run.
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.
53658
53701
  */
53659
53702
  PseudoTerminal?: boolean;
53660
53703
  /**
@@ -53695,13 +53738,13 @@ export type ECSTaskDefinitionContainerDefinition = {
53695
53738
  + Linux platform version ``1.3.0`` or later.
53696
53739
  + Windows platform version ``1.0.0`` or later.
53697
53740
 
53698
- The max stop timeout value is 120 seconds and if the parameter is not specified, the default value of 30 seconds is used.
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.
53699
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*.
53700
- The valid values are 2-120 seconds.
53743
+ The valid values for Fargate are 2-120 seconds.
53701
53744
  */
53702
53745
  StopTimeout?: number;
53703
53746
  /**
53704
- * A list of namespaced kernel parameters to set in the container. This parameter maps to ``Sysctls`` in tthe 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.
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.
53705
53748
  */
53706
53749
  SystemControls?: ECSTaskDefinitionSystemControl[];
53707
53750
  /**
@@ -53723,8 +53766,9 @@ export type ECSTaskDefinitionContainerDefinition = {
53723
53766
  This parameter is not supported for Windows containers.
53724
53767
  */
53725
53768
  User?: string;
53769
+ VersionConsistency?: "enabled" | "disabled";
53726
53770
  /**
53727
- * Data volumes to mount from another container. This parameter maps to ``VolumesFrom`` in tthe docker container create command and the ``--volumes-from`` option to docker run.
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.
53728
53772
  */
53729
53773
  VolumesFrom?: ECSTaskDefinitionVolumeFrom[];
53730
53774
  /**
@@ -53940,7 +53984,7 @@ export type ECSTaskDefinitionHealthCheck = {
53940
53984
  ``[ "CMD-SHELL", "curl -f http://localhost/ || exit 1" ]``
53941
53985
  You don't include the double quotes and brackets when you use the AWS Management Console.
53942
53986
  ``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 tthe docker container create command
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
53944
53988
  */
53945
53989
  Command?: string[];
53946
53990
  /**
@@ -54048,7 +54092,7 @@ export type ECSTaskDefinitionLinuxParameters = {
54048
54092
  */
54049
54093
  Capabilities?: ECSTaskDefinitionKernelCapabilities;
54050
54094
  /**
54051
- * Any host devices to expose to the container. This parameter maps to ``Devices`` in tthe docker container create command and the ``--device`` option to docker run.
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.
54052
54096
  If you're using tasks that use the Fargate launch type, the ``devices`` parameter isn't supported.
54053
54097
  */
54054
54098
  Devices?: ECSTaskDefinitionDevice[];
@@ -54096,8 +54140,17 @@ export type ECSTaskDefinitionLogConfiguration = {
54096
54140
  */
54097
54141
  LogDriver: string;
54098
54142
  /**
54099
- * The configuration options to send to the log driver. 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}}'``
54100
- */
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
+ */
54101
54154
  Options?: Record<string, string>;
54102
54155
  /**
54103
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*.
@@ -54304,7 +54357,7 @@ export type ECSTaskDefinitionSecret = {
54304
54357
  };
54305
54358
  /**
54306
54359
  * 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 tthe 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.
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.
54308
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:
54309
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.
54310
54363
  + For tasks that use the ``host`` network mode, the network namespace ``systemControls`` aren't supported.
@@ -54398,7 +54451,7 @@ export type ECSTaskDefinitionTmpfs = {
54398
54451
  */
54399
54452
  export type ECSTaskDefinitionUlimit = {
54400
54453
  /**
54401
- * 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``.
54402
54455
  */
54403
54456
  HardLimit: number;
54404
54457
  /**
@@ -54406,7 +54459,7 @@ export type ECSTaskDefinitionUlimit = {
54406
54459
  */
54407
54460
  Name: string;
54408
54461
  /**
54409
- * 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``.
54410
54463
  */
54411
54464
  SoftLimit: number;
54412
54465
  };
@@ -62191,6 +62244,7 @@ export type FISExperimentTemplateProps = {
62191
62244
  */
62192
62245
  Description: string;
62193
62246
  ExperimentOptions?: FISExperimentTemplateExperimentTemplateExperimentOptions;
62247
+ ExperimentReportConfiguration?: FISExperimentTemplateExperimentTemplateExperimentReportConfiguration;
62194
62248
  LogConfiguration?: FISExperimentTemplateExperimentTemplateLogConfiguration;
62195
62249
  /**
62196
62250
  * 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 +62268,17 @@ export type FISExperimentTemplateProps = {
62214
62268
  export type FISExperimentTemplateAttributes = {
62215
62269
  Id: string;
62216
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
+ };
62217
62282
  /**
62218
62283
  * Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateAction`.
62219
62284
  * Specifies an action for the experiment template.
@@ -62263,6 +62328,31 @@ export type FISExperimentTemplateExperimentTemplateExperimentOptions = {
62263
62328
  */
62264
62329
  EmptyTargetResolutionMode?: "fail" | "skip";
62265
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
+ };
62266
62356
  /**
62267
62357
  * Type definition for `AWS::FIS::ExperimentTemplate.ExperimentTemplateLogConfiguration`.
62268
62358
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fis-experimenttemplate-experimenttemplatelogconfiguration.html}
@@ -64328,11 +64418,412 @@ export type GameLiftBuildStorageLocation = {
64328
64418
  */
64329
64419
  RoleArn: string;
64330
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
+ };
64331
64814
  /**
64332
64815
  * The AWS::GameLift::ContainerGroupDefinition resource creates an Amazon GameLift container group definition.
64333
64816
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-gamelift-containergroupdefinition.html}
64334
64817
  */
64335
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;
64336
64827
  /**
64337
64828
  * A descriptive label for the container group definition.
64338
64829
  * @minLength `1`
@@ -64354,13 +64845,31 @@ export type GameLiftContainerGroupDefinitionProps = {
64354
64845
  * @minLength `1`
64355
64846
  * @maxLength `10`
64356
64847
  */
64357
- SupportContainerDefinitions?: any[];
64848
+ SupportContainerDefinitions?: GameLiftContainerGroupDefinitionSupportContainerDefinition[];
64358
64849
  /**
64359
64850
  * An array of key-value pairs to apply to this resource.
64360
64851
  * @minLength `0`
64361
64852
  * @maxLength `200`
64362
64853
  */
64363
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;
64364
64873
  };
64365
64874
  /**
64366
64875
  * Attribute type definition for `AWS::GameLift::ContainerGroupDefinition`.
@@ -64371,7 +64880,7 @@ export type GameLiftContainerGroupDefinitionAttributes = {
64371
64880
  * The Amazon Resource Name (ARN) that is assigned to a Amazon GameLift container group resource and uniquely identifies it across all AWS Regions.
64372
64881
  * @minLength `1`
64373
64882
  * @maxLength `512`
64374
- * @pattern `^arn:.*:containergroupdefinition/containergroupdefinition-[a-zA-Z0-9-]+$|^arn:.*:containergroupdefinition/[a-zA-Z0-9-\:]+$`
64883
+ * @pattern `^arn:.*:containergroupdefinition\/[a-zA-Z0-9\-]+(:[0-9]+)?$`
64375
64884
  */
64376
64885
  ContainerGroupDefinitionArn: string;
64377
64886
  /**
@@ -64386,6 +64895,270 @@ export type GameLiftContainerGroupDefinitionAttributes = {
64386
64895
  * A string indicating the reason for ContainerGroupDefinition status.
64387
64896
  */
64388
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;
64389
65162
  };
64390
65163
  /**
64391
65164
  * Type definition for `AWS::GameLift::ContainerGroupDefinition.Tag`.
@@ -86012,6 +86785,7 @@ export type KinesisAnalyticsV2ApplicationReferenceDataSourceS3ReferenceDataSourc
86012
86785
  export type KinesisFirehoseDeliveryStreamProps = {
86013
86786
  AmazonOpenSearchServerlessDestinationConfiguration?: KinesisFirehoseDeliveryStreamAmazonOpenSearchServerlessDestinationConfiguration;
86014
86787
  AmazonopensearchserviceDestinationConfiguration?: KinesisFirehoseDeliveryStreamAmazonopensearchserviceDestinationConfiguration;
86788
+ DatabaseSourceConfiguration?: KinesisFirehoseDeliveryStreamDatabaseSourceConfiguration;
86015
86789
  DeliveryStreamEncryptionConfigurationInput?: KinesisFirehoseDeliveryStreamDeliveryStreamEncryptionConfigurationInput;
86016
86790
  /**
86017
86791
  * @minLength `1`
@@ -86019,7 +86793,7 @@ export type KinesisFirehoseDeliveryStreamProps = {
86019
86793
  * @pattern `[a-zA-Z0-9._-]+`
86020
86794
  */
86021
86795
  DeliveryStreamName?: string;
86022
- DeliveryStreamType?: "DirectPut" | "KinesisStreamAsSource" | "MSKAsSource";
86796
+ DeliveryStreamType?: "DatabaseAsSource" | "DirectPut" | "KinesisStreamAsSource" | "MSKAsSource";
86023
86797
  ElasticsearchDestinationConfiguration?: KinesisFirehoseDeliveryStreamElasticsearchDestinationConfiguration;
86024
86798
  ExtendedS3DestinationConfiguration?: KinesisFirehoseDeliveryStreamExtendedS3DestinationConfiguration;
86025
86799
  HttpEndpointDestinationConfiguration?: KinesisFirehoseDeliveryStreamHttpEndpointDestinationConfiguration;
@@ -86209,6 +86983,92 @@ export type KinesisFirehoseDeliveryStreamCopyCommand = {
86209
86983
  */
86210
86984
  DataTableName: string;
86211
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
+ };
86212
87072
  /**
86213
87073
  * Type definition for `AWS::KinesisFirehose::DeliveryStream.DataFormatConversionConfiguration`.
86214
87074
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-dataformatconversionconfiguration.html}
@@ -86715,13 +87575,13 @@ export type KinesisFirehoseDeliveryStreamSecretsManagerConfiguration = {
86715
87575
  /**
86716
87576
  * @minLength `1`
86717
87577
  * @maxLength `512`
86718
- * @pattern `arn:.*`
87578
+ * @pattern `arn:.*:iam::\d{12}:role/[a-zA-Z_0-9+=,.@\-_/]+`
86719
87579
  */
86720
87580
  RoleARN?: string;
86721
87581
  /**
86722
87582
  * @minLength `1`
86723
- * @maxLength `512`
86724
- * @pattern `arn:.*`
87583
+ * @maxLength `2048`
87584
+ * @pattern `arn:.*:secretsmanager:[a-zA-Z0-9\-]+:\d{12}:secret:[a-zA-Z0-9\-/_+=.@]+`
86725
87585
  */
86726
87586
  SecretARN?: string;
86727
87587
  };
@@ -177254,6 +178114,7 @@ export interface ResourceTypes {
177254
178114
  "AWS::FSx::Volume": FSxVolumeProps;
177255
178115
  "AWS::GameLift::Alias": GameLiftAliasProps;
177256
178116
  "AWS::GameLift::Build": GameLiftBuildProps;
178117
+ "AWS::GameLift::ContainerFleet": GameLiftContainerFleetProps;
177257
178118
  "AWS::GameLift::ContainerGroupDefinition": GameLiftContainerGroupDefinitionProps;
177258
178119
  "AWS::GameLift::Fleet": GameLiftFleetProps;
177259
178120
  "AWS::GameLift::GameServerGroup": GameLiftGameServerGroupProps;
@@ -178513,6 +179374,7 @@ export interface AttributeTypes {
178513
179374
  "AWS::FSx::Volume": FSxVolumeAttributes;
178514
179375
  "AWS::GameLift::Alias": GameLiftAliasAttributes;
178515
179376
  "AWS::GameLift::Build": GameLiftBuildAttributes;
179377
+ "AWS::GameLift::ContainerFleet": GameLiftContainerFleetAttributes;
178516
179378
  "AWS::GameLift::ContainerGroupDefinition": GameLiftContainerGroupDefinitionAttributes;
178517
179379
  "AWS::GameLift::Fleet": GameLiftFleetAttributes;
178518
179380
  "AWS::GameLift::GameServerGroup": GameLiftGameServerGroupAttributes;
@@ -179760,6 +180622,7 @@ export declare const ResourceType: {
179760
180622
  readonly FSxVolume: "AWS::FSx::Volume";
179761
180623
  readonly GameLiftAlias: "AWS::GameLift::Alias";
179762
180624
  readonly GameLiftBuild: "AWS::GameLift::Build";
180625
+ readonly GameLiftContainerFleet: "AWS::GameLift::ContainerFleet";
179763
180626
  readonly GameLiftContainerGroupDefinition: "AWS::GameLift::ContainerGroupDefinition";
179764
180627
  readonly GameLiftFleet: "AWS::GameLift::Fleet";
179765
180628
  readonly GameLiftGameServerGroup: "AWS::GameLift::GameServerGroup";