aws-sdk 2.1596.0 → 2.1597.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -12,51 +12,51 @@ declare class NetworkMonitor extends Service {
12
12
  constructor(options?: NetworkMonitor.Types.ClientConfiguration)
13
13
  config: Config & NetworkMonitor.Types.ClientConfiguration;
14
14
  /**
15
- * Creates a monitor between a source subnet and destination IP address. Within a monitor you'll create one or more probes that monitor network traffic between your source Amazon Web Services VPC subnets and your destination IP addresses. Each probe then aggregates and sends metrics to Amazon CloudWatch.
15
+ * Creates a monitor between a source subnet and destination IP address. Within a monitor you'll create one or more probes that monitor network traffic between your source Amazon Web Services VPC subnets and your destination IP addresses. Each probe then aggregates and sends metrics to Amazon CloudWatch. You can also create a monitor with probes using this command. For each probe, you define the following: source—The subnet IDs where the probes will be created. destination— The target destination IP address for the probe. destinationPort—Required only if the protocol is TCP. protocol—The communication protocol between the source and destination. This will be either TCP or ICMP. packetSize—The size of the packets. This must be a number between 56 and 8500. (Optional) tags —Key-value pairs created and assigned to the probe.
16
16
  */
17
17
  createMonitor(params: NetworkMonitor.Types.CreateMonitorInput, callback?: (err: AWSError, data: NetworkMonitor.Types.CreateMonitorOutput) => void): Request<NetworkMonitor.Types.CreateMonitorOutput, AWSError>;
18
18
  /**
19
- * Creates a monitor between a source subnet and destination IP address. Within a monitor you'll create one or more probes that monitor network traffic between your source Amazon Web Services VPC subnets and your destination IP addresses. Each probe then aggregates and sends metrics to Amazon CloudWatch.
19
+ * Creates a monitor between a source subnet and destination IP address. Within a monitor you'll create one or more probes that monitor network traffic between your source Amazon Web Services VPC subnets and your destination IP addresses. Each probe then aggregates and sends metrics to Amazon CloudWatch. You can also create a monitor with probes using this command. For each probe, you define the following: source—The subnet IDs where the probes will be created. destination— The target destination IP address for the probe. destinationPort—Required only if the protocol is TCP. protocol—The communication protocol between the source and destination. This will be either TCP or ICMP. packetSize—The size of the packets. This must be a number between 56 and 8500. (Optional) tags —Key-value pairs created and assigned to the probe.
20
20
  */
21
21
  createMonitor(callback?: (err: AWSError, data: NetworkMonitor.Types.CreateMonitorOutput) => void): Request<NetworkMonitor.Types.CreateMonitorOutput, AWSError>;
22
22
  /**
23
- * Create a probe within a monitor. Once you create a probe, and it begins monitoring your network traffic, you'll incur billing charges for that probe.
23
+ * Create a probe within a monitor. Once you create a probe, and it begins monitoring your network traffic, you'll incur billing charges for that probe. This action requires the monitorName parameter. Run ListMonitors to get a list of monitor names. Note the name of the monitorName you want to create the probe for.
24
24
  */
25
25
  createProbe(params: NetworkMonitor.Types.CreateProbeInput, callback?: (err: AWSError, data: NetworkMonitor.Types.CreateProbeOutput) => void): Request<NetworkMonitor.Types.CreateProbeOutput, AWSError>;
26
26
  /**
27
- * Create a probe within a monitor. Once you create a probe, and it begins monitoring your network traffic, you'll incur billing charges for that probe.
27
+ * Create a probe within a monitor. Once you create a probe, and it begins monitoring your network traffic, you'll incur billing charges for that probe. This action requires the monitorName parameter. Run ListMonitors to get a list of monitor names. Note the name of the monitorName you want to create the probe for.
28
28
  */
29
29
  createProbe(callback?: (err: AWSError, data: NetworkMonitor.Types.CreateProbeOutput) => void): Request<NetworkMonitor.Types.CreateProbeOutput, AWSError>;
30
30
  /**
31
- * Deletes a specified monitor.
31
+ * Deletes a specified monitor. This action requires the monitorName parameter. Run ListMonitors to get a list of monitor names.
32
32
  */
33
33
  deleteMonitor(params: NetworkMonitor.Types.DeleteMonitorInput, callback?: (err: AWSError, data: NetworkMonitor.Types.DeleteMonitorOutput) => void): Request<NetworkMonitor.Types.DeleteMonitorOutput, AWSError>;
34
34
  /**
35
- * Deletes a specified monitor.
35
+ * Deletes a specified monitor. This action requires the monitorName parameter. Run ListMonitors to get a list of monitor names.
36
36
  */
37
37
  deleteMonitor(callback?: (err: AWSError, data: NetworkMonitor.Types.DeleteMonitorOutput) => void): Request<NetworkMonitor.Types.DeleteMonitorOutput, AWSError>;
38
38
  /**
39
- * Deletes the specified monitor. Once a probe is deleted you'll no longer incur any billing fees for that probe.
39
+ * Deletes the specified probe. Once a probe is deleted you'll no longer incur any billing fees for that probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs. You can only delete a single probe at a time using this action.
40
40
  */
41
41
  deleteProbe(params: NetworkMonitor.Types.DeleteProbeInput, callback?: (err: AWSError, data: NetworkMonitor.Types.DeleteProbeOutput) => void): Request<NetworkMonitor.Types.DeleteProbeOutput, AWSError>;
42
42
  /**
43
- * Deletes the specified monitor. Once a probe is deleted you'll no longer incur any billing fees for that probe.
43
+ * Deletes the specified probe. Once a probe is deleted you'll no longer incur any billing fees for that probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs. You can only delete a single probe at a time using this action.
44
44
  */
45
45
  deleteProbe(callback?: (err: AWSError, data: NetworkMonitor.Types.DeleteProbeOutput) => void): Request<NetworkMonitor.Types.DeleteProbeOutput, AWSError>;
46
46
  /**
47
- * Returns details about a specific monitor.
47
+ * Returns details about a specific monitor. This action requires the monitorName parameter. Run ListMonitors to get a list of monitor names.
48
48
  */
49
49
  getMonitor(params: NetworkMonitor.Types.GetMonitorInput, callback?: (err: AWSError, data: NetworkMonitor.Types.GetMonitorOutput) => void): Request<NetworkMonitor.Types.GetMonitorOutput, AWSError>;
50
50
  /**
51
- * Returns details about a specific monitor.
51
+ * Returns details about a specific monitor. This action requires the monitorName parameter. Run ListMonitors to get a list of monitor names.
52
52
  */
53
53
  getMonitor(callback?: (err: AWSError, data: NetworkMonitor.Types.GetMonitorOutput) => void): Request<NetworkMonitor.Types.GetMonitorOutput, AWSError>;
54
54
  /**
55
- * Returns the details about a probe. You'll need both the monitorName and probeId.
55
+ * Returns the details about a probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs.
56
56
  */
57
57
  getProbe(params: NetworkMonitor.Types.GetProbeInput, callback?: (err: AWSError, data: NetworkMonitor.Types.GetProbeOutput) => void): Request<NetworkMonitor.Types.GetProbeOutput, AWSError>;
58
58
  /**
59
- * Returns the details about a probe. You'll need both the monitorName and probeId.
59
+ * Returns the details about a probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs.
60
60
  */
61
61
  getProbe(callback?: (err: AWSError, data: NetworkMonitor.Types.GetProbeOutput) => void): Request<NetworkMonitor.Types.GetProbeOutput, AWSError>;
62
62
  /**
@@ -92,19 +92,19 @@ declare class NetworkMonitor extends Service {
92
92
  */
93
93
  untagResource(callback?: (err: AWSError, data: NetworkMonitor.Types.UntagResourceOutput) => void): Request<NetworkMonitor.Types.UntagResourceOutput, AWSError>;
94
94
  /**
95
- * Updates the aggregationPeriod for a monitor. Monitors support an aggregationPeriod of either 30 or 60 seconds.
95
+ * Updates the aggregationPeriod for a monitor. Monitors support an aggregationPeriod of either 30 or 60 seconds. This action requires the monitorName and probeId parameter. Run ListMonitors to get a list of monitor names.
96
96
  */
97
97
  updateMonitor(params: NetworkMonitor.Types.UpdateMonitorInput, callback?: (err: AWSError, data: NetworkMonitor.Types.UpdateMonitorOutput) => void): Request<NetworkMonitor.Types.UpdateMonitorOutput, AWSError>;
98
98
  /**
99
- * Updates the aggregationPeriod for a monitor. Monitors support an aggregationPeriod of either 30 or 60 seconds.
99
+ * Updates the aggregationPeriod for a monitor. Monitors support an aggregationPeriod of either 30 or 60 seconds. This action requires the monitorName and probeId parameter. Run ListMonitors to get a list of monitor names.
100
100
  */
101
101
  updateMonitor(callback?: (err: AWSError, data: NetworkMonitor.Types.UpdateMonitorOutput) => void): Request<NetworkMonitor.Types.UpdateMonitorOutput, AWSError>;
102
102
  /**
103
- * Updates a monitor probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs.
103
+ * Updates a monitor probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs. You can update the following para create a monitor with probes using this command. For each probe, you define the following: state—The state of the probe. destination— The target destination IP address for the probe. destinationPort—Required only if the protocol is TCP. protocol—The communication protocol between the source and destination. This will be either TCP or ICMP. packetSize—The size of the packets. This must be a number between 56 and 8500. (Optional) tags —Key-value pairs created and assigned to the probe.
104
104
  */
105
105
  updateProbe(params: NetworkMonitor.Types.UpdateProbeInput, callback?: (err: AWSError, data: NetworkMonitor.Types.UpdateProbeOutput) => void): Request<NetworkMonitor.Types.UpdateProbeOutput, AWSError>;
106
106
  /**
107
- * Updates a monitor probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs.
107
+ * Updates a monitor probe. This action requires both the monitorName and probeId parameters. Run ListMonitors to get a list of monitor names. Run GetMonitor to get a list of probes and probe IDs. You can update the following para create a monitor with probes using this command. For each probe, you define the following: state—The state of the probe. destination— The target destination IP address for the probe. destinationPort—Required only if the protocol is TCP. protocol—The communication protocol between the source and destination. This will be either TCP or ICMP. packetSize—The size of the packets. This must be a number between 56 and 8500. (Optional) tags —Key-value pairs created and assigned to the probe.
108
108
  */
109
109
  updateProbe(callback?: (err: AWSError, data: NetworkMonitor.Types.UpdateProbeOutput) => void): Request<NetworkMonitor.Types.UpdateProbeOutput, AWSError>;
110
110
  }
@@ -122,7 +122,7 @@ declare namespace NetworkMonitor {
122
122
  */
123
123
  probes?: CreateMonitorProbeInputList;
124
124
  /**
125
- * The time, in seconds, that metrics are aggregated and sent to Amazon CloudWatch. Valid values are either 30 or 60.
125
+ * The time, in seconds, that metrics are aggregated and sent to Amazon CloudWatch. Valid values are either 30 or 60. 60 is the default if no period is chosen.
126
126
  */
127
127
  aggregationPeriod?: AggregationPeriod;
128
128
  /**
@@ -148,7 +148,7 @@ declare namespace NetworkMonitor {
148
148
  */
149
149
  state: MonitorState;
150
150
  /**
151
- * The number of seconds that metrics are aggregated by and sent to Amazon CloudWatch. This must be either 30 or 60.
151
+ * The number of seconds that metrics are aggregated by and sent to Amazon CloudWatch. This will be either 30 or 60.
152
152
  */
153
153
  aggregationPeriod?: AggregationPeriod;
154
154
  /**
@@ -185,7 +185,7 @@ declare namespace NetworkMonitor {
185
185
  export type CreateMonitorProbeInputList = CreateMonitorProbeInput[];
186
186
  export interface CreateProbeInput {
187
187
  /**
188
- * The name of the monitor to associated with the probe. To get a list of available monitors, use ListMonitors.
188
+ * The name of the monitor to associated with the probe.
189
189
  */
190
190
  monitorName: ResourceName;
191
191
  /**
@@ -257,7 +257,7 @@ declare namespace NetworkMonitor {
257
257
  }
258
258
  export interface DeleteMonitorInput {
259
259
  /**
260
- * The name of the monitor to delete. Use the ListMonitors action to get a list of your current monitors.
260
+ * The name of the monitor to delete.
261
261
  */
262
262
  monitorName: ResourceName;
263
263
  }
@@ -265,11 +265,11 @@ declare namespace NetworkMonitor {
265
265
  }
266
266
  export interface DeleteProbeInput {
267
267
  /**
268
- * The name of the monitor to delete. For a list of the available monitors, use the ListMonitors action.
268
+ * The name of the monitor to delete.
269
269
  */
270
270
  monitorName: ResourceName;
271
271
  /**
272
- * The ID of the probe to delete. Run GetMonitor to get a lst of all probes and probe IDs associated with the monitor.
272
+ * The ID of the probe to delete.
273
273
  */
274
274
  probeId: ProbeId;
275
275
  }
@@ -288,11 +288,11 @@ declare namespace NetworkMonitor {
288
288
  */
289
289
  monitorArn: MonitorArn;
290
290
  /**
291
- * The name of the monitor. To get a list of the current monitors and their names, use the ListMonitors action.
291
+ * The name of the monitor.
292
292
  */
293
293
  monitorName: ResourceName;
294
294
  /**
295
- * Returns a list of the state of each monitor.
295
+ * Lists the status of the state of each monitor.
296
296
  */
297
297
  state: MonitorState;
298
298
  /**
@@ -562,7 +562,7 @@ declare namespace NetworkMonitor {
562
562
  }
563
563
  export interface UpdateMonitorInput {
564
564
  /**
565
- * The name of the monitor to update. Run ListMonitors to get a list of monitor names.
565
+ * The name of the monitor to update.
566
566
  */
567
567
  monitorName: ResourceName;
568
568
  /**
@@ -598,7 +598,7 @@ declare namespace NetworkMonitor {
598
598
  */
599
599
  monitorName: ResourceName;
600
600
  /**
601
- * Run GetMonitor to get a list of probes and probe IDs.
601
+ * The ID of the probe to update.
602
602
  */
603
603
  probeId: ProbeId;
604
604
  /**