@awboost/cfn-resource-types 0.1.502 → 0.1.504

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,6 +13,11 @@ export type BedrockAgentCoreGatewayProperties = {
13
13
  */
14
14
  Description?: string;
15
15
  ExceptionLevel?: ExceptionLevel;
16
+ /**
17
+ * @minLength `1`
18
+ * @maxLength `2`
19
+ */
20
+ InterceptorConfigurations?: GatewayInterceptorConfiguration[];
16
21
  /**
17
22
  * @minLength `1`
18
23
  * @maxLength `2048`
@@ -77,7 +82,7 @@ export type AuthorizerConfiguration = {
77
82
  * Type definition for `AWS::BedrockAgentCore::Gateway.AuthorizerType`.
78
83
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-authorizertype.html}
79
84
  */
80
- export type AuthorizerType = "CUSTOM_JWT" | "AWS_IAM";
85
+ export type AuthorizerType = "CUSTOM_JWT" | "AWS_IAM" | "NONE";
81
86
  /**
82
87
  * Type definition for `AWS::BedrockAgentCore::Gateway.CustomJWTAuthorizerConfiguration`.
83
88
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-customjwtauthorizerconfiguration.html}
@@ -101,6 +106,24 @@ export type CustomJWTAuthorizerConfiguration = {
101
106
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-exceptionlevel.html}
102
107
  */
103
108
  export type ExceptionLevel = "DEBUG";
109
+ /**
110
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptionPoint`.
111
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptionpoint.html}
112
+ */
113
+ export type GatewayInterceptionPoint = "REQUEST" | "RESPONSE";
114
+ /**
115
+ * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayInterceptorConfiguration`.
116
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayinterceptorconfiguration.html}
117
+ */
118
+ export type GatewayInterceptorConfiguration = {
119
+ InputConfiguration?: InterceptorInputConfiguration;
120
+ /**
121
+ * @minLength `1`
122
+ * @maxLength `2`
123
+ */
124
+ InterceptionPoints: GatewayInterceptionPoint[];
125
+ Interceptor: InterceptorConfiguration;
126
+ };
104
127
  /**
105
128
  * Type definition for `AWS::BedrockAgentCore::Gateway.GatewayProtocolConfiguration`.
106
129
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewayprotocolconfiguration.html}
@@ -118,6 +141,32 @@ export type GatewayProtocolType = "MCP";
118
141
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-gatewaystatus.html}
119
142
  */
120
143
  export type GatewayStatus = "CREATING" | "UPDATING" | "UPDATE_UNSUCCESSFUL" | "DELETING" | "READY" | "FAILED";
144
+ /**
145
+ * Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorConfiguration`.
146
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorconfiguration.html}
147
+ */
148
+ export type InterceptorConfiguration = {
149
+ Lambda: LambdaInterceptorConfiguration;
150
+ };
151
+ /**
152
+ * Type definition for `AWS::BedrockAgentCore::Gateway.InterceptorInputConfiguration`.
153
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-interceptorinputconfiguration.html}
154
+ */
155
+ export type InterceptorInputConfiguration = {
156
+ PassRequestHeaders: boolean;
157
+ };
158
+ /**
159
+ * Type definition for `AWS::BedrockAgentCore::Gateway.LambdaInterceptorConfiguration`.
160
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-lambdainterceptorconfiguration.html}
161
+ */
162
+ export type LambdaInterceptorConfiguration = {
163
+ /**
164
+ * @minLength `1`
165
+ * @maxLength `170`
166
+ * @pattern `^arn:(aws[a-zA-Z-]*)?:lambda:([a-z]{2}(-gov)?-[a-z]+-\d{1}):(\d{12}):function:([a-zA-Z0-9-_.]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?$`
167
+ */
168
+ Arn: string;
169
+ };
121
170
  /**
122
171
  * Type definition for `AWS::BedrockAgentCore::Gateway.MCPGatewayConfiguration`.
123
172
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrockagentcore-gateway-mcpgatewayconfiguration.html}
@@ -1,22 +1,26 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
4
+ * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
5
+ * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
5
6
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
6
7
  */
7
8
  export type EC2NetworkInterfaceAttachmentProperties = {
8
9
  /**
9
- * Whether to delete the network interface when the instance terminates. By default, this value is set to true.
10
+ * Whether to delete the network interface when the instance terminates. By default, this value is set to ``true``.
10
11
  */
11
12
  DeleteOnTermination?: boolean;
12
13
  /**
13
- * The network interface's position in the attachment order. For example, the first attached network interface has a DeviceIndex of 0.
14
+ * The network interface's position in the attachment order. For example, the first attached network interface has a ``DeviceIndex`` of 0.
14
15
  */
15
16
  DeviceIndex: string;
16
17
  /**
17
- * The number of ENA queues to be created with the instance.
18
+ * The number of ENA queues created with the instance.
18
19
  */
19
20
  EnaQueueCount?: number;
21
+ /**
22
+ * Configures ENA Express for the network interface that this action attaches to the instance.
23
+ */
20
24
  EnaSrdSpecification?: EnaSrdSpecification;
21
25
  /**
22
26
  * The ID of the instance to which you will attach the ENI.
@@ -32,23 +36,29 @@ export type EC2NetworkInterfaceAttachmentProperties = {
32
36
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html#aws-resource-ec2-networkinterfaceattachment-return-values}
33
37
  */
34
38
  export type EC2NetworkInterfaceAttachmentAttributes = {
35
- /**
36
- * The ID of the network interface attachment.
37
- */
38
39
  AttachmentId: string;
39
40
  };
40
41
  /**
41
42
  * Type definition for `AWS::EC2::NetworkInterfaceAttachment.EnaSrdSpecification`.
43
+ * ENA Express uses AWS Scalable Reliable Datagram (SRD) technology to increase the maximum bandwidth used per stream and minimize tail latency of network traffic between EC2 instances. With ENA Express, you can communicate between two EC2 instances in the same subnet within the same account, or in different accounts. Both sending and receiving instances must have ENA Express enabled.
44
+ To improve the reliability of network packet delivery, ENA Express reorders network packets on the receiving end by default. However, some UDP-based applications are designed to handle network packets that are out of order to reduce the overhead for packet delivery at the network layer. When ENA Express is enabled, you can specify whether UDP network traffic uses it.
42
45
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-networkinterfaceattachment-enasrdspecification.html}
43
46
  */
44
47
  export type EnaSrdSpecification = {
48
+ /**
49
+ * Indicates whether ENA Express is enabled for the network interface.
50
+ */
45
51
  EnaSrdEnabled?: boolean;
52
+ /**
53
+ * Configures ENA Express for UDP network traffic.
54
+ */
46
55
  EnaSrdUdpSpecification?: {
47
56
  EnaSrdUdpEnabled?: boolean;
48
57
  };
49
58
  };
50
59
  /**
51
- * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
60
+ * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
61
+ * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
52
62
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
53
63
  */
54
64
  export declare class EC2NetworkInterfaceAttachment extends $Resource<"AWS::EC2::NetworkInterfaceAttachment", EC2NetworkInterfaceAttachmentProperties, EC2NetworkInterfaceAttachmentAttributes> {
@@ -1,6 +1,7 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::EC2::NetworkInterfaceAttachment
3
+ * Resource type definition for `AWS::EC2::NetworkInterfaceAttachment`.
4
+ * Attaches an elastic network interface (ENI) to an Amazon EC2 instance. You can use this resource type to attach additional network interfaces to an instance without interruption.
4
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-networkinterfaceattachment.html}
5
6
  */
6
7
  export class EC2NetworkInterfaceAttachment extends $Resource {
@@ -39,7 +39,7 @@ export type RepositoryFilter = {
39
39
  * Repository name pattern (supports '*' wildcard).
40
40
  * @minLength `1`
41
41
  * @maxLength `256`
42
- * @pattern `^(?=.{1,256}$)(?:[a-z0-9*]+(?:[._-][a-z0-9*]*)/‍*)*[a-z0-9*]*(?:[._-][a-z0-9*]*)*$`
42
+ * @pattern `^(?:[a-z0-9*]+(?:[._-][a-z0-9*]+)/‍*)*[a-z0-9*]+(?:[._-][a-z0-9*]+)*$`
43
43
  */
44
44
  Filter: string;
45
45
  /**
@@ -399,6 +399,8 @@ export type DeploymentConfiguration = {
399
399
  * The deployment strategy for the service. Choose from these valid values:
400
400
  + ``ROLLING`` - When you create a service which uses the rolling update (``ROLLING``) deployment strategy, the Amazon ECS service scheduler replaces the currently running tasks with new tasks. The number of tasks that Amazon ECS adds or removes from the service during a rolling update is controlled by the service deployment configuration.
401
401
  + ``BLUE_GREEN`` - A blue/green deployment strategy (``BLUE_GREEN``) is a release methodology that reduces downtime and risk by running two identical production environments called blue and green. With Amazon ECS blue/green deployments, you can validate new service revisions before directing production traffic to them. This approach provides a safer way to deploy changes with the ability to quickly roll back if needed.
402
+ + ``LINEAR`` - A *linear* deployment strategy (``LINEAR``) gradually shifts traffic from the current production environment to a new environment in equal percentages over time. With Amazon ECS linear deployments, you can control the pace of traffic shifting and validate new service revisions with increasing amounts of production traffic.
403
+ + ``CANARY`` - A *canary* deployment strategy (``CANARY``) shifts a small percentage of traffic to the new service revision first, then shifts the remaining traffic all at once after a specified time period. This allows you to test the new version with a subset of users before full deployment.
402
404
  */
403
405
  Strategy?: "ROLLING" | "BLUE_GREEN" | "LINEAR" | "CANARY";
404
406
  };
@@ -0,0 +1,474 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
5
+ * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
7
+ */
8
+ export type GroundStationDataflowEndpointGroupV2Properties = {
9
+ /**
10
+ * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the POSTPASS state.
11
+ * @min `30`
12
+ * @max `480`
13
+ */
14
+ ContactPostPassDurationSeconds?: number;
15
+ /**
16
+ * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state. A Ground Station Dataflow Endpoint Group State Change event will be emitted when the Dataflow Endpoint Group enters and exits the PREPASS state.
17
+ * @min `30`
18
+ * @max `480`
19
+ */
20
+ ContactPrePassDurationSeconds?: number;
21
+ /**
22
+ * @minLength `1`
23
+ */
24
+ Endpoints?: CreateEndpointDetails[];
25
+ Tags?: Tag[];
26
+ };
27
+ /**
28
+ * Attribute type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#aws-resource-groundstation-dataflowendpointgroupv2-return-values}
30
+ */
31
+ export type GroundStationDataflowEndpointGroupV2Attributes = {
32
+ /**
33
+ * @pattern `^(arn:(aws[a-zA-Z-]*)?:[a-z0-9-.]+:.*)|()$`
34
+ */
35
+ Arn: string;
36
+ /**
37
+ * @minLength `1`
38
+ */
39
+ EndpointDetails: {
40
+ /**
41
+ * Information about DownlinkAwsGroundStationAgentEndpoint
42
+ */
43
+ DownlinkAwsGroundStationAgentEndpoint: {
44
+ /**
45
+ * The status of AgentEndpoint.
46
+ */
47
+ AgentStatus: AgentStatus;
48
+ /**
49
+ * The results of the audit.
50
+ */
51
+ AuditResults: AuditResults;
52
+ /**
53
+ * Dataflow details for downlink
54
+ */
55
+ DataflowDetails: {
56
+ /**
57
+ * Connection details for downlink, from ground station to agent, and customer to agent
58
+ */
59
+ AgentConnectionDetails: {
60
+ /**
61
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
62
+ */
63
+ AgentIpAndPortAddress: {
64
+ /**
65
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
66
+ * @min `1400`
67
+ * @max `1500`
68
+ */
69
+ Mtu: number;
70
+ /**
71
+ * A socket address with a port range.
72
+ */
73
+ SocketAddress: {
74
+ /**
75
+ * IPv4 socket address.
76
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
77
+ */
78
+ Name: string;
79
+ /**
80
+ * Port range of a socket address.
81
+ */
82
+ PortRange: {
83
+ /**
84
+ * A maximum value.
85
+ */
86
+ Maximum: number;
87
+ /**
88
+ * A minimum value.
89
+ */
90
+ Minimum: number;
91
+ };
92
+ };
93
+ };
94
+ /**
95
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
96
+ */
97
+ EgressAddressAndPort: {
98
+ /**
99
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
100
+ * @min `1400`
101
+ * @max `1500`
102
+ */
103
+ Mtu: number;
104
+ SocketAddress: {
105
+ /**
106
+ * IPv4 socket address.
107
+ */
108
+ Name: string;
109
+ /**
110
+ * Port of a socket address.
111
+ */
112
+ Port: number;
113
+ };
114
+ };
115
+ };
116
+ };
117
+ /**
118
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
119
+ */
120
+ Name: string;
121
+ };
122
+ /**
123
+ * Information about UplinkAwsGroundStationAgentEndpoint
124
+ */
125
+ UplinkAwsGroundStationAgentEndpoint: {
126
+ /**
127
+ * The status of AgentEndpoint.
128
+ */
129
+ AgentStatus: AgentStatus;
130
+ /**
131
+ * The results of the audit.
132
+ */
133
+ AuditResults: AuditResults;
134
+ /**
135
+ * Dataflow details for uplink
136
+ */
137
+ DataflowDetails: {
138
+ /**
139
+ * Connection details for uplink, from ground station to agent, and customer to agent
140
+ */
141
+ AgentConnectionDetails: {
142
+ /**
143
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
144
+ */
145
+ AgentIpAndPortAddress: {
146
+ /**
147
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
148
+ * @min `1400`
149
+ * @max `1500`
150
+ */
151
+ Mtu: number;
152
+ /**
153
+ * A socket address with a port range.
154
+ */
155
+ SocketAddress: {
156
+ /**
157
+ * IPv4 socket address.
158
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
159
+ */
160
+ Name: string;
161
+ /**
162
+ * Port range of a socket address.
163
+ */
164
+ PortRange: {
165
+ /**
166
+ * A maximum value.
167
+ */
168
+ Maximum: number;
169
+ /**
170
+ * A minimum value.
171
+ */
172
+ Minimum: number;
173
+ };
174
+ };
175
+ };
176
+ /**
177
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
178
+ */
179
+ IngressAddressAndPort: {
180
+ /**
181
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
182
+ * @min `1400`
183
+ * @max `1500`
184
+ */
185
+ Mtu: number;
186
+ SocketAddress: {
187
+ /**
188
+ * IPv4 socket address.
189
+ */
190
+ Name: string;
191
+ /**
192
+ * Port of a socket address.
193
+ */
194
+ Port: number;
195
+ };
196
+ };
197
+ };
198
+ };
199
+ /**
200
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
201
+ */
202
+ Name: string;
203
+ };
204
+ }[];
205
+ Id: string;
206
+ };
207
+ /**
208
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AgentStatus`.
209
+ * The status of AgentEndpoint.
210
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-agentstatus.html}
211
+ */
212
+ export type AgentStatus = "SUCCESS" | "FAILED" | "ACTIVE" | "INACTIVE";
213
+ /**
214
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.AuditResults`.
215
+ * The results of the audit.
216
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-auditresults.html}
217
+ */
218
+ export type AuditResults = "HEALTHY" | "UNHEALTHY";
219
+ /**
220
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.ConnectionDetails`.
221
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
222
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html}
223
+ */
224
+ export type ConnectionDetails = {
225
+ /**
226
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
227
+ * @min `1400`
228
+ * @max `1500`
229
+ */
230
+ Mtu?: number;
231
+ SocketAddress: SocketAddress;
232
+ };
233
+ /**
234
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.CreateEndpointDetails`.
235
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html}
236
+ */
237
+ export type CreateEndpointDetails = {
238
+ /**
239
+ * Information about DownlinkAwsGroundStationAgentEndpoint used for create
240
+ */
241
+ DownlinkAwsGroundStationAgentEndpoint?: DownlinkAwsGroundStationAgentEndpoint;
242
+ /**
243
+ * Information about UplinkAwsGroundStationAgentEndpoint used for create
244
+ */
245
+ UplinkAwsGroundStationAgentEndpoint?: UplinkAwsGroundStationAgentEndpoint;
246
+ };
247
+ /**
248
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpoint`.
249
+ * Information about DownlinkAwsGroundStationAgentEndpoint used for create
250
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html}
251
+ */
252
+ export type DownlinkAwsGroundStationAgentEndpoint = {
253
+ /**
254
+ * Dataflow details for downlink
255
+ */
256
+ DataflowDetails: DownlinkDataflowDetails;
257
+ /**
258
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
259
+ */
260
+ Name: string;
261
+ };
262
+ /**
263
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkAwsGroundStationAgentEndpointDetails`.
264
+ * Information about DownlinkAwsGroundStationAgentEndpoint
265
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpointdetails.html}
266
+ */
267
+ export type DownlinkAwsGroundStationAgentEndpointDetails = {
268
+ /**
269
+ * The status of AgentEndpoint.
270
+ */
271
+ AgentStatus?: AgentStatus;
272
+ /**
273
+ * The results of the audit.
274
+ */
275
+ AuditResults?: AuditResults;
276
+ /**
277
+ * Dataflow details for downlink
278
+ */
279
+ DataflowDetails: DownlinkDataflowDetails;
280
+ /**
281
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
282
+ */
283
+ Name: string;
284
+ };
285
+ /**
286
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkConnectionDetails`.
287
+ * Connection details for downlink, from ground station to agent, and customer to agent
288
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html}
289
+ */
290
+ export type DownlinkConnectionDetails = {
291
+ /**
292
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
293
+ */
294
+ AgentIpAndPortAddress: RangedConnectionDetails;
295
+ /**
296
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
297
+ */
298
+ EgressAddressAndPort: ConnectionDetails;
299
+ };
300
+ /**
301
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.DownlinkDataflowDetails`.
302
+ * Dataflow details for downlink
303
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html}
304
+ */
305
+ export type DownlinkDataflowDetails = {
306
+ /**
307
+ * Connection details for downlink, from ground station to agent, and customer to agent
308
+ */
309
+ AgentConnectionDetails?: DownlinkConnectionDetails;
310
+ };
311
+ /**
312
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.EndpointDetails`.
313
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-endpointdetails.html}
314
+ */
315
+ export type EndpointDetails = {
316
+ /**
317
+ * Information about DownlinkAwsGroundStationAgentEndpoint
318
+ */
319
+ DownlinkAwsGroundStationAgentEndpoint?: DownlinkAwsGroundStationAgentEndpointDetails;
320
+ /**
321
+ * Information about UplinkAwsGroundStationAgentEndpoint
322
+ */
323
+ UplinkAwsGroundStationAgentEndpoint?: UplinkAwsGroundStationAgentEndpointDetails;
324
+ };
325
+ /**
326
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.IntegerRange`.
327
+ * An integer range that has a minimum and maximum value.
328
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-integerrange.html}
329
+ */
330
+ export type IntegerRange = {
331
+ /**
332
+ * A maximum value.
333
+ */
334
+ Maximum: number;
335
+ /**
336
+ * A minimum value.
337
+ */
338
+ Minimum: number;
339
+ };
340
+ /**
341
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedConnectionDetails`.
342
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
343
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html}
344
+ */
345
+ export type RangedConnectionDetails = {
346
+ /**
347
+ * Maximum transmission unit (MTU) size in bytes of a dataflow endpoint.
348
+ * @min `1400`
349
+ * @max `1500`
350
+ */
351
+ Mtu?: number;
352
+ /**
353
+ * A socket address with a port range.
354
+ */
355
+ SocketAddress: RangedSocketAddress;
356
+ };
357
+ /**
358
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.RangedSocketAddress`.
359
+ * A socket address with a port range.
360
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html}
361
+ */
362
+ export type RangedSocketAddress = {
363
+ /**
364
+ * IPv4 socket address.
365
+ * @pattern `^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$`
366
+ */
367
+ Name: string;
368
+ /**
369
+ * Port range of a socket address.
370
+ */
371
+ PortRange: IntegerRange;
372
+ };
373
+ /**
374
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.SocketAddress`.
375
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html}
376
+ */
377
+ export type SocketAddress = {
378
+ /**
379
+ * IPv4 socket address.
380
+ */
381
+ Name: string;
382
+ /**
383
+ * Port of a socket address.
384
+ */
385
+ Port: number;
386
+ };
387
+ /**
388
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.Tag`.
389
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-tag.html}
390
+ */
391
+ export type Tag = {
392
+ /**
393
+ * @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,128}$`
394
+ */
395
+ Key: string;
396
+ /**
397
+ * @pattern `^[ a-zA-Z0-9\+\-=._:/@]{1,256}$`
398
+ */
399
+ Value: string;
400
+ };
401
+ /**
402
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpoint`.
403
+ * Information about UplinkAwsGroundStationAgentEndpoint used for create
404
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html}
405
+ */
406
+ export type UplinkAwsGroundStationAgentEndpoint = {
407
+ /**
408
+ * Dataflow details for uplink
409
+ */
410
+ DataflowDetails: UplinkDataflowDetails;
411
+ /**
412
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
413
+ */
414
+ Name: string;
415
+ };
416
+ /**
417
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkAwsGroundStationAgentEndpointDetails`.
418
+ * Information about UplinkAwsGroundStationAgentEndpoint
419
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpointdetails.html}
420
+ */
421
+ export type UplinkAwsGroundStationAgentEndpointDetails = {
422
+ /**
423
+ * The status of AgentEndpoint.
424
+ */
425
+ AgentStatus?: AgentStatus;
426
+ /**
427
+ * The results of the audit.
428
+ */
429
+ AuditResults?: AuditResults;
430
+ /**
431
+ * Dataflow details for uplink
432
+ */
433
+ DataflowDetails: UplinkDataflowDetails;
434
+ /**
435
+ * @pattern `^[ a-zA-Z0-9_:-]{1,256}$`
436
+ */
437
+ Name: string;
438
+ };
439
+ /**
440
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkConnectionDetails`.
441
+ * Connection details for uplink, from ground station to agent, and customer to agent
442
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html}
443
+ */
444
+ export type UplinkConnectionDetails = {
445
+ /**
446
+ * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
447
+ */
448
+ AgentIpAndPortAddress: RangedConnectionDetails;
449
+ /**
450
+ * Socket address of an uplink or downlink agent endpoint with an optional mtu.
451
+ */
452
+ IngressAddressAndPort: ConnectionDetails;
453
+ };
454
+ /**
455
+ * Type definition for `AWS::GroundStation::DataflowEndpointGroupV2.UplinkDataflowDetails`.
456
+ * Dataflow details for uplink
457
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html}
458
+ */
459
+ export type UplinkDataflowDetails = {
460
+ /**
461
+ * Connection details for uplink, from ground station to agent, and customer to agent
462
+ */
463
+ AgentConnectionDetails?: UplinkConnectionDetails;
464
+ };
465
+ /**
466
+ * Resource type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
467
+ * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
468
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
469
+ */
470
+ export declare class GroundStationDataflowEndpointGroupV2 extends $Resource<"AWS::GroundStation::DataflowEndpointGroupV2", GroundStationDataflowEndpointGroupV2Properties, GroundStationDataflowEndpointGroupV2Attributes> {
471
+ static readonly Type = "AWS::GroundStation::DataflowEndpointGroupV2";
472
+ constructor(logicalId: string, properties: GroundStationDataflowEndpointGroupV2Properties, options?: $ResourceOptions);
473
+ }
474
+ //# sourceMappingURL=AWS-GroundStation-DataflowEndpointGroupV2.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::GroundStation::DataflowEndpointGroupV2`.
4
+ * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
6
+ */
7
+ export class GroundStationDataflowEndpointGroupV2 extends $Resource {
8
+ static Type = "AWS::GroundStation::DataflowEndpointGroupV2";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, GroundStationDataflowEndpointGroupV2.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-GroundStation-DataflowEndpointGroupV2.js.map
@@ -44,6 +44,10 @@ export type KafkaConnectConnectorProperties = {
44
44
  * Details of what logs are delivered and where they are delivered.
45
45
  */
46
46
  LogDelivery?: LogDelivery;
47
+ /**
48
+ * The network type of the Connector.
49
+ */
50
+ NetworkType?: "IPV4" | "DUAL";
47
51
  /**
48
52
  * List of plugins to use with the connector.
49
53
  * @minLength `1`
@@ -77,7 +77,7 @@ export type MoveKeyEntry = {
77
77
  * Type definition for `AWS::Logs::Transformer.OcsfVersion`.
78
78
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-ocsfversion.html}
79
79
  */
80
- export type OcsfVersion = "V1.1";
80
+ export type OcsfVersion = "V1.1" | "V1.5";
81
81
  /**
82
82
  * Type definition for `AWS::Logs::Transformer.ParseCloudfront`.
83
83
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-logs-transformer-parsecloudfront.html}
@@ -114,6 +114,12 @@ export type ParseRoute53 = {
114
114
  */
115
115
  export type ParseToOCSF = {
116
116
  EventSource: EventSource;
117
+ /**
118
+ * @minLength `1`
119
+ * @maxLength `10`
120
+ * @pattern `^v\d+\.\d+(\.\d+)?$`
121
+ */
122
+ MappingVersion?: string;
117
123
  OcsfVersion: OcsfVersion;
118
124
  /**
119
125
  * @pattern `^.*[a-zA-Z0-9]+.*$`
@@ -36,6 +36,10 @@ export type Route53ResolverResolverEndpointProperties = {
36
36
  * The Resolver endpoint IP address type.
37
37
  */
38
38
  ResolverEndpointType?: "IPV6" | "IPV4" | "DUALSTACK";
39
+ /**
40
+ * Specifies whether RNI enhanced metrics are enabled for the Resolver Endpoints. When set to true, one-minute granular metrics are published in CloudWatch for each RNI associated with this endpoint. When set to false, metrics are not published. Default is false.
41
+ */
42
+ RniEnhancedMetricsEnabled?: boolean;
39
43
  /**
40
44
  * The ID of one or more security groups that control access to this VPC. The security group must include one or more inbound rules (for inbound endpoints) or outbound rules (for outbound endpoints). Inbound and outbound rules must allow TCP and UDP access. For inbound access, open port 53. For outbound access, open the port that you're using for DNS queries on your network.
41
45
  */
@@ -44,6 +48,10 @@ export type Route53ResolverResolverEndpointProperties = {
44
48
  * An array of key-value pairs to apply to this resource.
45
49
  */
46
50
  Tags?: Tag[];
51
+ /**
52
+ * Specifies whether target name server metrics are enabled for the Outbound Resolver Endpoint. When set to true, one-minute granular metrics are published in CloudWatch for each target name server associated with this endpoint. When set to false, metrics are not published. Default is false.
53
+ */
54
+ TargetNameServerMetricsEnabled?: boolean;
47
55
  };
48
56
  /**
49
57
  * Attribute type definition for `AWS::Route53Resolver::ResolverEndpoint`.
@@ -7,8 +7,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  */
8
8
  export type Route53ResolverResolverRuleAssociationProperties = {
9
9
  /**
10
- * The name of an association between a Resolver rule and a VPC.
11
- */
10
+ * The name of an association between a Resolver rule and a VPC.
11
+ The name can be up to 64 characters long and can contain letters (a-z, A-Z), numbers (0-9), hyphens (-), underscores (_), and spaces. The name cannot consist of only numbers.
12
+ */
12
13
  Name?: string;
13
14
  /**
14
15
  * The ID of the Resolver rule that you associated with the VPC that is specified by ``VPCId``.
@@ -7,6 +7,9 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
7
7
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-s3-bucket.html}
8
8
  */
9
9
  export type S3BucketProperties = {
10
+ /**
11
+ * The ABAC status of the general purpose bucket. When ABAC is enabled for the general purpose bucket, you can use tags to manage access to the general purpose buckets as well as for cost tracking purposes. When ABAC is disabled for the general purpose buckets, you can only use tags for cost tracking purposes. For more information, see [Using tags with S3 general purpose buckets](https://docs.aws.amazon.com/AmazonS3/latest/userguide/buckets-tagging.html).
12
+ */
10
13
  AbacStatus?: "Enabled" | "Disabled";
11
14
  /**
12
15
  * Configures the transfer acceleration state for an Amazon S3 bucket. For more information, see [Amazon S3 Transfer Acceleration](https://docs.aws.amazon.com/AmazonS3/latest/dev/transfer-acceleration.html) in the *Amazon S3 User Guide*.
@@ -249,12 +252,20 @@ export type AnalyticsConfiguration = {
249
252
  };
250
253
  /**
251
254
  * Type definition for `AWS::S3::Bucket.BlockedEncryptionTypes`.
255
+ * A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
256
+ This data type is used with the following actions:
257
+ + [PutBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_PutBucketEncryption.html)
258
+ + [GetBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_GetBucketEncryption.html)
259
+ + [DeleteBucketEncryption](https://docs.aws.amazon.com/AmazonS3/latest/API/API_DeleteBucketEncryption.html)
260
+
261
+ + Permissions You must have the s3:PutEncryptionConfiguration permission to block or unblock an encryption type for a bucket. You must have the s3:GetEncryptionConfiguration permission to view a bucket's encryption type.
252
262
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-blockedencryptiontypes.html}
253
263
  */
254
264
  export type BlockedEncryptionTypes = {
255
265
  /**
256
- * List of encryption types.
257
- */
266
+ * The object encryption type that you want to block or unblock for an Amazon S3 general purpose bucket.
267
+ Currently, this parameter only supports blocking or unblocking server side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
268
+ */
258
269
  EncryptionType?: ("NONE" | "SSE-C")[];
259
270
  };
260
271
  /**
@@ -481,7 +492,7 @@ export type InventoryConfiguration = {
481
492
  /**
482
493
  * Contains the optional fields that are included in the inventory results.
483
494
  */
484
- OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner")[];
495
+ OptionalFields?: ("Size" | "LastModifiedDate" | "StorageClass" | "ETag" | "IsMultipartUploaded" | "ReplicationStatus" | "EncryptionStatus" | "ObjectLockRetainUntilDate" | "ObjectLockMode" | "ObjectLockLegalHoldStatus" | "IntelligentTieringAccessTier" | "BucketKeyStatus" | "ChecksumAlgorithm" | "ObjectAccessControlList" | "ObjectOwner" | "LifecycleExpirationDate")[];
485
496
  /**
486
497
  * Specifies the inventory filter prefix.
487
498
  */
@@ -819,7 +830,7 @@ export type PartitionedPrefix = {
819
830
  };
820
831
  /**
821
832
  * Type definition for `AWS::S3::Bucket.PublicAccessBlockConfiguration`.
822
- * The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
833
+ * The PublicAccessBlock configuration that you want to apply to this Amazon S3 bucket. You can enable the configuration options in any combination. Bucket-level settings work alongside account-level settings (which may inherit from organization-level policies). For more information about when Amazon S3 considers a bucket or object public, see [The Meaning of "Public"](https://docs.aws.amazon.com/AmazonS3/latest/dev/access-control-block-public-access.html#access-control-block-public-access-policy-status) in the *Amazon S3 User Guide*.
823
834
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-publicaccessblockconfiguration.html}
824
835
  */
825
836
  export type PublicAccessBlockConfiguration = {
@@ -1283,6 +1294,10 @@ export type ServerSideEncryptionByDefault = {
1283
1294
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-s3-bucket-serversideencryptionrule.html}
1284
1295
  */
1285
1296
  export type ServerSideEncryptionRule = {
1297
+ /**
1298
+ * A bucket-level setting for Amazon S3 general purpose buckets used to prevent the upload of new objects encrypted with the specified server-side encryption type. For example, blocking an encryption type will block ``PutObject``, ``CopyObject``, ``PostObject``, multipart upload, and replication requests to the bucket for objects with the specified encryption type. However, you can continue to read and list any pre-existing objects already encrypted with the specified encryption type. For more information, see [Blocking or unblocking SSE-C for a general purpose bucket](https://docs.aws.amazon.com/AmazonS3/latest/userguide/blocking-unblocking-s3-c-encryption-gpb.html).
1299
+ Currently, this parameter only supports blocking or unblocking server-side encryption with customer-provided keys (SSE-C). For more information about SSE-C, see [Using server-side encryption with customer-provided keys (SSE-C)](https://docs.aws.amazon.com/AmazonS3/latest/userguide/ServerSideEncryptionCustomerKeys.html).
1300
+ */
1286
1301
  BlockedEncryptionTypes?: BlockedEncryptionTypes;
1287
1302
  /**
1288
1303
  * Specifies whether Amazon S3 should use an S3 Bucket Key with server-side encryption using KMS (SSE-KMS) for new objects in the bucket. Existing objects are not affected. Setting the ``BucketKeyEnabled`` element to ``true`` causes Amazon S3 to use an S3 Bucket Key. By default, S3 Bucket Key is not enabled.
@@ -0,0 +1,77 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource Type definition for AWS::SES::Tenant
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
6
+ */
7
+ export type SESTenantProperties = {
8
+ /**
9
+ * The list of resources to associate with the tenant.
10
+ * @minLength `0`
11
+ */
12
+ ResourceAssociations?: ResourceAssociation[];
13
+ /**
14
+ * The tags (keys and values) associated with the tenant.
15
+ * @minLength `0`
16
+ * @maxLength `50`
17
+ */
18
+ Tags?: Tag[];
19
+ /**
20
+ * The name of the tenant.
21
+ * @minLength `1`
22
+ * @maxLength `64`
23
+ * @pattern `^[\w\-_]+$`
24
+ */
25
+ TenantName: string;
26
+ };
27
+ /**
28
+ * Attribute type definition for `AWS::SES::Tenant`.
29
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#aws-resource-ses-tenant-return-values}
30
+ */
31
+ export type SESTenantAttributes = {
32
+ /**
33
+ * Amazon Resource Name (ARN) of the tenant.
34
+ * @minLength `1`
35
+ */
36
+ Arn: string;
37
+ };
38
+ /**
39
+ * Type definition for `AWS::SES::Tenant.ResourceAssociation`.
40
+ * The resource to associate with the tenant
41
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-resourceassociation.html}
42
+ */
43
+ export type ResourceAssociation = {
44
+ /**
45
+ * The ARN of the resource to associate with the tenant
46
+ * @minLength `1`
47
+ */
48
+ ResourceArn: string;
49
+ };
50
+ /**
51
+ * Type definition for `AWS::SES::Tenant.Tag`.
52
+ * An object that defines the tags (keys and values) that you want to associate with the tenant.
53
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-tenant-tag.html}
54
+ */
55
+ export type Tag = {
56
+ /**
57
+ * The key of the key-value tag.
58
+ * @minLength `1`
59
+ * @maxLength `128`
60
+ */
61
+ Key: string;
62
+ /**
63
+ * The value of the key-value tag.
64
+ * @minLength `0`
65
+ * @maxLength `256`
66
+ */
67
+ Value: string;
68
+ };
69
+ /**
70
+ * Resource Type definition for AWS::SES::Tenant
71
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
72
+ */
73
+ export declare class SESTenant extends $Resource<"AWS::SES::Tenant", SESTenantProperties, SESTenantAttributes> {
74
+ static readonly Type = "AWS::SES::Tenant";
75
+ constructor(logicalId: string, properties: SESTenantProperties, options?: $ResourceOptions);
76
+ }
77
+ //# sourceMappingURL=AWS-SES-Tenant.d.ts.map
@@ -0,0 +1,12 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource Type definition for AWS::SES::Tenant
4
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html}
5
+ */
6
+ export class SESTenant extends $Resource {
7
+ static Type = "AWS::SES::Tenant";
8
+ constructor(logicalId, properties, options) {
9
+ super(logicalId, SESTenant.Type, properties, options);
10
+ }
11
+ }
12
+ //# sourceMappingURL=AWS-SES-Tenant.js.map
@@ -1,15 +1,33 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
3
  /**
4
- * Resource Type definition for AWS::SSM::MaintenanceWindowTarget
4
+ * Resource type definition for AWS::SSM::MaintenanceWindowTarget
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html}
6
6
  */
7
7
  export type SSMMaintenanceWindowTargetProperties = {
8
+ /**
9
+ * A description for the target.
10
+ */
8
11
  Description?: string;
12
+ /**
13
+ * The name for the maintenance window target.
14
+ */
9
15
  Name?: string;
16
+ /**
17
+ * A user-provided value that will be included in any Amazon CloudWatch Events events that are raised while running tasks for these targets in this maintenance window.
18
+ */
10
19
  OwnerInformation?: string;
20
+ /**
21
+ * The type of target that is being registered with the maintenance window.
22
+ */
11
23
  ResourceType: string;
24
+ /**
25
+ * The targets to register with the maintenance window.
26
+ */
12
27
  Targets: Targets[];
28
+ /**
29
+ * The ID of the maintenance window to register the target with.
30
+ */
13
31
  WindowId: string;
14
32
  };
15
33
  /**
@@ -17,18 +35,27 @@ export type SSMMaintenanceWindowTargetProperties = {
17
35
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html#aws-resource-ssm-maintenancewindowtarget-return-values}
18
36
  */
19
37
  export type SSMMaintenanceWindowTargetAttributes = {
20
- Id: string;
38
+ /**
39
+ * The ID of the target.
40
+ */
41
+ WindowTargetId: string;
21
42
  };
22
43
  /**
23
44
  * Type definition for `AWS::SSM::MaintenanceWindowTarget.Targets`.
24
45
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtarget-targets.html}
25
46
  */
26
47
  export type Targets = {
48
+ /**
49
+ * User-defined criteria for sending commands that target managed nodes that meet the criteria.
50
+ */
27
51
  Key: string;
52
+ /**
53
+ * User-defined criteria that maps to Key.
54
+ */
28
55
  Values: string[];
29
56
  };
30
57
  /**
31
- * Resource Type definition for AWS::SSM::MaintenanceWindowTarget
58
+ * Resource type definition for AWS::SSM::MaintenanceWindowTarget
32
59
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html}
33
60
  */
34
61
  export declare class SSMMaintenanceWindowTarget extends $Resource<"AWS::SSM::MaintenanceWindowTarget", SSMMaintenanceWindowTargetProperties, SSMMaintenanceWindowTargetAttributes> {
@@ -1,6 +1,6 @@
1
1
  import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
2
  /**
3
- * Resource Type definition for AWS::SSM::MaintenanceWindowTarget
3
+ * Resource type definition for AWS::SSM::MaintenanceWindowTarget
4
4
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtarget.html}
5
5
  */
6
6
  export class SSMMaintenanceWindowTarget extends $Resource {
@@ -5,19 +5,61 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html}
6
6
  */
7
7
  export type SSMMaintenanceWindowTaskProperties = {
8
+ /**
9
+ * The specification for whether tasks should continue to run after the cutoff time specified in the maintenance windows is reached.
10
+ */
8
11
  CutoffBehavior?: string;
12
+ /**
13
+ * A description of the task.
14
+ */
9
15
  Description?: string;
16
+ /**
17
+ * Information about an Amazon S3 bucket to write Run Command task-level logs to.
18
+ */
10
19
  LoggingInfo?: LoggingInfo;
20
+ /**
21
+ * The maximum number of targets this task can be run for, in parallel.
22
+ */
11
23
  MaxConcurrency?: string;
24
+ /**
25
+ * The maximum number of errors allowed before this task stops being scheduled.
26
+ */
12
27
  MaxErrors?: string;
28
+ /**
29
+ * The task name.
30
+ */
13
31
  Name?: string;
32
+ /**
33
+ * The priority of the task in the maintenance window. The lower the number, the higher the priority. Tasks that have the same priority are scheduled in parallel.
34
+ */
14
35
  Priority: number;
36
+ /**
37
+ * The Amazon Resource Name (ARN) of the IAM service role for AWS Systems Manager to assume when running a maintenance window task.
38
+ */
15
39
  ServiceRoleArn?: string;
40
+ /**
41
+ * The targets (either instances or window target ids).
42
+ */
16
43
  Targets?: Target[];
44
+ /**
45
+ * The resource that the task uses during execution.
46
+ */
17
47
  TaskArn: string;
48
+ /**
49
+ * The parameters to pass to the task when it runs. Populate only the fields that match the task type. All other fields should be empty.
50
+ */
18
51
  TaskInvocationParameters?: TaskInvocationParameters;
52
+ /**
53
+ * The parameters to pass to the task when it runs.
54
+ */
19
55
  TaskParameters?: Record<string, any>;
56
+ /**
57
+ * The type of task.
58
+ */
20
59
  TaskType: string;
60
+ /**
61
+ * The ID of the maintenance window where the task is registered.
62
+ */
21
63
  WindowId: string;
22
64
  };
23
65
  /**
@@ -25,14 +67,23 @@ export type SSMMaintenanceWindowTaskProperties = {
25
67
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-maintenancewindowtask.html#aws-resource-ssm-maintenancewindowtask-return-values}
26
68
  */
27
69
  export type SSMMaintenanceWindowTaskAttributes = {
28
- Id: string;
70
+ /**
71
+ * Unique identifier of the maintenance window task.
72
+ */
73
+ WindowTaskId: string;
29
74
  };
30
75
  /**
31
76
  * Type definition for `AWS::SSM::MaintenanceWindowTask.CloudWatchOutputConfig`.
32
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-maintenancewindowtask-cloudwatchoutputconfig.html}
33
78
  */
34
79
  export type CloudWatchOutputConfig = {
80
+ /**
81
+ * The name of the CloudWatch log group where you want to send command output.
82
+ */
35
83
  CloudWatchLogGroupName?: string;
84
+ /**
85
+ * Enables Systems Manager to send command output to CloudWatch Logs.
86
+ */
36
87
  CloudWatchOutputEnabled?: boolean;
37
88
  };
38
89
  /**
@@ -57,6 +57,9 @@ export type SecretsManagerSecretProperties = {
57
57
  + If you use your tagging schema across multiple services and resources, other services might have restrictions on allowed characters. Generally allowed characters: letters, spaces, and numbers representable in UTF-8, plus the following special characters: + - = . _ : / @.
58
58
  */
59
59
  Tags?: Tag[];
60
+ /**
61
+ * The exact string that identifies the third-party partner that holds the external secret. For more information, see [Managed external secret partners](https://docs.aws.amazon.com/secretsmanager/latest/userguide/mes-partners.html).
62
+ */
60
63
  Type?: string;
61
64
  };
62
65
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.502",
3
+ "version": "0.1.504",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },