@awboost/cfn-resource-types 0.1.91 → 0.1.92

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.
@@ -13,7 +13,7 @@ export type DataSyncAgentProperties = {
13
13
  ActivationKey?: string;
14
14
  /**
15
15
  * The name configured for the agent. Text reference used to identify the agent in the console.
16
- * @minLength `1`
16
+ * @minLength `0`
17
17
  * @maxLength `256`
18
18
  * @pattern `^[a-zA-Z0-9\s+=._:@/-]+$`
19
19
  */
@@ -84,6 +84,7 @@ export type ClusterConfiguration = {
84
84
  * The details of the execute command configuration.
85
85
  */
86
86
  ExecuteCommandConfiguration?: ExecuteCommandConfiguration;
87
+ ManagedStorageConfiguration?: ManagedStorageConfiguration;
87
88
  };
88
89
  /**
89
90
  * Type definition for `AWS::ECS::Cluster.ClusterSettings`.
@@ -152,6 +153,14 @@ export type ExecuteCommandLogConfiguration = {
152
153
  */
153
154
  S3KeyPrefix?: string;
154
155
  };
156
+ /**
157
+ * Type definition for `AWS::ECS::Cluster.ManagedStorageConfiguration`.
158
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-cluster-managedstorageconfiguration.html}
159
+ */
160
+ export type ManagedStorageConfiguration = {
161
+ FargateEphemeralStorageKmsKeyId?: string;
162
+ KmsKeyId?: string;
163
+ };
155
164
  /**
156
165
  * Type definition for `AWS::ECS::Cluster.ServiceConnectDefaults`.
157
166
  * Use this parameter to set a default Service Connect namespace. After you set a default Service Connect namespace, any new services with Service Connect turned on that are created in the cluster are added as client services in the namespace. This setting only applies to new services that set the ``enabled`` parameter to ``true`` in the ``ServiceConnectConfiguration``. You can set the namespace of each service individually in the ``ServiceConnectConfiguration`` to override this default parameter.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.91",
3
+ "version": "0.1.92",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },