@awboost/cfn-resource-types 0.1.353 → 0.1.354

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.
@@ -11,6 +11,10 @@ export type EKSPodIdentityAssociationProperties = {
11
11
  * @minLength `1`
12
12
  */
13
13
  ClusterName: string;
14
+ /**
15
+ * The Disable Session Tags of the pod identity association.
16
+ */
17
+ DisableSessionTags?: boolean;
14
18
  /**
15
19
  * The Kubernetes namespace that the pod identity association is created for.
16
20
  */
@@ -27,6 +31,11 @@ export type EKSPodIdentityAssociationProperties = {
27
31
  * An array of key-value pairs to apply to this resource.
28
32
  */
29
33
  Tags?: Tag[];
34
+ /**
35
+ * The Target Role Arn of the pod identity association.
36
+ * @minLength `1`
37
+ */
38
+ TargetRoleArn?: string;
30
39
  };
31
40
  /**
32
41
  * Attribute type definition for `AWS::EKS::PodIdentityAssociation`.
@@ -42,6 +51,11 @@ export type EKSPodIdentityAssociationAttributes = {
42
51
  * @minLength `1`
43
52
  */
44
53
  AssociationId: string;
54
+ /**
55
+ * The External Id of the pod identity association.
56
+ * @minLength `1`
57
+ */
58
+ ExternalId: string;
45
59
  };
46
60
  /**
47
61
  * Type definition for `AWS::EKS::PodIdentityAssociation.Tag`.
@@ -5,6 +5,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-networkfirewall-loggingconfiguration.html}
6
6
  */
7
7
  export type NetworkFirewallLoggingConfigurationProperties = {
8
+ EnableMonitoringDashboard?: boolean;
8
9
  /**
9
10
  * A resource ARN.
10
11
  * @minLength `1`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.353",
3
+ "version": "0.1.354",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },