@awboost/cfn-resource-types 0.1.503 → 0.1.505
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.
- package/lib/AWS-BedrockAgentCore-Gateway.d.ts +50 -1
- package/lib/AWS-DAX-SubnetGroup.d.ts +3 -10
- package/lib/AWS-DAX-SubnetGroup.js +1 -1
- package/lib/AWS-DataSync-Agent.d.ts +1 -1
- package/lib/AWS-DataSync-LocationAzureBlob.d.ts +7 -7
- package/lib/AWS-DataSync-LocationEFS.d.ts +5 -5
- package/lib/AWS-DataSync-LocationFSxLustre.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxONTAP.d.ts +3 -3
- package/lib/AWS-DataSync-LocationFSxOpenZFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationFSxWindows.d.ts +2 -2
- package/lib/AWS-DataSync-LocationHDFS.d.ts +1 -1
- package/lib/AWS-DataSync-LocationNFS.d.ts +2 -2
- package/lib/AWS-DataSync-LocationObjectStorage.d.ts +7 -7
- package/lib/AWS-DataSync-LocationS3.d.ts +3 -3
- package/lib/AWS-DataSync-LocationSMB.d.ts +8 -8
- package/lib/AWS-DataSync-Task.d.ts +8 -8
- package/lib/AWS-EC2-NetworkInterfaceAttachment.d.ts +18 -8
- package/lib/AWS-EC2-NetworkInterfaceAttachment.js +2 -1
- package/lib/AWS-ECR-SigningConfiguration.d.ts +1 -1
- package/lib/AWS-ECS-Service.d.ts +2 -0
- package/lib/AWS-GroundStation-DataflowEndpointGroupV2.d.ts +474 -0
- package/lib/AWS-GroundStation-DataflowEndpointGroupV2.js +13 -0
- package/lib/AWS-KafkaConnect-Connector.d.ts +4 -0
- package/lib/AWS-Lex-Bot.d.ts +48 -5
- package/lib/AWS-Lex-Bot.js +1 -1
- package/lib/AWS-Lex-BotAlias.d.ts +3 -2
- package/lib/AWS-Lex-BotAlias.js +1 -1
- package/lib/AWS-S3-Bucket.d.ts +19 -4
- package/lib/AWS-SES-Tenant.d.ts +77 -0
- package/lib/AWS-SES-Tenant.js +12 -0
- package/lib/AWS-SSM-MaintenanceWindowTask.d.ts +52 -1
- package/lib/AWS-SecretsManager-Secret.d.ts +3 -0
- package/package.json +1 -1
package/lib/AWS-ECS-Service.d.ts
CHANGED
|
@@ -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`
|
package/lib/AWS-Lex-Bot.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::Lex::Bot`.
|
|
5
|
-
* Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
5
|
+
* Resource Type definition for an Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LexBotProperties = {
|
|
@@ -228,6 +228,8 @@ export type BotLocale = {
|
|
|
228
228
|
* @maxLength `250`
|
|
229
229
|
*/
|
|
230
230
|
SlotTypes?: SlotType[];
|
|
231
|
+
SpeechDetectionSensitivity?: SpeechDetectionSensitivity;
|
|
232
|
+
UnifiedSpeechSettings?: UnifiedSpeechSettings;
|
|
231
233
|
VoiceSettings?: VoiceSettings;
|
|
232
234
|
};
|
|
233
235
|
/**
|
|
@@ -551,7 +553,9 @@ export type GenerativeAISettings = {
|
|
|
551
553
|
};
|
|
552
554
|
RuntimeSettings?: {
|
|
553
555
|
NluImprovementSpecification?: {
|
|
556
|
+
AssistedNluMode?: "Primary" | "Fallback";
|
|
554
557
|
Enabled: boolean;
|
|
558
|
+
IntentDisambiguationSettings?: IntentDisambiguationSettings;
|
|
555
559
|
};
|
|
556
560
|
SlotResolutionImprovementSpecification?: {
|
|
557
561
|
BedrockModelSpecification?: BedrockModelSpecification;
|
|
@@ -644,11 +648,16 @@ export type InputContext = {
|
|
|
644
648
|
export type Intent = {
|
|
645
649
|
BedrockAgentIntentConfiguration?: BedrockAgentIntentConfiguration;
|
|
646
650
|
/**
|
|
647
|
-
*
|
|
651
|
+
* Resource Type definition for the intent.
|
|
648
652
|
* @maxLength `2000`
|
|
649
653
|
*/
|
|
650
654
|
Description?: string;
|
|
651
655
|
DialogCodeHook?: DialogCodeHookSetting;
|
|
656
|
+
/**
|
|
657
|
+
* @minLength `1`
|
|
658
|
+
* @maxLength `100`
|
|
659
|
+
*/
|
|
660
|
+
DisplayName?: string;
|
|
652
661
|
FulfillmentCodeHook?: FulfillmentCodeHookSetting;
|
|
653
662
|
InitialResponseSetting?: InitialResponseSetting;
|
|
654
663
|
/**
|
|
@@ -707,6 +716,23 @@ export type IntentConfirmationSetting = {
|
|
|
707
716
|
IsActive?: boolean;
|
|
708
717
|
PromptSpecification: PromptSpecification;
|
|
709
718
|
};
|
|
719
|
+
/**
|
|
720
|
+
* Type definition for `AWS::Lex::Bot.IntentDisambiguationSettings`.
|
|
721
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentdisambiguationsettings.html}
|
|
722
|
+
*/
|
|
723
|
+
export type IntentDisambiguationSettings = {
|
|
724
|
+
/**
|
|
725
|
+
* @minLength `1`
|
|
726
|
+
* @maxLength `1000`
|
|
727
|
+
*/
|
|
728
|
+
CustomDisambiguationMessage?: string;
|
|
729
|
+
Enabled: boolean;
|
|
730
|
+
/**
|
|
731
|
+
* @min `2`
|
|
732
|
+
* @max `5`
|
|
733
|
+
*/
|
|
734
|
+
MaxDisambiguationIntents?: number;
|
|
735
|
+
};
|
|
710
736
|
/**
|
|
711
737
|
* Type definition for `AWS::Lex::Bot.IntentOverride`.
|
|
712
738
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentoverride.html}
|
|
@@ -1272,9 +1298,15 @@ export type Specifications = {
|
|
|
1272
1298
|
* @maxLength `25`
|
|
1273
1299
|
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
|
1274
1300
|
*/
|
|
1275
|
-
SlotTypeId
|
|
1301
|
+
SlotTypeId?: string;
|
|
1302
|
+
SlotTypeName?: string;
|
|
1276
1303
|
ValueElicitationSetting: SubSlotValueElicitationSetting;
|
|
1277
1304
|
};
|
|
1305
|
+
/**
|
|
1306
|
+
* Type definition for `AWS::Lex::Bot.SpeechDetectionSensitivity`.
|
|
1307
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-speechdetectionsensitivity.html}
|
|
1308
|
+
*/
|
|
1309
|
+
export type SpeechDetectionSensitivity = "Default" | "HighNoiseTolerance" | "MaximumNoiseTolerance";
|
|
1278
1310
|
/**
|
|
1279
1311
|
* Type definition for `AWS::Lex::Bot.SSMLMessage`.
|
|
1280
1312
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-ssmlmessage.html}
|
|
@@ -1337,7 +1369,8 @@ export type SubSlotTypeComposition = {
|
|
|
1337
1369
|
* @maxLength `25`
|
|
1338
1370
|
* @pattern `^((AMAZON\.)[a-zA-Z_]+?|[0-9a-zA-Z]+)$`
|
|
1339
1371
|
*/
|
|
1340
|
-
SlotTypeId
|
|
1372
|
+
SlotTypeId?: string;
|
|
1373
|
+
SlotTypeName?: string;
|
|
1341
1374
|
};
|
|
1342
1375
|
/**
|
|
1343
1376
|
* Type definition for `AWS::Lex::Bot.SubSlotValueElicitationSetting`.
|
|
@@ -1409,6 +1442,16 @@ export type TextLogSetting = {
|
|
|
1409
1442
|
Destination: TextLogDestination;
|
|
1410
1443
|
Enabled: boolean;
|
|
1411
1444
|
};
|
|
1445
|
+
/**
|
|
1446
|
+
* Type definition for `AWS::Lex::Bot.UnifiedSpeechSettings`.
|
|
1447
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-unifiedspeechsettings.html}
|
|
1448
|
+
*/
|
|
1449
|
+
export type UnifiedSpeechSettings = {
|
|
1450
|
+
SpeechFoundationModel: {
|
|
1451
|
+
ModelArn: string;
|
|
1452
|
+
VoiceId?: string;
|
|
1453
|
+
};
|
|
1454
|
+
};
|
|
1412
1455
|
/**
|
|
1413
1456
|
* Type definition for `AWS::Lex::Bot.VoiceSettings`.
|
|
1414
1457
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-voicesettings.html}
|
|
@@ -1429,7 +1472,7 @@ export type WaitAndContinueSpecification = {
|
|
|
1429
1472
|
};
|
|
1430
1473
|
/**
|
|
1431
1474
|
* Resource type definition for `AWS::Lex::Bot`.
|
|
1432
|
-
* Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
1475
|
+
* Resource Type definition for an Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
1433
1476
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
|
1434
1477
|
*/
|
|
1435
1478
|
export declare class LexBot extends $Resource<"AWS::Lex::Bot", LexBotProperties, LexBotAttributes> {
|
package/lib/AWS-Lex-Bot.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::Lex::Bot`.
|
|
4
|
-
* Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
4
|
+
* Resource Type definition for an Amazon Lex conversational bot performing automated tasks such as ordering a pizza, booking a hotel, and so on.
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-bot.html}
|
|
6
6
|
*/
|
|
7
7
|
export class LexBot extends $Resource {
|
|
@@ -2,7 +2,7 @@ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/re
|
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
4
|
* Resource type definition for `AWS::Lex::BotAlias`.
|
|
5
|
-
*
|
|
5
|
+
* Resource Type definition for a Bot Alias, which enables you to change the version of a bot without updating applications that use the bot
|
|
6
6
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botalias.html}
|
|
7
7
|
*/
|
|
8
8
|
export type LexBotAliasProperties = {
|
|
@@ -62,6 +62,7 @@ export type LexBotAliasProperties = {
|
|
|
62
62
|
*/
|
|
63
63
|
export type LexBotAliasAttributes = {
|
|
64
64
|
/**
|
|
65
|
+
* The Amazon Resource Name (ARN) of the bot alias.
|
|
65
66
|
* @maxLength `1000`
|
|
66
67
|
*/
|
|
67
68
|
Arn: string;
|
|
@@ -267,7 +268,7 @@ export type TextLogSetting = {
|
|
|
267
268
|
};
|
|
268
269
|
/**
|
|
269
270
|
* Resource type definition for `AWS::Lex::BotAlias`.
|
|
270
|
-
*
|
|
271
|
+
* Resource Type definition for a Bot Alias, which enables you to change the version of a bot without updating applications that use the bot
|
|
271
272
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botalias.html}
|
|
272
273
|
*/
|
|
273
274
|
export declare class LexBotAlias extends $Resource<"AWS::Lex::BotAlias", LexBotAliasProperties, LexBotAliasAttributes> {
|
package/lib/AWS-Lex-BotAlias.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
3
|
* Resource type definition for `AWS::Lex::BotAlias`.
|
|
4
|
-
*
|
|
4
|
+
* Resource Type definition for a Bot Alias, which enables you to change the version of a bot without updating applications that use the bot
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lex-botalias.html}
|
|
6
6
|
*/
|
|
7
7
|
export class LexBotAlias extends $Resource {
|