@awboost/cfn-resource-types 0.1.467 → 0.1.469

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.
@@ -28,9 +28,9 @@ export type CassandraKeyspaceProperties = {
28
28
  export type ReplicationSpecification = {
29
29
  /**
30
30
  * @minLength `2`
31
- * @maxLength `17`
31
+ * @maxLength `20`
32
32
  */
33
- RegionList?: ("af-south-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")[];
33
+ RegionList?: ("af-south-1" | "ap-east-1" | "ap-northeast-1" | "ap-northeast-2" | "ap-south-1" | "ap-southeast-1" | "ap-southeast-2" | "ca-central-1" | "eu-central-1" | "eu-north-1" | "eu-west-1" | "eu-west-2" | "eu-west-3" | "me-central-1" | "me-south-1" | "sa-east-1" | "us-east-1" | "us-east-2" | "us-west-1" | "us-west-2")[];
34
34
  ReplicationStrategy?: "SINGLE_REGION" | "MULTI_REGION";
35
35
  };
36
36
  /**
@@ -31,7 +31,7 @@ export type ECRRepositoryCreationTemplateProperties = {
31
31
  */
32
32
  ImageTagMutability?: "MUTABLE" | "IMMUTABLE" | "IMMUTABLE_WITH_EXCLUSION" | "MUTABLE_WITH_EXCLUSION";
33
33
  /**
34
- * Defines the image tag mutability exclusion filters to apply when creating repositories from this template. These filters specify which image tags can override the repository's default image tag mutability setting.
34
+ * A list of filters that specify which image tags are excluded from the repository creation template's image tag mutability setting.
35
35
  * @minLength `1`
36
36
  * @maxLength `5`
37
37
  */
@@ -104,7 +104,7 @@ export type EncryptionConfiguration = {
104
104
  export type EncryptionType = "AES256" | "KMS" | "KMS_DSSE";
105
105
  /**
106
106
  * Type definition for `AWS::ECR::RepositoryCreationTemplate.ImageTagMutabilityExclusionFilter`.
107
- * Overrides the default image tag mutability setting of the repository for image tags that match the specified filters.
107
+ * A filter that specifies which image tags should be excluded from the repository's image tag mutability setting.
108
108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecr-repositorycreationtemplate-imagetagmutabilityexclusionfilter.html}
109
109
  */
110
110
  export type ImageTagMutabilityExclusionFilter = {
@@ -77,7 +77,7 @@ export type ECSTaskDefinitionProperties = {
77
77
  * The process namespace to use for the containers in the task. The valid values are ``host`` or ``task``. On Fargate for Linux containers, the only valid value is ``task``. For example, monitoring sidecars might need ``pidMode`` to access information about other containers running in the same task.
78
78
  If ``host`` is specified, all containers within the tasks that specified the ``host`` PID mode on the same container instance share the same process namespace with the host Amazon EC2 instance.
79
79
  If ``task`` is specified, all containers within the specified task share the same process namespace.
80
- If no value is specified, the default is a private namespace for each container.
80
+ If no value is specified, the The default is a private namespace for each container.
81
81
  If the ``host`` PID mode is used, there's a heightened risk of undesired process namespace exposure.
82
82
  This parameter is not supported for Windows containers.
83
83
  This parameter is only supported for tasks that are hosted on FARGATElong if the tasks are using platform version ``1.4.0`` or later (Linux). This isn't supported for Windows containers on Fargate.
@@ -98,7 +98,7 @@ export type ECSTaskDefinitionProperties = {
98
98
  */
99
99
  RequiresCompatibilities?: string[];
100
100
  /**
101
- * The operating system that your tasks definitions run on. A platform family is specified only for tasks using the Fargate launch type.
101
+ * The operating system that your tasks definitions run on.
102
102
  */
103
103
  RuntimePlatform?: RuntimePlatform;
104
104
  /**
@@ -158,7 +158,7 @@ export type ContainerDefinition = {
158
158
  */
159
159
  Command?: string[];
160
160
  /**
161
- * The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create commandand the ``--cpu-shares`` option to docker run.
161
+ * The number of ``cpu`` units reserved for the container. This parameter maps to ``CpuShares`` in the docker container create command and the ``--cpu-shares`` option to docker run.
162
162
  This field is optional for tasks using the Fargate launch type, and the only requirement is that the total amount of CPU reserved for all containers within a task be lower than the task-level ``cpu`` value.
163
163
  You can determine the number of CPU units that are available per EC2 instance type by multiplying the vCPUs listed for that instance type on the [Amazon EC2 Instances](https://docs.aws.amazon.com/ec2/instance-types/) detail page by 1,024.
164
164
  Linux containers share unallocated CPU units with other containers on the container instance with the same ratio as their allocated amount. For example, if you run a single-container task on a single-core instance type with 512 CPU units specified for that container, and that's the only task running on the container instance, that container could use the full 1,024 CPU unit share at any given time. However, if you launched another copy of the same task on that container instance, each task is guaranteed a minimum of 512 CPU units when needed. Moreover, each container could float to higher CPU usage if the other container was not using it. If both tasks were 100% active all of the time, they would be limited to 512 CPU units.
@@ -959,7 +959,7 @@ export type RestartPolicy = {
959
959
  export type RuntimePlatform = {
960
960
  /**
961
961
  * The CPU architecture.
962
- You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance or Linux containers on Fargate.
962
+ You can run your Linux tasks on an ARM-based platform by setting the value to ``ARM64``. This option is available for tasks that run on Linux Amazon EC2 instance, Amazon ECS Managed Instances, or Linux containers on Fargate.
963
963
  */
964
964
  CpuArchitecture?: string;
965
965
  /**
@@ -12,7 +12,7 @@ export type GameLiftBuildProperties = {
12
12
  /**
13
13
  * The operating system that the game server binaries are built to run on. This value determines the type of fleet resources that you can use for this build. If your game build contains multiple executables, they all must run on the same operating system. If an operating system is not specified when creating a build, Amazon GameLift uses the default value (WINDOWS_2012). This value cannot be changed later.
14
14
  */
15
- OperatingSystem?: "AMAZON_LINUX" | "AMAZON_LINUX_2" | "AMAZON_LINUX_2023" | "WINDOWS_2012" | "WINDOWS_2016";
15
+ OperatingSystem?: "AMAZON_LINUX" | "AMAZON_LINUX_2" | "AMAZON_LINUX_2023" | "WINDOWS_2012" | "WINDOWS_2016" | "WINDOWS_2022";
16
16
  /**
17
17
  * A server SDK version you used when integrating your game server build with Amazon GameLift. By default Amazon GameLift sets this value to 4.0.2.
18
18
  */
@@ -63,6 +63,10 @@ export type OpenSearchServerlessCollectionAttributes = {
63
63
  * @maxLength `40`
64
64
  */
65
65
  Id: string;
66
+ /**
67
+ * The ARN of the AWS KMS key used to encrypt the collection.
68
+ */
69
+ KmsKeyArn: string;
66
70
  };
67
71
  /**
68
72
  * Type definition for `AWS::OpenSearchServerless::Collection.CollectionType`.