@awboost/cfn-resource-types 0.1.56 → 0.1.58

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.
@@ -142,6 +142,7 @@ export type EksContainerResourceRequirements = {
142
142
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-ekscontainersecuritycontext.html}
143
143
  */
144
144
  export type EksContainerSecurityContext = {
145
+ AllowPrivilegeEscalation?: boolean;
145
146
  Privileged?: boolean;
146
147
  ReadOnlyRootFilesystem?: boolean;
147
148
  RunAsGroup?: number;
@@ -229,6 +230,13 @@ export type EvaluateOnExit = {
229
230
  export type FargatePlatformConfiguration = {
230
231
  PlatformVersion?: string;
231
232
  };
233
+ /**
234
+ * Type definition for `AWS::Batch::JobDefinition.ImagePullSecret`.
235
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-imagepullsecret.html}
236
+ */
237
+ export type ImagePullSecret = {
238
+ Name: string;
239
+ };
232
240
  /**
233
241
  * Type definition for `AWS::Batch::JobDefinition.LinuxParameters`.
234
242
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-linuxparameters.html}
@@ -300,6 +308,7 @@ export type PodProperties = {
300
308
  Containers?: EksContainer[];
301
309
  DnsPolicy?: string;
302
310
  HostNetwork?: boolean;
311
+ ImagePullSecrets?: ImagePullSecret[];
303
312
  InitContainers?: EksContainer[];
304
313
  Metadata?: Metadata;
305
314
  ServiceAccountName?: string;
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  export type CloudWatchAnomalyDetectorProperties = {
8
8
  Configuration?: Configuration;
9
9
  Dimensions?: Dimension[];
10
+ MetricCharacteristics?: MetricCharacteristics;
10
11
  MetricMathAnomalyDetector?: MetricMathAnomalyDetector;
11
12
  MetricName?: string;
12
13
  Namespace?: string;
@@ -45,6 +46,13 @@ export type Metric = {
45
46
  MetricName: string;
46
47
  Namespace: string;
47
48
  };
49
+ /**
50
+ * Type definition for `AWS::CloudWatch::AnomalyDetector.MetricCharacteristics`.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-metriccharacteristics.html}
52
+ */
53
+ export type MetricCharacteristics = {
54
+ PeriodicSpikes?: boolean;
55
+ };
48
56
  /**
49
57
  * Type definition for `AWS::CloudWatch::AnomalyDetector.MetricDataQuery`.
50
58
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudwatch-anomalydetector-metricdataquery.html}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.56",
3
+ "version": "0.1.58",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },