#[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: StringThe ARN of the probe.
destination: StringThe destination IP address for the monitor. This must 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: ProtocolThe protocol used for the network traffic between the source and destination. This must be either TCP or ICMP.
packet_size: Option<i32>The size of the packets sent between the source and destination. This must 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 must 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 must 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 must 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.impl StructuralPartialEq for CreateProbeOutput
Auto Trait Implementations§
impl Freeze for CreateProbeOutput
impl RefUnwindSafe for CreateProbeOutput
impl Send for CreateProbeOutput
impl Sync for CreateProbeOutput
impl Unpin for CreateProbeOutput
impl UnwindSafe for CreateProbeOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more