@awboost/cfn-resource-types 0.1.462 → 0.1.463

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.
@@ -17,6 +17,7 @@ export type BatchJobDefinitionProperties = {
17
17
  Parameters?: Record<string, string>;
18
18
  PlatformCapabilities?: string[];
19
19
  PropagateTags?: boolean;
20
+ ResourceRetentionPolicy?: ResourceRetentionPolicy;
20
21
  RetryStrategy?: RetryStrategy;
21
22
  SchedulingPriority?: number;
22
23
  /**
@@ -428,6 +429,13 @@ export type ResourceRequirement = {
428
429
  Type?: string;
429
430
  Value?: string;
430
431
  };
432
+ /**
433
+ * Type definition for `AWS::Batch::JobDefinition.ResourceRetentionPolicy`.
434
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-resourceretentionpolicy.html}
435
+ */
436
+ export type ResourceRetentionPolicy = {
437
+ SkipDeregisterOnUpdate?: boolean;
438
+ };
431
439
  /**
432
440
  * Type definition for `AWS::Batch::JobDefinition.RetryStrategy`.
433
441
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-batch-jobdefinition-retrystrategy.html}
@@ -76,6 +76,7 @@ export type Dimension = {
76
76
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-firewallpolicy-firewallpolicy.html}
77
77
  */
78
78
  export type FirewallPolicy = {
79
+ EnableTLSSessionHolding?: boolean;
79
80
  PolicyVariables?: {
80
81
  RuleVariables?: RuleVariables;
81
82
  };
@@ -92,7 +92,7 @@ export type Dimension = {
92
92
  * Type definition for `AWS::NetworkFirewall::RuleGroup.GeneratedRulesType`.
93
93
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-generatedrulestype.html}
94
94
  */
95
- export type GeneratedRulesType = "ALLOWLIST" | "DENYLIST";
95
+ export type GeneratedRulesType = "ALLOWLIST" | "DENYLIST" | "ALERTLIST" | "REJECTLIST";
96
96
  /**
97
97
  * Type definition for `AWS::NetworkFirewall::RuleGroup.Header`.
98
98
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-networkfirewall-rulegroup-header.html}
@@ -63,6 +63,10 @@ export type NetworkManagerConnectAttachmentAttributes = {
63
63
  * Creation time of the attachment.
64
64
  */
65
65
  CreatedAt: string;
66
+ /**
67
+ * Errors from the last modification of the attachment.
68
+ */
69
+ LastModificationErrors: string[];
66
70
  /**
67
71
  * The ID of the attachment account owner.
68
72
  */
@@ -55,6 +55,10 @@ export type NetworkManagerDirectConnectGatewayAttachmentAttributes = {
55
55
  * Creation time of the attachment.
56
56
  */
57
57
  CreatedAt: string;
58
+ /**
59
+ * Errors from the last modification of the attachment.
60
+ */
61
+ LastModificationErrors: string[];
58
62
  /**
59
63
  * The name of the network function group attachment.
60
64
  */
@@ -59,6 +59,10 @@ export type NetworkManagerSiteToSiteVpnAttachmentAttributes = {
59
59
  * The Region where the edge is located.
60
60
  */
61
61
  EdgeLocation: string;
62
+ /**
63
+ * Errors from the last modification of the attachment.
64
+ */
65
+ LastModificationErrors: string[];
62
66
  /**
63
67
  * Owner account of the attachment.
64
68
  */
@@ -35,6 +35,10 @@ export type NetworkManagerTransitGatewayPeeringAttributes = {
35
35
  * The location of the transit gateway peering
36
36
  */
37
37
  EdgeLocation: string;
38
+ /**
39
+ * Errors from the last modification of the transit gateway peering.
40
+ */
41
+ LastModificationErrors: string[];
38
42
  /**
39
43
  * Peering owner account Id
40
44
  */
@@ -63,6 +63,10 @@ export type NetworkManagerVpcAttachmentAttributes = {
63
63
  * The Region where the edge is located.
64
64
  */
65
65
  EdgeLocation: string;
66
+ /**
67
+ * Errors from the last modification of the attachment.
68
+ */
69
+ LastModificationErrors: string[];
66
70
  /**
67
71
  * The name of the network function group attachment.
68
72
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.462",
3
+ "version": "0.1.463",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },