@propulsionworks/cloudformation 0.1.40 → 0.1.41

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.
Files changed (29) hide show
  1. package/out/exports/resources.generated/aws-arcregionswitch-plan.d.ts +94 -1
  2. package/out/exports/resources.generated/aws-autoscaling-autoscalinggroup.d.ts +18 -0
  3. package/out/exports/resources.generated/aws-cases-caserule.d.ts +24 -24
  4. package/out/exports/resources.generated/aws-cases-domain.d.ts +10 -6
  5. package/out/exports/resources.generated/aws-cases-field.d.ts +10 -10
  6. package/out/exports/resources.generated/aws-cases-layout.d.ts +30 -20
  7. package/out/exports/resources.generated/aws-cases-template.d.ts +32 -18
  8. package/out/exports/resources.generated/aws-connect-contactflowmodule.d.ts +2 -2
  9. package/out/exports/resources.generated/aws-ec2-clientvpnendpoint.d.ts +2 -0
  10. package/out/exports/resources.generated/aws-ec2-ec2fleet.d.ts +3 -1
  11. package/out/exports/resources.generated/aws-ec2-spotfleet.d.ts +3 -1
  12. package/out/exports/resources.generated/aws-ecs-capacityprovider.d.ts +10 -0
  13. package/out/exports/resources.generated/aws-ecs-expressgatewayservice.d.ts +12 -0
  14. package/out/exports/resources.generated/aws-groundstation-dataflowendpointgroupv2.d.ts +42 -27
  15. package/out/exports/resources.generated/aws-iot-topicrule.d.ts +25 -0
  16. package/out/exports/resources.generated/aws-kafkaconnect-connector.d.ts +1 -1
  17. package/out/exports/resources.generated/aws-lex-bot.d.ts +6 -0
  18. package/out/exports/resources.generated/aws-logs-loggroup.d.ts +1 -0
  19. package/out/exports/resources.generated/aws-mediatailor-playbackconfiguration.d.ts +42 -0
  20. package/out/exports/resources.generated/aws-observabilityadmin-s3tableintegration.d.ts +10 -10
  21. package/out/exports/resources.generated/aws-observabilityadmin-telemetrypipelines.d.ts +20 -3
  22. package/out/exports/resources.generated/aws-odb-odbpeeringconnection.d.ts +1 -1
  23. package/out/exports/resources.generated/aws-quicksight-dashboard.d.ts +15 -2
  24. package/out/exports/resources.generated/aws-securityhub-connectorv2.d.ts +5 -5
  25. package/out/exports/resources.generated/aws-ses-multiregionendpoint.d.ts +1 -1
  26. package/out/exports/resources.generated/aws-ses-tenant.d.ts +11 -7
  27. package/out/exports/resources.generated/aws-ssm-maintenancewindowtask.d.ts +1 -1
  28. package/out/exports/resources.generated/aws-workspacesweb-usersettings.d.ts +1 -0
  29. package/package.json +1 -1
@@ -1,33 +1,43 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
3
+ * Creates a `DataflowEndpoint` group containing the specified list of Ground Station Agent based endpoints.
4
+ *
5
+ * The `name` field in each endpoint is used in your mission profile `DataflowEndpointConfig` to specify which endpoints to use during a contact.
6
+ *
7
+ * When a contact uses multiple `DataflowEndpointConfig` objects, each `Config` must match a `DataflowEndpoint` in the same group.
4
8
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
5
9
  */
6
10
  export type GroundStationDataflowEndpointGroupV2 = ResourceDefinitionWithAttributes<"AWS::GroundStation::DataflowEndpointGroupV2", GroundStationDataflowEndpointGroupV2Props, GroundStationDataflowEndpointGroupV2Attribs>;
7
11
  /**
8
- * Resource Type definition for AWS Ground Station DataflowEndpointGroupV2
12
+ * Creates a `DataflowEndpoint` group containing the specified list of Ground Station Agent based endpoints.
13
+ *
14
+ * The `name` field in each endpoint is used in your mission profile `DataflowEndpointConfig` to specify which endpoints to use during a contact.
15
+ *
16
+ * When a contact uses multiple `DataflowEndpointConfig` objects, each `Config` must match a `DataflowEndpoint` in the same group.
9
17
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html}
10
18
  */
11
19
  export type GroundStationDataflowEndpointGroupV2Props = {
12
20
  /**
13
- * 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.
21
+ * Amount of time, in seconds, after a contact ends that the Ground Station Dataflow Endpoint Group will be in a POSTPASS state.
14
22
  * @min 30
15
23
  * @max 480
16
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#cfn-groundstation-dataflowendpointgroupv2-contactpostpassdurationseconds}
17
25
  */
18
26
  ContactPostPassDurationSeconds?: number | undefined;
19
27
  /**
20
- * 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.
28
+ * Amount of time, in seconds, before a contact starts that the Ground Station Dataflow Endpoint Group will be in a PREPASS state.
21
29
  * @min 30
22
30
  * @max 480
23
31
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#cfn-groundstation-dataflowendpointgroupv2-contactprepassdurationseconds}
24
32
  */
25
33
  ContactPrePassDurationSeconds?: number | undefined;
26
34
  /**
35
+ * List of endpoints for the dataflow endpoint group.
27
36
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#cfn-groundstation-dataflowendpointgroupv2-endpoints}
28
37
  */
29
38
  Endpoints?: CreateEndpointDetails[] | undefined;
30
39
  /**
40
+ * Tags assigned to a resource.
31
41
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-groundstation-dataflowendpointgroupv2.html#cfn-groundstation-dataflowendpointgroupv2-tags}
32
42
  */
33
43
  Tags?: Tag[] | undefined;
@@ -47,7 +57,7 @@ export type GroundStationDataflowEndpointGroupV2Attribs = {
47
57
  Id: string;
48
58
  };
49
59
  /**
50
- * Socket address of an uplink or downlink agent endpoint with an optional mtu.
60
+ * Egress address of AgentEndpoint with an optional mtu.
51
61
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html}
52
62
  */
53
63
  export type ConnectionDetails = {
@@ -59,75 +69,78 @@ export type ConnectionDetails = {
59
69
  */
60
70
  Mtu?: number | undefined;
61
71
  /**
72
+ * A socket address.
62
73
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-connectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-connectiondetails-socketaddress}
63
74
  */
64
75
  SocketAddress: SocketAddress;
65
76
  };
66
77
  /**
78
+ * Endpoint definition used for creating a dataflow endpoint
67
79
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html}
68
80
  */
69
81
  export type CreateEndpointDetails = {
70
82
  /**
71
- * Information about DownlinkAwsGroundStationAgentEndpoint used for create
83
+ * Definition for a downlink agent endpoint
72
84
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-createendpointdetails-downlinkawsgroundstationagentendpoint}
73
85
  */
74
86
  DownlinkAwsGroundStationAgentEndpoint?: DownlinkAwsGroundStationAgentEndpoint | undefined;
75
87
  /**
76
- * Information about UplinkAwsGroundStationAgentEndpoint used for create
88
+ * Definition for an uplink agent endpoint
77
89
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-createendpointdetails-uplinkawsgroundstationagentendpoint}
78
90
  */
79
91
  UplinkAwsGroundStationAgentEndpoint: UplinkAwsGroundStationAgentEndpoint;
80
92
  } | {
81
93
  /**
82
- * Information about DownlinkAwsGroundStationAgentEndpoint used for create
94
+ * Definition for a downlink agent endpoint
83
95
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-createendpointdetails-downlinkawsgroundstationagentendpoint}
84
96
  */
85
97
  DownlinkAwsGroundStationAgentEndpoint: DownlinkAwsGroundStationAgentEndpoint;
86
98
  /**
87
- * Information about UplinkAwsGroundStationAgentEndpoint used for create
99
+ * Definition for an uplink agent endpoint
88
100
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-createendpointdetails.html#cfn-groundstation-dataflowendpointgroupv2-createendpointdetails-uplinkawsgroundstationagentendpoint}
89
101
  */
90
102
  UplinkAwsGroundStationAgentEndpoint?: UplinkAwsGroundStationAgentEndpoint | undefined;
91
103
  };
92
104
  /**
93
- * Information about DownlinkAwsGroundStationAgentEndpoint used for create
105
+ * Definition for a downlink agent endpoint
94
106
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html}
95
107
  */
96
108
  export type DownlinkAwsGroundStationAgentEndpoint = {
97
109
  /**
98
- * Dataflow details for downlink
110
+ * Dataflow details for the downlink endpoint
99
111
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint-dataflowdetails}
100
112
  */
101
113
  DataflowDetails: DownlinkDataflowDetails;
102
114
  /**
115
+ * Downlink dataflow endpoint name
103
116
  * @pattern ^[ a-zA-Z0-9_:-]{1,256}$
104
117
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-downlinkawsgroundstationagentendpoint-name}
105
118
  */
106
119
  Name: string;
107
120
  };
108
121
  /**
109
- * Connection details for downlink, from ground station to agent, and customer to agent
122
+ * Connection details for Ground Station to Agent and Agent to customer
110
123
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html}
111
124
  */
112
125
  export type DownlinkConnectionDetails = {
113
126
  /**
114
- * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
127
+ * Agent IP and port address for the downlink connection.
115
128
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails-agentipandportaddress}
116
129
  */
117
130
  AgentIpAndPortAddress: RangedConnectionDetails;
118
131
  /**
119
- * Socket address of an uplink or downlink agent endpoint with an optional mtu.
132
+ * Egress address and port for the downlink connection.
120
133
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkconnectiondetails-egressaddressandport}
121
134
  */
122
135
  EgressAddressAndPort: ConnectionDetails;
123
136
  };
124
137
  /**
125
- * Dataflow details for downlink
138
+ * Dataflow details for a downlink endpoint
126
139
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html}
127
140
  */
128
141
  export type DownlinkDataflowDetails = {
129
142
  /**
130
- * Connection details for downlink, from ground station to agent, and customer to agent
143
+ * Downlink connection details for customer to Agent and Agent to Ground Station
131
144
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails.html#cfn-groundstation-dataflowendpointgroupv2-downlinkdataflowdetails-agentconnectiondetails}
132
145
  */
133
146
  AgentConnectionDetails: DownlinkConnectionDetails;
@@ -149,7 +162,7 @@ export type IntegerRange = {
149
162
  Minimum: number;
150
163
  };
151
164
  /**
152
- * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
165
+ * Ingress address of AgentEndpoint with a port range and an optional mtu.
153
166
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html}
154
167
  */
155
168
  export type RangedConnectionDetails = {
@@ -161,7 +174,7 @@ export type RangedConnectionDetails = {
161
174
  */
162
175
  Mtu?: number | undefined;
163
176
  /**
164
- * A socket address with a port range.
177
+ * A ranged socket address.
165
178
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-rangedconnectiondetails-socketaddress}
166
179
  */
167
180
  SocketAddress: RangedSocketAddress;
@@ -178,17 +191,18 @@ export type RangedSocketAddress = {
178
191
  */
179
192
  Name: string;
180
193
  /**
181
- * An integer range that has a minimum and maximum value.
194
+ * Port range of a socket address.
182
195
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-rangedsocketaddress.html#cfn-groundstation-dataflowendpointgroupv2-rangedsocketaddress-portrange}
183
196
  */
184
197
  PortRange: IntegerRange;
185
198
  };
186
199
  /**
200
+ * Information about the socket address.
187
201
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html}
188
202
  */
189
203
  export type SocketAddress = {
190
204
  /**
191
- * IPv4 socket address.
205
+ * Name of a socket address.
192
206
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-socketaddress.html#cfn-groundstation-dataflowendpointgroupv2-socketaddress-name}
193
207
  */
194
208
  Name: string;
@@ -199,44 +213,45 @@ export type SocketAddress = {
199
213
  Port: number;
200
214
  };
201
215
  /**
202
- * Information about UplinkAwsGroundStationAgentEndpoint used for create
216
+ * Definition for an uplink agent endpoint
203
217
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html}
204
218
  */
205
219
  export type UplinkAwsGroundStationAgentEndpoint = {
206
220
  /**
207
- * Dataflow details for uplink
221
+ * Dataflow details for the uplink endpoint
208
222
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint-dataflowdetails}
209
223
  */
210
224
  DataflowDetails: UplinkDataflowDetails;
211
225
  /**
226
+ * Uplink dataflow endpoint name
212
227
  * @pattern ^[ a-zA-Z0-9_:-]{1,256}$
213
228
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint.html#cfn-groundstation-dataflowendpointgroupv2-uplinkawsgroundstationagentendpoint-name}
214
229
  */
215
230
  Name: string;
216
231
  };
217
232
  /**
218
- * Connection details for uplink, from ground station to agent, and customer to agent
233
+ * Connection details for customer to Agent and Agent to Ground Station
219
234
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html}
220
235
  */
221
236
  export type UplinkConnectionDetails = {
222
237
  /**
223
- * Socket address of an uplink or downlink agent endpoint with a port range and an optional mtu.
238
+ * Agent IP and port address for the uplink connection.
224
239
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails-agentipandportaddress}
225
240
  */
226
241
  AgentIpAndPortAddress: RangedConnectionDetails;
227
242
  /**
228
- * Socket address of an uplink or downlink agent endpoint with an optional mtu.
243
+ * Ingress address and port for the uplink connection.
229
244
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkconnectiondetails-ingressaddressandport}
230
245
  */
231
246
  IngressAddressAndPort: ConnectionDetails;
232
247
  };
233
248
  /**
234
- * Dataflow details for uplink
249
+ * Dataflow details for an uplink endpoint
235
250
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html}
236
251
  */
237
252
  export type UplinkDataflowDetails = {
238
253
  /**
239
- * Connection details for uplink, from ground station to agent, and customer to agent
254
+ * Uplink connection details for customer to Agent and Agent to Ground Station
240
255
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails.html#cfn-groundstation-dataflowendpointgroupv2-uplinkdataflowdetails-agentconnectiondetails}
241
256
  */
242
257
  AgentConnectionDetails: UplinkConnectionDetails;
@@ -222,6 +222,23 @@ export type AssetPropertyVariant = {
222
222
  */
223
223
  StringValue?: string | undefined;
224
224
  };
225
+ /**
226
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-batchconfig.html}
227
+ */
228
+ export type BatchConfig = {
229
+ /**
230
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-batchconfig.html#cfn-iot-topicrule-batchconfig-maxbatchopenms}
231
+ */
232
+ MaxBatchOpenMs?: number | undefined;
233
+ /**
234
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-batchconfig.html#cfn-iot-topicrule-batchconfig-maxbatchsize}
235
+ */
236
+ MaxBatchSize?: number | undefined;
237
+ /**
238
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-batchconfig.html#cfn-iot-topicrule-batchconfig-maxbatchsizebytes}
239
+ */
240
+ MaxBatchSizeBytes?: number | undefined;
241
+ };
225
242
  /**
226
243
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-cannedaccesscontrollist.html}
227
244
  */
@@ -467,11 +484,19 @@ export type HttpAction = {
467
484
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-auth}
468
485
  */
469
486
  Auth?: HttpAuthorization | undefined;
487
+ /**
488
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-batchconfig}
489
+ */
490
+ BatchConfig?: BatchConfig | undefined;
470
491
  /**
471
492
  * The URL to which AWS IoT sends a confirmation message. The value of the confirmation URL must be a prefix of the endpoint URL. If you do not specify a confirmation URL AWS IoT uses the endpoint URL as the confirmation URL. If you use substitution templates in the confirmationUrl, you must create and enable topic rule destinations that match each possible value of the substitution template before traffic is allowed to your endpoint URL.
472
493
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-confirmationurl}
473
494
  */
474
495
  ConfirmationUrl?: string | undefined;
496
+ /**
497
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-enablebatching}
498
+ */
499
+ EnableBatching?: boolean | undefined;
475
500
  /**
476
501
  * The HTTP headers to send with the message data.
477
502
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iot-topicrule-httpaction.html#cfn-iot-topicrule-httpaction-headers}
@@ -60,7 +60,7 @@ export type KafkaConnectConnectorProps = {
60
60
  */
61
61
  LogDelivery?: LogDelivery | undefined;
62
62
  /**
63
- * The network type of the Connector.
63
+ * The network type of the connector. It gives connectors connectivity to either IPv4 (IPV4) or IPv4 and IPv6 (DUAL) destinations. Defaults to IPV4.
64
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-kafkaconnect-connector.html#cfn-kafkaconnect-connector-networktype}
65
65
  */
66
66
  NetworkType?: "IPV4" | "DUAL" | undefined;
@@ -1138,20 +1138,24 @@ export type IntentConfirmationSetting = {
1138
1138
  PromptSpecification: PromptSpecification;
1139
1139
  };
1140
1140
  /**
1141
+ * Configures the Intent Disambiguation feature that helps resolve ambiguous user inputs when multiple intents could match. When enabled, the system presents clarifying questions to users, helping them specify their exact intent for improved conversation accuracy.
1141
1142
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentdisambiguationsettings.html}
1142
1143
  */
1143
1144
  export type IntentDisambiguationSettings = {
1144
1145
  /**
1146
+ * Provides a custom message that will be displayed before presenting the disambiguation options to users. This message helps set the context for users and can be customized to match your bot's tone and brand. If not specified, a default message will be used.
1145
1147
  * @minLength 1
1146
1148
  * @maxLength 1000
1147
1149
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentdisambiguationsettings.html#cfn-lex-bot-intentdisambiguationsettings-customdisambiguationmessage}
1148
1150
  */
1149
1151
  CustomDisambiguationMessage?: string | undefined;
1150
1152
  /**
1153
+ * Determines whether the Intent Disambiguation feature is enabled. When set to `true` , Amazon Lex will present disambiguation options to users when multiple intents could match their input, with the default being `false` .
1151
1154
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentdisambiguationsettings.html#cfn-lex-bot-intentdisambiguationsettings-enabled}
1152
1155
  */
1153
1156
  Enabled: boolean;
1154
1157
  /**
1158
+ * Specifies the maximum number of intent options (2-5) to present to users when disambiguation is needed. This setting determines how many intent options will be shown to users when the system detects ambiguous input. The default value is 3.
1155
1159
  * @min 2
1156
1160
  * @max 5
1157
1161
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-intentdisambiguationsettings.html#cfn-lex-bot-intentdisambiguationsettings-maxdisambiguationintents}
@@ -2282,10 +2286,12 @@ export type TextLogSetting = {
2282
2286
  Enabled: boolean;
2283
2287
  };
2284
2288
  /**
2289
+ * Unified configuration settings that combine speech recognition and synthesis capabilities.
2285
2290
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-unifiedspeechsettings.html}
2286
2291
  */
2287
2292
  export type UnifiedSpeechSettings = {
2288
2293
  /**
2294
+ * The foundation model configuration to use for unified speech processing capabilities.
2289
2295
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-lex-bot-unifiedspeechsettings.html#cfn-lex-bot-unifiedspeechsettings-speechfoundationmodel}
2290
2296
  */
2291
2297
  SpeechFoundationModel: {
@@ -27,6 +27,7 @@ export type LogsLogGroupProps = {
27
27
  */
28
28
  DataProtectionPolicy?: Record<string, unknown> | undefined;
29
29
  /**
30
+ * Indicates whether deletion protection is enabled for this log group. When enabled, deletion protection blocks all deletion operations until it is explicitly disabled.
30
31
  * @default false
31
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-logs-loggroup.html#cfn-logs-loggroup-deletionprotectionenabled}
32
33
  */
@@ -14,6 +14,11 @@ export type MediaTailorPlaybackConfigurationProps = {
14
14
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-playbackconfiguration.html#cfn-mediatailor-playbackconfiguration-adconditioningconfiguration}
15
15
  */
16
16
  AdConditioningConfiguration?: AdConditioningConfiguration | undefined;
17
+ /**
18
+ * The configuration for the request to the specified Ad Decision Server URL.
19
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-playbackconfiguration.html#cfn-mediatailor-playbackconfiguration-addecisionserverconfiguration}
20
+ */
21
+ AdDecisionServerConfiguration?: AdDecisionServerConfiguration | undefined;
17
22
  /**
18
23
  * The URL for the ad decision server (ADS). This includes the specification of static parameters and placeholders for dynamic parameters. AWS Elemental MediaTailor substitutes player-specific and session-specific parameters as needed when calling the ADS. Alternately, for testing you can provide a static VAST URL. The maximum length is 25,000 characters.
19
24
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-mediatailor-playbackconfiguration.html#cfn-mediatailor-playbackconfiguration-addecisionserverurl}
@@ -139,6 +144,17 @@ export type AdConditioningConfiguration = {
139
144
  */
140
145
  StreamingMediaFileConditioning: StreamingMediaFileConditioning;
141
146
  };
147
+ /**
148
+ * The configuration for the request to the specified Ad Decision Server URL.
149
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-addecisionserverconfiguration.html}
150
+ */
151
+ export type AdDecisionServerConfiguration = {
152
+ /**
153
+ * The configuration for the request to the Ad Decision Server URL.
154
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-addecisionserverconfiguration.html#cfn-mediatailor-playbackconfiguration-addecisionserverconfiguration-httprequest}
155
+ */
156
+ HttpRequest: HttpRequest;
157
+ };
142
158
  /**
143
159
  * For HLS, when set to `true` , MediaTailor passes through `EXT-X-CUE-IN` , `EXT-X-CUE-OUT` , and `EXT-X-SPLICEPOINT-SCTE35` ad markers from the origin manifest to the MediaTailor personalized manifest.
144
160
  *
@@ -239,6 +255,32 @@ export type DashConfiguration = {
239
255
  */
240
256
  OriginManifestType?: "SINGLE_PERIOD" | "MULTI_PERIOD" | undefined;
241
257
  };
258
+ /**
259
+ * The configuration for the request to the Ad Decision Server URL.
260
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html}
261
+ */
262
+ export type HttpRequest = {
263
+ /**
264
+ * The body of the request to the Ad Decision Server URL. The maximum length is 100,000 characters.
265
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-body}
266
+ */
267
+ Body?: string | undefined;
268
+ /**
269
+ * The compression type of the request sent to the Ad Decision Server URL. Only the POST HTTP Method permits compression other than NONE.
270
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-compressrequest}
271
+ */
272
+ CompressRequest?: "NONE" | "GZIP" | undefined;
273
+ /**
274
+ * The headers in the request sent to the Ad Decision Server URL. The max length is 10,000 characters.
275
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-headers}
276
+ */
277
+ Headers?: Record<string, string> | undefined;
278
+ /**
279
+ * Supported HTTP Methods for the request to the Ad Decision Server URL.
280
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-httprequest.html#cfn-mediatailor-playbackconfiguration-httprequest-httpmethod}
281
+ */
282
+ HttpMethod?: "GET" | "POST" | undefined;
283
+ };
242
284
  /**
243
285
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-mediatailor-playbackconfiguration-insertionmode.html}
244
286
  */
@@ -15,12 +15,12 @@ export type ObservabilityAdminS3TableIntegrationProps = {
15
15
  */
16
16
  Encryption: EncryptionConfig;
17
17
  /**
18
- * The CloudWatch Logs data sources to associate with the S3 Table Integration
18
+ * A data source with an S3 Table integration for query access in the `logs` namespace.
19
19
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html#cfn-observabilityadmin-s3tableintegration-logsources}
20
20
  */
21
21
  LogSources?: LogSource[] | undefined;
22
22
  /**
23
- * The ARN of the role used to access the S3 Table Integration
23
+ * The Amazon Resource Name (ARN) of the IAM role that grants permissions for the S3 Table integration to access necessary resources.
24
24
  * @minLength 1
25
25
  * @maxLength 1011
26
26
  * @pattern ^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$
@@ -28,7 +28,7 @@ export type ObservabilityAdminS3TableIntegrationProps = {
28
28
  */
29
29
  RoleArn: string;
30
30
  /**
31
- * An array of key-value pairs to apply to this resource
31
+ * The key-value pairs to associate with the S3 Table integration resource for categorization and management purposes.
32
32
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-s3tableintegration.html#cfn-observabilityadmin-s3tableintegration-tags}
33
33
  */
34
34
  Tags?: Tag[] | undefined;
@@ -38,7 +38,7 @@ export type ObservabilityAdminS3TableIntegrationProps = {
38
38
  */
39
39
  export type ObservabilityAdminS3TableIntegrationAttribs = {
40
40
  /**
41
- * The ARN of the S3 Table Integration
41
+ * The Amazon Resource Name (ARN) of the S3 Table integration.
42
42
  * @minLength 1
43
43
  * @maxLength 1011
44
44
  * @pattern ^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$
@@ -47,12 +47,12 @@ export type ObservabilityAdminS3TableIntegrationAttribs = {
47
47
  Arn: string;
48
48
  };
49
49
  /**
50
- * Encryption configuration for the S3 Table Integration
50
+ * Defines the encryption configuration for S3 Table integrations, including the encryption algorithm and KMS key settings.
51
51
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html}
52
52
  */
53
53
  export type EncryptionConfig = {
54
54
  /**
55
- * The ARN of the KMS key used to encrypt the S3 Table Integration
55
+ * The Amazon Resource Name (ARN) of the KMS key used for encryption when using customer-managed keys.
56
56
  * @minLength 1
57
57
  * @maxLength 1011
58
58
  * @pattern ^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$
@@ -60,25 +60,25 @@ export type EncryptionConfig = {
60
60
  */
61
61
  KmsKeyArn?: string | undefined;
62
62
  /**
63
- * The server-side encryption algorithm used to encrypt the S3 Table(s) data
63
+ * The server-side encryption algorithm used for encrypting data in the S3 Table integration.
64
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-encryptionconfig.html#cfn-observabilityadmin-s3tableintegration-encryptionconfig-ssealgorithm}
65
65
  */
66
66
  SseAlgorithm: "AES256" | "aws:kms";
67
67
  };
68
68
  /**
69
- * CloudWatch Logs data source to associate with the S3 Table Integration
69
+ * A data source with an S3 Table integration for query access in the `logs` namespace.
70
70
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html}
71
71
  */
72
72
  export type LogSource = {
73
73
  /**
74
- * The name of the CloudWatch Logs data source
74
+ * The name of the data source.
75
75
  * @minLength 1
76
76
  * @maxLength 256
77
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html#cfn-observabilityadmin-s3tableintegration-logsource-name}
78
78
  */
79
79
  Name: string;
80
80
  /**
81
- * The type of the CloudWatch Logs data source
81
+ * The type of the data source.
82
82
  * @minLength 1
83
83
  * @maxLength 256
84
84
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-s3tableintegration-logsource.html#cfn-observabilityadmin-s3tableintegration-logsource-type}
@@ -1,19 +1,33 @@
1
1
  import type { ResourceDefinitionWithAttributes, Tag } from "../main.ts";
2
2
  /**
3
- * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines
3
+ * Creates a telemetry pipeline for processing and transforming telemetry data. The pipeline defines how data flows from sources through processors to destinations, enabling data transformation and delivering capabilities.
4
+ *
5
+ * **Using CloudWatch as a pipeline source** The following is an example of a `Body` property value for the `Configuration` object. { "Type": "AWS::ObservabilityAdmin::TelemetryPipelines", "Properties": { "Configuration": { "Body": "pipeline:\n source:\n cloudwatch_logs:\n log_event_metadata:\n data_source_name: \"my_data_source\"\n data_source_type: \"default\"\n aws:\n sts_role_arn: \"arn:aws:iam::123456789012:role/MyPipelineAccessRole\"\n processor:\n - parse_json: {}\n sink:\n - cloudwatch_logs:\n log_group: \"@original\"" } }
6
+ * } Type: AWS::ObservabilityAdmin::TelemetryPipelines
7
+ * Properties: Configuration: Body: | pipeline: source: cloudwatch_logs: log_event_metadata: data_source_name: "my_data_source" data_source_type: "default" aws: sts_role_arn: "arn:aws:iam::123456789012:role/MyPipelineAccessRole" processor: - parse_json: {} sink: - cloudwatch_logs: log_group: "@original" **Using Amazon S3 as a pipeline source** The following is an example of a `Body` property value for the `Configuration` object. { "Type": "AWS::ObservabilityAdmin::TelemetryPipelines", "Properties": { "Configuration": { "Body": "pipeline:\n source:\n s3:\n sqs:\n visibility_timeout: \"PT60S\"\n visibility_duplication_protection: true\n maximum_messages: 10\n queue_url: \"https://sqs.us-east-1.amazonaws.com/123456789012/my-sqs-queue\"\n notification_type: \"sqs\"\n codec:\n ndjson: {}\n aws:\n region: \"us-east-1\"\n sts_role_arn: \"arn:aws:iam::123456789012:role/MyAccessRole\"\n data_source_name: \"crowdstrike_falcon\"\n processor:\n - ocsf:\n version: \"1.5\"\n mapping_version: \"1.5.0\"\n schema:\n crowdstrike_falcon:\n sink:\n - cloudwatch_logs:\n log_group: \"my-log-group\"" } }
8
+ * } Type: AWS::ObservabilityAdmin::TelemetryPipelines
9
+ * Properties: Configuration: Body: | pipeline: source: s3: sqs: visibility_timeout: "PT60S" visibility_duplication_protection: true maximum_messages: 10 queue_url: "https://sqs.us-east-1.amazonaws.com/123456789012/my-sqs-queue" notification_type: "sqs" codec: ndjson: {} aws: region: "us-east-1" sts_role_arn: "arn:aws:iam::123456789012:role/MyAccessRole" data_source_name: "crowdstrike_falcon" processor: - ocsf: version: "1.5" mapping_version: "1.5.0" schema: crowdstrike_falcon: sink: - cloudwatch_logs: log_group: "my-log-group"
4
10
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
5
11
  */
6
12
  export type ObservabilityAdminTelemetryPipelines = ResourceDefinitionWithAttributes<"AWS::ObservabilityAdmin::TelemetryPipelines", ObservabilityAdminTelemetryPipelinesProps, ObservabilityAdminTelemetryPipelinesAttribs>;
7
13
  /**
8
- * Resource Type definition for AWS::ObservabilityAdmin::TelemetryPipelines
14
+ * Creates a telemetry pipeline for processing and transforming telemetry data. The pipeline defines how data flows from sources through processors to destinations, enabling data transformation and delivering capabilities.
15
+ *
16
+ * **Using CloudWatch as a pipeline source** The following is an example of a `Body` property value for the `Configuration` object. { "Type": "AWS::ObservabilityAdmin::TelemetryPipelines", "Properties": { "Configuration": { "Body": "pipeline:\n source:\n cloudwatch_logs:\n log_event_metadata:\n data_source_name: \"my_data_source\"\n data_source_type: \"default\"\n aws:\n sts_role_arn: \"arn:aws:iam::123456789012:role/MyPipelineAccessRole\"\n processor:\n - parse_json: {}\n sink:\n - cloudwatch_logs:\n log_group: \"@original\"" } }
17
+ * } Type: AWS::ObservabilityAdmin::TelemetryPipelines
18
+ * Properties: Configuration: Body: | pipeline: source: cloudwatch_logs: log_event_metadata: data_source_name: "my_data_source" data_source_type: "default" aws: sts_role_arn: "arn:aws:iam::123456789012:role/MyPipelineAccessRole" processor: - parse_json: {} sink: - cloudwatch_logs: log_group: "@original" **Using Amazon S3 as a pipeline source** The following is an example of a `Body` property value for the `Configuration` object. { "Type": "AWS::ObservabilityAdmin::TelemetryPipelines", "Properties": { "Configuration": { "Body": "pipeline:\n source:\n s3:\n sqs:\n visibility_timeout: \"PT60S\"\n visibility_duplication_protection: true\n maximum_messages: 10\n queue_url: \"https://sqs.us-east-1.amazonaws.com/123456789012/my-sqs-queue\"\n notification_type: \"sqs\"\n codec:\n ndjson: {}\n aws:\n region: \"us-east-1\"\n sts_role_arn: \"arn:aws:iam::123456789012:role/MyAccessRole\"\n data_source_name: \"crowdstrike_falcon\"\n processor:\n - ocsf:\n version: \"1.5\"\n mapping_version: \"1.5.0\"\n schema:\n crowdstrike_falcon:\n sink:\n - cloudwatch_logs:\n log_group: \"my-log-group\"" } }
19
+ * } Type: AWS::ObservabilityAdmin::TelemetryPipelines
20
+ * Properties: Configuration: Body: | pipeline: source: s3: sqs: visibility_timeout: "PT60S" visibility_duplication_protection: true maximum_messages: 10 queue_url: "https://sqs.us-east-1.amazonaws.com/123456789012/my-sqs-queue" notification_type: "sqs" codec: ndjson: {} aws: region: "us-east-1" sts_role_arn: "arn:aws:iam::123456789012:role/MyAccessRole" data_source_name: "crowdstrike_falcon" processor: - ocsf: version: "1.5" mapping_version: "1.5.0" schema: crowdstrike_falcon: sink: - cloudwatch_logs: log_group: "my-log-group"
9
21
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html}
10
22
  */
11
23
  export type ObservabilityAdminTelemetryPipelinesProps = {
12
24
  /**
25
+ * The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations. For more information, see the [Amazon CloudWatch User Guide](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Creating-pipelines.html) .
13
26
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#cfn-observabilityadmin-telemetrypipelines-configuration}
14
27
  */
15
28
  Configuration: TelemetryPipelineConfiguration;
16
29
  /**
30
+ * The name of the telemetry pipeline to create. The name must be unique within your account.
17
31
  * @minLength 3
18
32
  * @maxLength 28
19
33
  * @pattern [a-z][a-z0-9\-]+
@@ -21,7 +35,7 @@ export type ObservabilityAdminTelemetryPipelinesProps = {
21
35
  */
22
36
  Name?: string | undefined;
23
37
  /**
24
- * An array of key-value pairs to apply to this resource
38
+ * The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.
25
39
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#cfn-observabilityadmin-telemetrypipelines-tags}
26
40
  */
27
41
  Tags?: Tag[] | undefined;
@@ -31,6 +45,7 @@ export type ObservabilityAdminTelemetryPipelinesProps = {
31
45
  */
32
46
  export type ObservabilityAdminTelemetryPipelinesAttribs = {
33
47
  /**
48
+ * The Amazon Resource Name (ARN) of the created telemetry pipeline.
34
49
  * @minLength 1
35
50
  * @maxLength 1011
36
51
  * @pattern ^arn:aws([a-z0-9\-]+)?:([a-zA-Z0-9\-]+):([a-z0-9\-]+)?:([0-9]{12})?:(.+)$
@@ -38,12 +53,14 @@ export type ObservabilityAdminTelemetryPipelinesAttribs = {
38
53
  */
39
54
  Arn: string;
40
55
  /**
56
+ * The Amazon Resource Name (ARN) of the telemetry pipeline.
41
57
  * @minLength 1
42
58
  * @maxLength 512
43
59
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#cfn-observabilityadmin-telemetrypipelines-pipelineidentifier}
44
60
  */
45
61
  PipelineIdentifier: string;
46
62
  /**
63
+ * The current status of the telemetry pipeline.
47
64
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#cfn-observabilityadmin-telemetrypipelines-status}
48
65
  */
49
66
  Status: TelemetryPipelineStatus;
@@ -73,7 +73,7 @@ export type ODBOdbPeeringConnectionAttribs = {
73
73
  */
74
74
  PeerNetworkArn: string;
75
75
  /**
76
- * The CIDR blocks for the ODB peering connection.
76
+ * The CIDR blocks associated with the peering connection. These CIDR blocks define the IP address ranges that can communicate through the peering connection.
77
77
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-odb-odbpeeringconnection.html#cfn-odb-odbpeeringconnection-peernetworkcidrs}
78
78
  */
79
79
  PeerNetworkCidrs: string[];