@awboost/cfn-resource-types 0.1.498 → 0.1.499

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.
@@ -8,7 +8,7 @@ export type ConnectCampaignsV2CampaignProperties = {
8
8
  /**
9
9
  * The possible types of channel subtype config parameters
10
10
  */
11
- ChannelSubtypeConfig: ChannelSubtypeConfig;
11
+ ChannelSubtypeConfig?: ChannelSubtypeConfig;
12
12
  /**
13
13
  * Communication limits config
14
14
  */
@@ -50,6 +50,10 @@ export type ConnectCampaignsV2CampaignProperties = {
50
50
  * @maxLength `50`
51
51
  */
52
52
  Tags?: Tag[];
53
+ /**
54
+ * Campaign type
55
+ */
56
+ Type?: CampaignType;
53
57
  };
54
58
  /**
55
59
  * Attribute type definition for `AWS::ConnectCampaignsV2::Campaign`.
@@ -91,6 +95,12 @@ export type AnswerMachineDetectionConfig = {
91
95
  */
92
96
  EnableAnswerMachineDetection: boolean;
93
97
  };
98
+ /**
99
+ * Type definition for `AWS::ConnectCampaignsV2::Campaign.CampaignType`.
100
+ * Campaign type
101
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-campaigntype.html}
102
+ */
103
+ export type CampaignType = "MANAGED" | "JOURNEY";
94
104
  /**
95
105
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.ChannelSubtypeConfig`.
96
106
  * The possible types of channel subtype config parameters
@@ -109,6 +119,10 @@ export type ChannelSubtypeConfig = {
109
119
  * Telephony Channel Subtype config
110
120
  */
111
121
  Telephony?: TelephonyChannelSubtypeConfig;
122
+ /**
123
+ * WhatsApp Channel Subtype config
124
+ */
125
+ WhatsApp?: WhatsAppChannelSubtypeConfig;
112
126
  };
113
127
  /**
114
128
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.CommunicationLimit`.
@@ -183,6 +197,10 @@ export type CommunicationTimeConfig = {
183
197
  * Time window config
184
198
  */
185
199
  Telephony?: TimeWindow;
200
+ /**
201
+ * Time window config
202
+ */
203
+ WhatsApp?: TimeWindow;
186
204
  };
187
205
  /**
188
206
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.DailyHour`.
@@ -218,7 +236,7 @@ export type EmailChannelSubtypeConfig = {
218
236
  */
219
237
  Capacity?: number;
220
238
  /**
221
- * Default SMS outbound config
239
+ * Default Email outbound config
222
240
  */
223
241
  DefaultOutboundConfig: EmailOutboundConfig;
224
242
  /**
@@ -228,7 +246,7 @@ export type EmailChannelSubtypeConfig = {
228
246
  };
229
247
  /**
230
248
  * Type definition for `AWS::ConnectCampaignsV2::Campaign.EmailOutboundConfig`.
231
- * Default SMS outbound config
249
+ * Default Email outbound config
232
250
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-emailoutboundconfig.html}
233
251
  */
234
252
  export type EmailOutboundConfig = {
@@ -626,6 +644,59 @@ export type TimeWindow = {
626
644
  */
627
645
  RestrictedPeriods?: RestrictedPeriods;
628
646
  };
647
+ /**
648
+ * Type definition for `AWS::ConnectCampaignsV2::Campaign.WhatsAppChannelSubtypeConfig`.
649
+ * WhatsApp Channel Subtype config
650
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-whatsappchannelsubtypeconfig.html}
651
+ */
652
+ export type WhatsAppChannelSubtypeConfig = {
653
+ /**
654
+ * Allocates outbound capacity for the specific channel of this campaign between multiple active campaigns
655
+ * @min `0.01`
656
+ * @max `1`
657
+ */
658
+ Capacity?: number;
659
+ /**
660
+ * Default WhatsApp outbound config
661
+ */
662
+ DefaultOutboundConfig: WhatsAppOutboundConfig;
663
+ /**
664
+ * WhatsApp Outbound Mode
665
+ */
666
+ OutboundMode: WhatsAppOutboundMode;
667
+ };
668
+ /**
669
+ * Type definition for `AWS::ConnectCampaignsV2::Campaign.WhatsAppOutboundConfig`.
670
+ * Default WhatsApp outbound config
671
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-whatsappoutboundconfig.html}
672
+ */
673
+ export type WhatsAppOutboundConfig = {
674
+ /**
675
+ * Arn
676
+ * @minLength `20`
677
+ * @maxLength `500`
678
+ * @pattern `^arn:.*$`
679
+ */
680
+ ConnectSourcePhoneNumberArn: string;
681
+ /**
682
+ * Arn
683
+ * @minLength `20`
684
+ * @maxLength `500`
685
+ * @pattern `^arn:.*$`
686
+ */
687
+ WisdomTemplateArn: string;
688
+ };
689
+ /**
690
+ * Type definition for `AWS::ConnectCampaignsV2::Campaign.WhatsAppOutboundMode`.
691
+ * WhatsApp Outbound Mode
692
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-connectcampaignsv2-campaign-whatsappoutboundmode.html}
693
+ */
694
+ export type WhatsAppOutboundMode = {
695
+ /**
696
+ * Agentless config
697
+ */
698
+ AgentlessConfig?: AgentlessConfig;
699
+ };
629
700
  /**
630
701
  * Definition of AWS::ConnectCampaignsV2::Campaign Resource Type
631
702
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-connectcampaignsv2-campaign.html}
@@ -121,6 +121,56 @@ export type NodeRepairConfig = {
121
121
  * Set this value to true to enable node auto repair for the node group.
122
122
  */
123
123
  Enabled?: boolean;
124
+ /**
125
+ * Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a count of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set MaxParallelNodesRepairedPercentage at the same time.
126
+ * @min `1`
127
+ */
128
+ MaxParallelNodesRepairedCount?: number;
129
+ /**
130
+ * Specify the maximum number of nodes that can be repaired concurrently or in parallel, expressed as a percentage of unhealthy nodes. This gives you finer-grained control over the pace of node replacements. When using this, you cannot also set MaxParallelNodesRepairedCount at the same time.
131
+ * @min `1`
132
+ * @max `100`
133
+ */
134
+ MaxParallelNodesRepairedPercentage?: number;
135
+ /**
136
+ * Specify a count threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set MaxUnhealthyNodeThresholdPercentage at the same time.
137
+ * @min `1`
138
+ */
139
+ MaxUnhealthyNodeThresholdCount?: number;
140
+ /**
141
+ * Specify a percentage threshold of unhealthy nodes, above which node auto repair actions will stop. When using this, you cannot also set MaxUnhealthyNodeThresholdCount at the same time.
142
+ * @min `1`
143
+ * @max `100`
144
+ */
145
+ MaxUnhealthyNodeThresholdPercentage?: number;
146
+ /**
147
+ * Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.
148
+ */
149
+ NodeRepairConfigOverrides?: NodeRepairConfigOverrides[];
150
+ };
151
+ /**
152
+ * Type definition for `AWS::EKS::Nodegroup.NodeRepairConfigOverrides`.
153
+ * Specify granular overrides for specific repair actions. These overrides control the repair action and the repair delay time before a node is considered eligible for repair. If you use this, you must specify all the values.
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-noderepairconfigoverrides.html}
155
+ */
156
+ export type NodeRepairConfigOverrides = {
157
+ /**
158
+ * Specify the minimum time in minutes to wait before attempting to repair a node with this specific NodeMonitoringCondition and NodeUnhealthyReason.
159
+ * @min `1`
160
+ */
161
+ MinRepairWaitTimeMins?: number;
162
+ /**
163
+ * Specify an unhealthy condition reported by the node monitoring agent that this override would apply to.
164
+ */
165
+ NodeMonitoringCondition?: string;
166
+ /**
167
+ * Specify a reason reported by the node monitoring agent that this override would apply to.
168
+ */
169
+ NodeUnhealthyReason?: string;
170
+ /**
171
+ * Specify the repair action to take for nodes when all of the specified conditions are met.
172
+ */
173
+ RepairAction?: "Replace" | "Reboot" | "NoAction";
124
174
  };
125
175
  /**
126
176
  * Type definition for `AWS::EKS::Nodegroup.RemoteAccess`.
@@ -38,7 +38,7 @@ export type ElasticLoadBalancingV2ListenerProperties = {
38
38
  */
39
39
  Port?: number;
40
40
  /**
41
- * The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, and TCP_UDP. You can’t specify the UDP or TCP_UDP protocol if dual-stack mode is enabled. You can't specify a protocol for a Gateway Load Balancer.
41
+ * The protocol for connections from clients to the load balancer. For Application Load Balancers, the supported protocols are HTTP and HTTPS. For Network Load Balancers, the supported protocols are TCP, TLS, UDP, TCP_UDP, QUIC, and TCP_QUIC. You can’t specify the UDP, TCP_UDP, QUIC, or TCP_QUIC protocol if dual-stack mode is enabled. You can't specify a protocol for a Gateway Load Balancer.
42
42
  */
43
43
  Protocol?: string;
44
44
  /**
@@ -77,6 +77,9 @@ export type Action = {
77
77
  If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
78
78
  */
79
79
  ForwardConfig?: ForwardConfig;
80
+ /**
81
+ * [HTTPS listeners] Information for validating JWT access tokens in client requests. Specify only when ``Type`` is ``jwt-validation``.
82
+ */
80
83
  JwtValidationConfig?: JwtValidationConfig;
81
84
  /**
82
85
  * The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
@@ -246,11 +249,21 @@ export type ForwardConfig = {
246
249
  };
247
250
  /**
248
251
  * Type definition for `AWS::ElasticLoadBalancingV2::Listener.JwtValidationActionAdditionalClaim`.
252
+ * Information about an additional claim to validate.
249
253
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listener-jwtvalidationactionadditionalclaim.html}
250
254
  */
251
255
  export type JwtValidationActionAdditionalClaim = {
256
+ /**
257
+ * The format of the claim value.
258
+ */
252
259
  Format: string;
260
+ /**
261
+ * The name of the claim. You can't specify ``exp``, ``iss``, ``nbf``, or ``iat`` because we validate them by default.
262
+ */
253
263
  Name: string;
264
+ /**
265
+ * The claim value. The maximum size of the list is 10. Each value can be up to 256 characters in length. If the format is ``space-separated-values``, the values can't include spaces.
266
+ */
254
267
  Values: string[];
255
268
  };
256
269
  /**
@@ -59,6 +59,9 @@ export type Action = {
59
59
  If you specify both ``ForwardConfig`` and ``TargetGroupArn``, you can specify only one target group using ``ForwardConfig`` and it must be the same target group specified in ``TargetGroupArn``.
60
60
  */
61
61
  ForwardConfig?: ForwardConfig;
62
+ /**
63
+ * [HTTPS listeners] Information for validating JWT access tokens in client requests. Specify only when ``Type`` is ``jwt-validation``.
64
+ */
62
65
  JwtValidationConfig?: JwtValidationConfig;
63
66
  /**
64
67
  * The order for the action. This value is required for rules with multiple actions. The action with the lowest value for order is performed first.
@@ -262,11 +265,21 @@ export type HttpRequestMethodConfig = {
262
265
  };
263
266
  /**
264
267
  * Type definition for `AWS::ElasticLoadBalancingV2::ListenerRule.JwtValidationActionAdditionalClaim`.
268
+ * Information about an additional claim to validate.
265
269
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-elasticloadbalancingv2-listenerrule-jwtvalidationactionadditionalclaim.html}
266
270
  */
267
271
  export type JwtValidationActionAdditionalClaim = {
272
+ /**
273
+ * The format of the claim value.
274
+ */
268
275
  Format: string;
276
+ /**
277
+ * The name of the claim. You can't specify ``exp``, ``iss``, ``nbf``, or ``iat`` because we validate them by default.
278
+ */
269
279
  Name: string;
280
+ /**
281
+ * The claim value. The maximum size of the list is 10. Each value can be up to 256 characters in length. If the format is ``space-separated-values``, the values can't include spaces.
282
+ */
270
283
  Values: string[];
271
284
  };
272
285
  /**
@@ -116,6 +116,9 @@ export type LoadBalancerAttribute = {
116
116
  + ``connection_logs.s3.enabled`` - Indicates whether connection logs are enabled. The value is ``true`` or ``false``. The default is ``false``.
117
117
  + ``connection_logs.s3.bucket`` - The name of the S3 bucket for the connection logs. This attribute is required if connection logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket.
118
118
  + ``connection_logs.s3.prefix`` - The prefix for the location in the S3 bucket for the connection logs.
119
+ + ``health_check_logs.s3.enabled`` - Indicates whether health check logs are enabled. The value is ``true`` or ``false``. The default is ``false``.
120
+ + ``health_check_logs.s3.bucket`` - The name of the S3 bucket for the health check logs. This attribute is required if health check logs are enabled. The bucket must exist in the same region as the load balancer and have a bucket policy that grants Elastic Load Balancing permissions to write to the bucket.
121
+ + ``health_check_logs.s3.prefix`` - The prefix for the location in the S3 bucket for the health check logs.
119
122
  + ``routing.http.desync_mitigation_mode`` - Determines how the load balancer handles requests that might pose a security risk to your application. The possible values are ``monitor``, ``defensive``, and ``strictest``. The default is ``defensive``.
120
123
  + ``routing.http.drop_invalid_header_fields.enabled`` - Indicates whether HTTP headers with invalid header fields are removed by the load balancer (``true``) or routed to targets (``false``). The default is ``false``.
121
124
  + ``routing.http.preserve_host_header.enabled`` - Indicates whether the Application Load Balancer should preserve the ``Host`` header in the HTTP request and send it to the target without any change. The possible values are ``true`` and ``false``. The default is ``false``.
@@ -6,15 +6,28 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type FSxS3AccessPointAttachmentProperties = {
8
8
  /**
9
- * The Name of the S3AccessPointAttachment
9
+ * The name of the S3 access point attachment; also used for the name of the S3 access point.
10
10
  * @minLength `3`
11
11
  * @maxLength `50`
12
12
  * @pattern `^(?=[a-z0-9])[a-z0-9-]{1,48}[a-z0-9]$`
13
13
  */
14
14
  Name: string;
15
- OpenZFSConfiguration: S3AccessPointOpenZFSConfiguration;
15
+ /**
16
+ * The OntapConfiguration of the S3 access point attachment.
17
+ */
18
+ OntapConfiguration?: S3AccessPointOntapConfiguration;
19
+ /**
20
+ * The OpenZFSConfiguration of the S3 access point attachment.
21
+ */
22
+ OpenZFSConfiguration?: S3AccessPointOpenZFSConfiguration;
23
+ /**
24
+ * The S3 access point configuration of the S3 access point attachment.
25
+ */
16
26
  S3AccessPoint?: S3AccessPoint;
17
- Type: "OPENZFS";
27
+ /**
28
+ * The type of Amazon FSx volume that the S3 access point is attached to.
29
+ */
30
+ Type: "OPENZFS" | "ONTAP";
18
31
  };
19
32
  /**
20
33
  * Type definition for `AWS::FSx::S3AccessPointAttachment.FileSystemGID`.
@@ -22,17 +35,68 @@ export type FSxS3AccessPointAttachmentProperties = {
22
35
  */
23
36
  export type FileSystemGID = {
24
37
  /**
38
+ * The GID of the file system user.
25
39
  * @min `0`
26
40
  * @max `4294967295`
27
41
  */
28
42
  Gid: number;
29
43
  };
44
+ /**
45
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.OntapFileSystemIdentity`.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-ontapfilesystemidentity.html}
47
+ */
48
+ export type OntapFileSystemIdentity = {
49
+ /**
50
+ * Specifies the FSx for ONTAP user identity type, accepts either UNIX or WINDOWS.
51
+ */
52
+ Type: "UNIX" | "WINDOWS";
53
+ /**
54
+ * Specifies the properties of the file system UNIX user.
55
+ */
56
+ UnixUser?: OntapUnixFileSystemUser;
57
+ /**
58
+ * Specifies the properties of the file system Windows user.
59
+ */
60
+ WindowsUser?: OntapWindowsFileSystemUser;
61
+ };
62
+ /**
63
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.OntapUnixFileSystemUser`.
64
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-ontapunixfilesystemuser.html}
65
+ */
66
+ export type OntapUnixFileSystemUser = {
67
+ /**
68
+ * The name of the UNIX user.
69
+ * @minLength `1`
70
+ * @maxLength `256`
71
+ * @pattern `^[^\u0000\u0085\u2028\u2029\r\n]{1,256}$`
72
+ */
73
+ Name: string;
74
+ };
75
+ /**
76
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.OntapWindowsFileSystemUser`.
77
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-ontapwindowsfilesystemuser.html}
78
+ */
79
+ export type OntapWindowsFileSystemUser = {
80
+ /**
81
+ * The name of the Windows user.
82
+ * @minLength `1`
83
+ * @maxLength `256`
84
+ * @pattern `^[^\u0000\u0085\u2028\u2029\r\n]{1,256}$`
85
+ */
86
+ Name: string;
87
+ };
30
88
  /**
31
89
  * Type definition for `AWS::FSx::S3AccessPointAttachment.OpenZFSFileSystemIdentity`.
32
90
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-openzfsfilesystemidentity.html}
33
91
  */
34
92
  export type OpenZFSFileSystemIdentity = {
93
+ /**
94
+ * Specifies the UID and GIDs of the file system POSIX user.
95
+ */
35
96
  PosixUser: OpenZFSPosixFileSystemUser;
97
+ /**
98
+ * Specifies the FSx for OpenZFS user identity type, accepts only POSIX.
99
+ */
36
100
  Type: "POSIX";
37
101
  };
38
102
  /**
@@ -41,12 +105,17 @@ export type OpenZFSFileSystemIdentity = {
41
105
  */
42
106
  export type OpenZFSPosixFileSystemUser = {
43
107
  /**
108
+ * The GID of the file system user.
44
109
  * @min `0`
45
110
  * @max `4294967295`
46
111
  */
47
112
  Gid: number;
113
+ /**
114
+ * The list of secondary GIDs for the file system user.
115
+ */
48
116
  SecondaryGids?: FileSystemGID[];
49
117
  /**
118
+ * The UID of the file system user.
50
119
  * @min `0`
51
120
  * @max `4294967295`
52
121
  */
@@ -57,16 +126,43 @@ export type OpenZFSPosixFileSystemUser = {
57
126
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspoint.html}
58
127
  */
59
128
  export type S3AccessPoint = {
129
+ /**
130
+ * The S3 access point's policy.
131
+ */
60
132
  Policy?: Record<string, any> | string;
133
+ /**
134
+ * The S3 access point's virtual private cloud (VPC) configuration.
135
+ */
61
136
  VpcConfiguration?: S3AccessPointVpcConfiguration;
62
137
  };
138
+ /**
139
+ * Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPointOntapConfiguration`.
140
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointontapconfiguration.html}
141
+ */
142
+ export type S3AccessPointOntapConfiguration = {
143
+ /**
144
+ * The file system identity used to authorize file access requests made using the S3 access point.
145
+ */
146
+ FileSystemIdentity: OntapFileSystemIdentity;
147
+ /**
148
+ * The ID of the FSx for ONTAP volume that the S3 access point is attached to.
149
+ * @minLength `23`
150
+ * @maxLength `23`
151
+ * @pattern `^(fsvol-[0-9a-f]{17,})$`
152
+ */
153
+ VolumeId: string;
154
+ };
63
155
  /**
64
156
  * Type definition for `AWS::FSx::S3AccessPointAttachment.S3AccessPointOpenZFSConfiguration`.
65
157
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-fsx-s3accesspointattachment-s3accesspointopenzfsconfiguration.html}
66
158
  */
67
159
  export type S3AccessPointOpenZFSConfiguration = {
160
+ /**
161
+ * The file system identity used to authorize file access requests made using the S3 access point.
162
+ */
68
163
  FileSystemIdentity: OpenZFSFileSystemIdentity;
69
164
  /**
165
+ * The ID of the FSx for OpenZFS volume that the S3 access point is attached to.
70
166
  * @minLength `23`
71
167
  * @maxLength `23`
72
168
  * @pattern `^(fsvol-[0-9a-f]{17,})$`
@@ -79,6 +175,7 @@ export type S3AccessPointOpenZFSConfiguration = {
79
175
  */
80
176
  export type S3AccessPointVpcConfiguration = {
81
177
  /**
178
+ * Specifies the virtual private cloud (VPC) for the S3 access point VPC configuration, if one exists.
82
179
  * @minLength `12`
83
180
  * @maxLength `21`
84
181
  * @pattern `^(vpc-[0-9a-f]{8,})$`
@@ -108,6 +108,7 @@ export type ConfigurationInfo = {
108
108
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-connectivityinfo.html}
109
109
  */
110
110
  export type ConnectivityInfo = {
111
+ NetworkType?: NetworkType;
111
112
  PublicAccess?: PublicAccess;
112
113
  VpcConnectivity?: VpcConnectivity;
113
114
  };
@@ -175,6 +176,11 @@ export type JmxExporter = {
175
176
  export type LoggingInfo = {
176
177
  BrokerLogs: BrokerLogs;
177
178
  };
179
+ /**
180
+ * Type definition for `AWS::MSK::Cluster.NetworkType`.
181
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-networktype.html}
182
+ */
183
+ export type NetworkType = "IPV4" | "DUAL";
178
184
  /**
179
185
  * Type definition for `AWS::MSK::Cluster.NodeExporter`.
180
186
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-msk-cluster-nodeexporter.html}
@@ -34,18 +34,221 @@ export type ObservabilityAdminOrganizationTelemetryRuleAttributes = {
34
34
  */
35
35
  RuleArn: string;
36
36
  };
37
+ /**
38
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.Action`.
39
+ * The enumerated action to take.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-action.html}
41
+ */
42
+ export type Action = "ALLOW" | "BLOCK" | "COUNT" | "CAPTCHA" | "CHALLENGE" | "EXCLUDED_AS_COUNT";
43
+ /**
44
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.ActionCondition`.
45
+ * The condition of the action desired in the filter.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-actioncondition.html}
47
+ */
48
+ export type ActionCondition = {
49
+ /**
50
+ * The enumerated action to take.
51
+ */
52
+ Action?: Action;
53
+ };
54
+ /**
55
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.AdvancedEventSelector`.
56
+ * An advanced event selector that includes optional name and field selectors
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-advancedeventselector.html}
58
+ */
59
+ export type AdvancedEventSelector = {
60
+ /**
61
+ * Contains all selector statements in an advanced event selector.
62
+ */
63
+ FieldSelectors: AdvancedFieldSelector[];
64
+ /**
65
+ * An optional descriptive name for the advanced event selector
66
+ */
67
+ Name?: string;
68
+ };
69
+ /**
70
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.AdvancedFieldSelector`.
71
+ * A single selector statement in an advanced event selector.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-advancedfieldselector.html}
73
+ */
74
+ export type AdvancedFieldSelector = {
75
+ /**
76
+ * An operator that includes events that match the last few characters of the event record field specified as the value of Field.
77
+ */
78
+ EndsWith?: string[];
79
+ /**
80
+ * An operator that includes events that match the exact value of the event record field specified as the value of Field.
81
+ */
82
+ Equals?: string[];
83
+ /**
84
+ * A field in a CloudTrail event record on which to filter events to be logged
85
+ * @minLength `1`
86
+ * @maxLength `1000`
87
+ */
88
+ Field?: string;
89
+ /**
90
+ * An operator that excludes events that match the last few characters of the event record field specified as the value of Field.
91
+ */
92
+ NotEndsWith?: string[];
93
+ /**
94
+ * An operator that excludes events that match the exact value of the event record field specified as the value of Field.
95
+ */
96
+ NotEquals?: string[];
97
+ /**
98
+ * An operator that excludes events that match the first few characters of the event record field specified as the value of Field.
99
+ */
100
+ NotStartsWith?: string[];
101
+ /**
102
+ * An operator that includes events that match the first few characters of the event record field specified as the value of Field.
103
+ */
104
+ StartsWith?: string[];
105
+ };
106
+ /**
107
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.CloudtrailParameters`.
108
+ * Telemetry parameters for Cloudtrail
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-cloudtrailparameters.html}
110
+ */
111
+ export type CloudtrailParameters = {
112
+ /**
113
+ * Create fine-grained selectors for AWS CloudTrail management and data.
114
+ */
115
+ AdvancedEventSelectors: AdvancedEventSelector[];
116
+ };
117
+ /**
118
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.Condition`.
119
+ * A condition for a filter.
120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-condition.html}
121
+ */
122
+ export type Condition = {
123
+ /**
124
+ * The condition of the action desired in the filter.
125
+ */
126
+ ActionCondition?: ActionCondition;
127
+ /**
128
+ * The label name of the condition.
129
+ */
130
+ LabelNameCondition?: LabelNameCondition;
131
+ };
37
132
  /**
38
133
  * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.DestinationType`.
39
134
  * Type of telemetry destination
40
135
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-destinationtype.html}
41
136
  */
42
137
  export type DestinationType = "cloud-watch-logs";
138
+ /**
139
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.ELBLoadBalancerLoggingParameters`.
140
+ * Telemetry parameters for ELB/NLB Load Balancer Logs
141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-elbloadbalancerloggingparameters.html}
142
+ */
143
+ export type ELBLoadBalancerLoggingParameters = {
144
+ /**
145
+ * A delimiter to delineate log fields
146
+ */
147
+ FieldDelimiter?: string;
148
+ OutputFormat?: "plain" | "json";
149
+ };
150
+ /**
151
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.FieldToMatch`.
152
+ * The field that we want to match this rule to.
153
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-fieldtomatch.html}
154
+ */
155
+ export type FieldToMatch = {
156
+ /**
157
+ * The method with which to match this rule.
158
+ */
159
+ Method?: string;
160
+ /**
161
+ * The query string to find the resource to match this field to.
162
+ */
163
+ QueryString?: string;
164
+ /**
165
+ * Header for the field to match.
166
+ */
167
+ SingleHeader?: SingleHeader;
168
+ /**
169
+ * This is the URI path to match this rule to.
170
+ */
171
+ UriPath?: string;
172
+ };
173
+ /**
174
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.Filter`.
175
+ * A filter to be applied
176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-filter.html}
177
+ */
178
+ export type Filter = {
179
+ /**
180
+ * The behavior required of the filter.
181
+ */
182
+ Behavior?: FilterBehavior;
183
+ /**
184
+ * A list of conditions for a filter.
185
+ */
186
+ Conditions?: Condition[];
187
+ /**
188
+ * The requirement portion of the filter.
189
+ */
190
+ Requirement?: FilterRequirement;
191
+ };
192
+ /**
193
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.FilterBehavior`.
194
+ * The behavior required of the filter.
195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-filterbehavior.html}
196
+ */
197
+ export type FilterBehavior = "KEEP" | "DROP";
198
+ /**
199
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.FilterRequirement`.
200
+ * The requirement portion of the filter.
201
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-filterrequirement.html}
202
+ */
203
+ export type FilterRequirement = "MEETS_ALL" | "MEETS_ANY";
204
+ /**
205
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.LabelNameCondition`.
206
+ * The label name of the condition.
207
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-labelnamecondition.html}
208
+ */
209
+ export type LabelNameCondition = {
210
+ /**
211
+ * The label name of the condition.
212
+ * @minLength `1`
213
+ * @maxLength `1024`
214
+ * @pattern `^[0-9A-Za-z_\-:]+$`
215
+ */
216
+ LabelName?: string;
217
+ };
218
+ /**
219
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.LoggingFilter`.
220
+ * Default handling for logs that don't match any of the specified filtering conditions.
221
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-loggingfilter.html}
222
+ */
223
+ export type LoggingFilter = {
224
+ /**
225
+ * The behavior required of the filter.
226
+ */
227
+ DefaultBehavior?: FilterBehavior;
228
+ /**
229
+ * A list of filters to be applied.
230
+ */
231
+ Filters?: Filter[];
232
+ };
43
233
  /**
44
234
  * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.ResourceType`.
45
235
  * Resource Type associated with the Organization Telemetry Rule
46
236
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-resourcetype.html}
47
237
  */
48
- export type ResourceType = "AWS::EC2::VPC";
238
+ export type ResourceType = "AWS::EC2::VPC" | "AWS::WAFv2::WebACL" | "AWS::CloudTrail" | "AWS::EKS::Cluster" | "AWS::ElasticLoadBalancingV2::LoadBalancer";
239
+ /**
240
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.SingleHeader`.
241
+ * Header for the field to match.
242
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-singleheader.html}
243
+ */
244
+ export type SingleHeader = {
245
+ /**
246
+ * The name of the header
247
+ * @minLength `1`
248
+ * @maxLength `64`
249
+ */
250
+ Name: string;
251
+ };
49
252
  /**
50
253
  * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.Tag`.
51
254
  * A key-value pair to associate with a resource
@@ -71,6 +274,10 @@ export type Tag = {
71
274
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrydestinationconfiguration.html}
72
275
  */
73
276
  export type TelemetryDestinationConfiguration = {
277
+ /**
278
+ * Telemetry parameters for Cloudtrail
279
+ */
280
+ CloudtrailParameters?: CloudtrailParameters;
74
281
  /**
75
282
  * Pattern for telemetry data destination
76
283
  */
@@ -79,6 +286,10 @@ export type TelemetryDestinationConfiguration = {
79
286
  * Type of telemetry destination
80
287
  */
81
288
  DestinationType?: DestinationType;
289
+ /**
290
+ * Telemetry parameters for ELB/NLB Load Balancer Logs
291
+ */
292
+ ELBLoadBalancerLoggingParameters?: ELBLoadBalancerLoggingParameters;
82
293
  /**
83
294
  * Number of days to retain the telemetry data in the specified destination
84
295
  */
@@ -87,6 +298,10 @@ export type TelemetryDestinationConfiguration = {
87
298
  * Telemetry parameters for VPC Flow logs
88
299
  */
89
300
  VPCFlowLogParameters?: VPCFlowLogParameters;
301
+ /**
302
+ * Telemetry parameters for WAF v2 Web ACL
303
+ */
304
+ WAFLoggingParameters?: WAFLoggingParameters;
90
305
  };
91
306
  /**
92
307
  * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryRule`.
@@ -110,11 +325,21 @@ export type TelemetryRule = {
110
325
  * Selection Criteria on resource level for rule application
111
326
  */
112
327
  SelectionCriteria?: string;
328
+ /**
329
+ * The telemetry source types for a telemetry rule.
330
+ */
331
+ TelemetrySourceTypes?: TelemetrySourceType[];
113
332
  /**
114
333
  * Telemetry Type associated with the Organization Telemetry Rule
115
334
  */
116
335
  TelemetryType: TelemetryType;
117
336
  };
337
+ /**
338
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetrySourceType`.
339
+ * The telemetry source type that goes into the array.
340
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-telemetrysourcetype.html}
341
+ */
342
+ export type TelemetrySourceType = "VPC_FLOW_LOGS" | "ROUTE53_RESOLVER_QUERY_LOGS" | "EKS_AUDIT_LOGS" | "EKS_AUTHENTICATOR_LOGS" | "EKS_CONTROLLER_MANAGER_LOGS" | "EKS_SCHEDULER_LOGS" | "EKS_API_LOGS";
118
343
  /**
119
344
  * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.TelemetryType`.
120
345
  * Telemetry Type associated with the Organization Telemetry Rule
@@ -140,6 +365,32 @@ export type VPCFlowLogParameters = {
140
365
  */
141
366
  TrafficType?: string;
142
367
  };
368
+ /**
369
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.WAFLoggingParameters`.
370
+ * Telemetry parameters for WAF v2 Web ACL
371
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-wafloggingparameters.html}
372
+ */
373
+ export type WAFLoggingParameters = {
374
+ /**
375
+ * The type of logs to generate for WAF.
376
+ */
377
+ LogType?: WAFLogType;
378
+ /**
379
+ * Default handling for logs that don't match any of the specified filtering conditions.
380
+ */
381
+ LoggingFilter?: LoggingFilter;
382
+ /**
383
+ * Fields not to be included in the logs.
384
+ * @maxLength `100`
385
+ */
386
+ RedactedFields?: FieldToMatch[];
387
+ };
388
+ /**
389
+ * Type definition for `AWS::ObservabilityAdmin::OrganizationTelemetryRule.WAFLogType`.
390
+ * The type of logs to generate for WAF.
391
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-waflogtype.html}
392
+ */
393
+ export type WAFLogType = "WAF_LOGS";
143
394
  /**
144
395
  * The AWS::ObservabilityAdmin::OrganizationTelemetryRule resource defines a CloudWatch Observability Admin Organization Telemetry Rule.
145
396
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-organizationtelemetryrule.html}
@@ -34,18 +34,221 @@ export type ObservabilityAdminTelemetryRuleAttributes = {
34
34
  */
35
35
  RuleArn: string;
36
36
  };
37
+ /**
38
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.Action`.
39
+ * The enumerated action to take.
40
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-action.html}
41
+ */
42
+ export type Action = "ALLOW" | "BLOCK" | "COUNT" | "CAPTCHA" | "CHALLENGE" | "EXCLUDED_AS_COUNT";
43
+ /**
44
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.ActionCondition`.
45
+ * The condition of the action desired in the filter.
46
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-actioncondition.html}
47
+ */
48
+ export type ActionCondition = {
49
+ /**
50
+ * The enumerated action to take.
51
+ */
52
+ Action?: Action;
53
+ };
54
+ /**
55
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.AdvancedEventSelector`.
56
+ * An advanced event selector that includes optional name and field selectors
57
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-advancedeventselector.html}
58
+ */
59
+ export type AdvancedEventSelector = {
60
+ /**
61
+ * Contains all selector statements in an advanced event selector.
62
+ */
63
+ FieldSelectors: AdvancedFieldSelector[];
64
+ /**
65
+ * An optional descriptive name for the advanced event selector
66
+ */
67
+ Name?: string;
68
+ };
69
+ /**
70
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.AdvancedFieldSelector`.
71
+ * A single selector statement in an advanced event selector.
72
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-advancedfieldselector.html}
73
+ */
74
+ export type AdvancedFieldSelector = {
75
+ /**
76
+ * An operator that includes events that match the last few characters of the event record field specified as the value of Field.
77
+ */
78
+ EndsWith?: string[];
79
+ /**
80
+ * An operator that includes events that match the exact value of the event record field specified as the value of Field.
81
+ */
82
+ Equals?: string[];
83
+ /**
84
+ * A field in a CloudTrail event record on which to filter events to be logged
85
+ * @minLength `1`
86
+ * @maxLength `1000`
87
+ */
88
+ Field?: string;
89
+ /**
90
+ * An operator that excludes events that match the last few characters of the event record field specified as the value of Field.
91
+ */
92
+ NotEndsWith?: string[];
93
+ /**
94
+ * An operator that excludes events that match the exact value of the event record field specified as the value of Field.
95
+ */
96
+ NotEquals?: string[];
97
+ /**
98
+ * An operator that excludes events that match the first few characters of the event record field specified as the value of Field.
99
+ */
100
+ NotStartsWith?: string[];
101
+ /**
102
+ * An operator that includes events that match the first few characters of the event record field specified as the value of Field.
103
+ */
104
+ StartsWith?: string[];
105
+ };
106
+ /**
107
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.CloudtrailParameters`.
108
+ * Telemetry parameters for Cloudtrail
109
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-cloudtrailparameters.html}
110
+ */
111
+ export type CloudtrailParameters = {
112
+ /**
113
+ * Create fine-grained selectors for AWS CloudTrail management and data.
114
+ */
115
+ AdvancedEventSelectors: AdvancedEventSelector[];
116
+ };
117
+ /**
118
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.Condition`.
119
+ * A condition for a filter.
120
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-condition.html}
121
+ */
122
+ export type Condition = {
123
+ /**
124
+ * The condition of the action desired in the filter.
125
+ */
126
+ ActionCondition?: ActionCondition;
127
+ /**
128
+ * The label name of the condition.
129
+ */
130
+ LabelNameCondition?: LabelNameCondition;
131
+ };
37
132
  /**
38
133
  * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.DestinationType`.
39
134
  * Type of telemetry destination
40
135
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-destinationtype.html}
41
136
  */
42
137
  export type DestinationType = "cloud-watch-logs";
138
+ /**
139
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.ELBLoadBalancerLoggingParameters`.
140
+ * Telemetry parameters for ELB/NLB Load Balancer Logs
141
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-elbloadbalancerloggingparameters.html}
142
+ */
143
+ export type ELBLoadBalancerLoggingParameters = {
144
+ /**
145
+ * A delimiter to delineate log fields
146
+ */
147
+ FieldDelimiter?: string;
148
+ OutputFormat?: "plain" | "json";
149
+ };
150
+ /**
151
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.FieldToMatch`.
152
+ * The field that we want to match this rule to.
153
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-fieldtomatch.html}
154
+ */
155
+ export type FieldToMatch = {
156
+ /**
157
+ * The method with which to match this rule.
158
+ */
159
+ Method?: string;
160
+ /**
161
+ * The query string to find the resource to match this field to.
162
+ */
163
+ QueryString?: string;
164
+ /**
165
+ * Header for the field to match.
166
+ */
167
+ SingleHeader?: SingleHeader;
168
+ /**
169
+ * This is the URI path to match this rule to.
170
+ */
171
+ UriPath?: string;
172
+ };
173
+ /**
174
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.Filter`.
175
+ * A filter to be applied
176
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-filter.html}
177
+ */
178
+ export type Filter = {
179
+ /**
180
+ * The behavior required of the filter.
181
+ */
182
+ Behavior?: FilterBehavior;
183
+ /**
184
+ * A list of conditions for a filter.
185
+ */
186
+ Conditions?: Condition[];
187
+ /**
188
+ * The requirement portion of the filter.
189
+ */
190
+ Requirement?: FilterRequirement;
191
+ };
192
+ /**
193
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.FilterBehavior`.
194
+ * The behavior required of the filter.
195
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-filterbehavior.html}
196
+ */
197
+ export type FilterBehavior = "KEEP" | "DROP";
198
+ /**
199
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.FilterRequirement`.
200
+ * The requirement portion of the filter.
201
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-filterrequirement.html}
202
+ */
203
+ export type FilterRequirement = "MEETS_ALL" | "MEETS_ANY";
204
+ /**
205
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.LabelNameCondition`.
206
+ * The label name of the condition.
207
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-labelnamecondition.html}
208
+ */
209
+ export type LabelNameCondition = {
210
+ /**
211
+ * The label name of the condition.
212
+ * @minLength `1`
213
+ * @maxLength `1024`
214
+ * @pattern `^[0-9A-Za-z_\-:]+$`
215
+ */
216
+ LabelName?: string;
217
+ };
218
+ /**
219
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.LoggingFilter`.
220
+ * Default handling for logs that don't match any of the specified filtering conditions.
221
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-loggingfilter.html}
222
+ */
223
+ export type LoggingFilter = {
224
+ /**
225
+ * The behavior required of the filter.
226
+ */
227
+ DefaultBehavior?: FilterBehavior;
228
+ /**
229
+ * A list of filters to be applied.
230
+ */
231
+ Filters?: Filter[];
232
+ };
43
233
  /**
44
234
  * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.ResourceType`.
45
235
  * Resource Type associated with the Telemetry Rule
46
236
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-resourcetype.html}
47
237
  */
48
- export type ResourceType = "AWS::EC2::VPC";
238
+ export type ResourceType = "AWS::EC2::VPC" | "AWS::WAFv2::WebACL" | "AWS::CloudTrail" | "AWS::EKS::Cluster" | "AWS::ElasticLoadBalancingV2::LoadBalancer" | "AWS::BedrockAgentCore::Runtime" | "AWS::BedrockAgentCore::Browser" | "AWS::BedrockAgentCore::CodeInterpreter";
239
+ /**
240
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.SingleHeader`.
241
+ * Header for the field to match.
242
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-singleheader.html}
243
+ */
244
+ export type SingleHeader = {
245
+ /**
246
+ * The name of the header
247
+ * @minLength `1`
248
+ * @maxLength `64`
249
+ */
250
+ Name: string;
251
+ };
49
252
  /**
50
253
  * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.Tag`.
51
254
  * A key-value pair to associate with a resource
@@ -71,6 +274,10 @@ export type Tag = {
71
274
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrydestinationconfiguration.html}
72
275
  */
73
276
  export type TelemetryDestinationConfiguration = {
277
+ /**
278
+ * Telemetry parameters for Cloudtrail
279
+ */
280
+ CloudtrailParameters?: CloudtrailParameters;
74
281
  /**
75
282
  * Pattern for telemetry data destination
76
283
  */
@@ -79,6 +286,20 @@ export type TelemetryDestinationConfiguration = {
79
286
  * Type of telemetry destination
80
287
  */
81
288
  DestinationType?: DestinationType;
289
+ /**
290
+ * Telemetry parameters for ELB/NLB Load Balancer Logs
291
+ */
292
+ ELBLoadBalancerLoggingParameters?: ELBLoadBalancerLoggingParameters;
293
+ /**
294
+ * Parameters for BedrockAgentCore log delivery
295
+ */
296
+ LogDeliveryParameters?: {
297
+ /**
298
+ * Types of logs to deliver for BedrockAgentCore resources
299
+ * @minLength `1`
300
+ */
301
+ LogTypes?: ("APPLICATION_LOGS" | "USAGE_LOGS")[];
302
+ };
82
303
  /**
83
304
  * Number of days to retain the telemetry data in the specified destination
84
305
  */
@@ -87,6 +308,10 @@ export type TelemetryDestinationConfiguration = {
87
308
  * Telemetry parameters for VPC Flow logs
88
309
  */
89
310
  VPCFlowLogParameters?: VPCFlowLogParameters;
311
+ /**
312
+ * Telemetry parameters for WAF v2 Web ACL
313
+ */
314
+ WAFLoggingParameters?: WAFLoggingParameters;
90
315
  };
91
316
  /**
92
317
  * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryRule`.
@@ -106,17 +331,27 @@ export type TelemetryRule = {
106
331
  * Selection Criteria on resource level for rule application
107
332
  */
108
333
  SelectionCriteria?: string;
334
+ /**
335
+ * The telemetry source types for a telemetry rule.
336
+ */
337
+ TelemetrySourceTypes?: TelemetrySourceType[];
109
338
  /**
110
339
  * Telemetry Type associated with the Telemetry Rule
111
340
  */
112
341
  TelemetryType: TelemetryType;
113
342
  };
343
+ /**
344
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetrySourceType`.
345
+ * The telemetry source type that goes into the array.
346
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrysourcetype.html}
347
+ */
348
+ export type TelemetrySourceType = "VPC_FLOW_LOGS" | "ROUTE53_RESOLVER_QUERY_LOGS" | "EKS_AUDIT_LOGS" | "EKS_AUTHENTICATOR_LOGS" | "EKS_CONTROLLER_MANAGER_LOGS" | "EKS_SCHEDULER_LOGS" | "EKS_API_LOGS";
114
349
  /**
115
350
  * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.TelemetryType`.
116
351
  * Telemetry Type associated with the Telemetry Rule
117
352
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-telemetrytype.html}
118
353
  */
119
- export type TelemetryType = "Logs";
354
+ export type TelemetryType = "Logs" | "Traces";
120
355
  /**
121
356
  * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.VPCFlowLogParameters`.
122
357
  * Telemetry parameters for VPC Flow logs
@@ -136,6 +371,32 @@ export type VPCFlowLogParameters = {
136
371
  */
137
372
  TrafficType?: string;
138
373
  };
374
+ /**
375
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.WAFLoggingParameters`.
376
+ * Telemetry parameters for WAF v2 Web ACL
377
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-wafloggingparameters.html}
378
+ */
379
+ export type WAFLoggingParameters = {
380
+ /**
381
+ * The type of logs to generate for WAF.
382
+ */
383
+ LogType?: WAFLogType;
384
+ /**
385
+ * Default handling for logs that don't match any of the specified filtering conditions.
386
+ */
387
+ LoggingFilter?: LoggingFilter;
388
+ /**
389
+ * Fields not to be included in the logs.
390
+ * @maxLength `100`
391
+ */
392
+ RedactedFields?: FieldToMatch[];
393
+ };
394
+ /**
395
+ * Type definition for `AWS::ObservabilityAdmin::TelemetryRule.WAFLogType`.
396
+ * The type of logs to generate for WAF.
397
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-telemetryrule-waflogtype.html}
398
+ */
399
+ export type WAFLogType = "WAF_LOGS";
139
400
  /**
140
401
  * The AWS::ObservabilityAdmin::TelemetryRule resource defines a CloudWatch Observability Admin Telemetry Rule.
141
402
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetryrule.html}
@@ -50,6 +50,26 @@ export type RAMResourceShareProperties = {
50
50
  */
51
51
  export type RAMResourceShareAttributes = {
52
52
  Arn: string;
53
+ /**
54
+ * The date and time when the resource share was created.
55
+ */
56
+ CreationTime: string;
57
+ /**
58
+ * The feature set of the resource share.
59
+ */
60
+ FeatureSet: "CREATED_FROM_POLICY" | "PROMOTING_TO_STANDARD" | "STANDARD";
61
+ /**
62
+ * The date and time when the resource share was last updated.
63
+ */
64
+ LastUpdatedTime: string;
65
+ /**
66
+ * The ID of the AWS account that owns the resource share.
67
+ */
68
+ OwningAccountId: string;
69
+ /**
70
+ * The current status of the resource share.
71
+ */
72
+ Status: "PENDING" | "ACTIVE" | "FAILED" | "DELETING" | "DELETED";
53
73
  };
54
74
  /**
55
75
  * Type definition for `AWS::RAM::ResourceShare.Tag`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.498",
3
+ "version": "0.1.499",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },