#[non_exhaustive]pub struct CreateProbeOutput {Show 13 fields
pub probe_id: Option<String>,
pub probe_arn: Option<String>,
pub source_arn: String,
pub destination: String,
pub destination_port: Option<i32>,
pub protocol: Protocol,
pub packet_size: Option<i32>,
pub address_family: Option<AddressFamily>,
pub vpc_id: Option<String>,
pub state: Option<ProbeState>,
pub created_at: Option<DateTime>,
pub modified_at: Option<DateTime>,
pub tags: Option<HashMap<String, String>>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.probe_id: Option<String>
The ID of the probe for which details are returned.
probe_arn: Option<String>
The ARN of the probe.
source_arn: String
The ARN of the probe.
destination: String
The destination IP address for the monitor. This will be either an IPv4 or IPv6 address.
destination_port: Option<i32>
The port associated with the destination
. This is required only if the protocol
is TCP
and must be a number between 1
and 65536
.
protocol: Protocol
The protocol used for the network traffic between the source
and destination
. This will be either TCP
or ICMP
.
packet_size: Option<i32>
The size of the packets sent between the source and destination. This will be a number between 56
and 8500
.
address_family: Option<AddressFamily>
Indicates whether the IP address is IPV4
or IPV6
.
vpc_id: Option<String>
The ID of the source VPC or subnet.
state: Option<ProbeState>
The state of the probe.
created_at: Option<DateTime>
The time and date that the probe was created.
modified_at: Option<DateTime>
The time and date when the probe was last modified.
The list of key-value pairs assigned to the probe.
Implementations§
source§impl CreateProbeOutput
impl CreateProbeOutput
sourcepub fn source_arn(&self) -> &str
pub fn source_arn(&self) -> &str
The ARN of the probe.
sourcepub fn destination(&self) -> &str
pub fn destination(&self) -> &str
The destination IP address for the monitor. This will be either an IPv4 or IPv6 address.
sourcepub fn destination_port(&self) -> Option<i32>
pub fn destination_port(&self) -> Option<i32>
The port associated with the destination
. This is required only if the protocol
is TCP
and must be a number between 1
and 65536
.
sourcepub fn protocol(&self) -> &Protocol
pub fn protocol(&self) -> &Protocol
The protocol used for the network traffic between the source
and destination
. This will be either TCP
or ICMP
.
sourcepub fn packet_size(&self) -> Option<i32>
pub fn packet_size(&self) -> Option<i32>
The size of the packets sent between the source and destination. This will be a number between 56
and 8500
.
sourcepub fn address_family(&self) -> Option<&AddressFamily>
pub fn address_family(&self) -> Option<&AddressFamily>
Indicates whether the IP address is IPV4
or IPV6
.
sourcepub fn state(&self) -> Option<&ProbeState>
pub fn state(&self) -> Option<&ProbeState>
The state of the probe.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The time and date that the probe was created.
sourcepub fn modified_at(&self) -> Option<&DateTime>
pub fn modified_at(&self) -> Option<&DateTime>
The time and date when the probe was last modified.
The list of key-value pairs assigned to the probe.
source§impl CreateProbeOutput
impl CreateProbeOutput
sourcepub fn builder() -> CreateProbeOutputBuilder
pub fn builder() -> CreateProbeOutputBuilder
Creates a new builder-style object to manufacture CreateProbeOutput
.
Trait Implementations§
source§impl Clone for CreateProbeOutput
impl Clone for CreateProbeOutput
source§fn clone(&self) -> CreateProbeOutput
fn clone(&self) -> CreateProbeOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateProbeOutput
impl Debug for CreateProbeOutput
source§impl PartialEq for CreateProbeOutput
impl PartialEq for CreateProbeOutput
source§fn eq(&self, other: &CreateProbeOutput) -> bool
fn eq(&self, other: &CreateProbeOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateProbeOutput
impl RequestId for CreateProbeOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.