#[non_exhaustive]pub struct UpdateProbeOutput {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 updated ID of the probe.
probe_arn: Option<String>The updated ARN of the probe.
source_arn: StringThe updated ARN of the source subnet.
destination: StringThe updated destination IP address for the probe.
destination_port: Option<i32>The updated destination port. This must be a number between 1 and 65536.
protocol: ProtocolThe updated protocol for the probe.
packet_size: Option<i32>The updated packet size for the probe.
address_family: Option<AddressFamily>The updated IP address family. This must be either IPV4 or IPV6.
vpc_id: Option<String>The updated ID of the source VPC subnet ID.
state: Option<ProbeState>The state of the updated probe.
created_at: Option<DateTime>The time and date that the probe was created.
modified_at: Option<DateTime>The time and date that the probe was last updated.
Update tags for a probe.
Implementations§
source§impl UpdateProbeOutput
impl UpdateProbeOutput
sourcepub fn source_arn(&self) -> &str
pub fn source_arn(&self) -> &str
The updated ARN of the source subnet.
sourcepub fn destination(&self) -> &str
pub fn destination(&self) -> &str
The updated destination IP address for the probe.
sourcepub fn destination_port(&self) -> Option<i32>
pub fn destination_port(&self) -> Option<i32>
The updated destination port. This must be a number between 1 and 65536.
sourcepub fn packet_size(&self) -> Option<i32>
pub fn packet_size(&self) -> Option<i32>
The updated packet size for the probe.
sourcepub fn address_family(&self) -> Option<&AddressFamily>
pub fn address_family(&self) -> Option<&AddressFamily>
The updated IP address family. This must be either IPV4 or IPV6.
sourcepub fn state(&self) -> Option<&ProbeState>
pub fn state(&self) -> Option<&ProbeState>
The state of the updated 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 that the probe was last updated.
Update tags for a probe.
source§impl UpdateProbeOutput
impl UpdateProbeOutput
sourcepub fn builder() -> UpdateProbeOutputBuilder
pub fn builder() -> UpdateProbeOutputBuilder
Creates a new builder-style object to manufacture UpdateProbeOutput.
Trait Implementations§
source§impl Clone for UpdateProbeOutput
impl Clone for UpdateProbeOutput
source§fn clone(&self) -> UpdateProbeOutput
fn clone(&self) -> UpdateProbeOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for UpdateProbeOutput
impl Debug for UpdateProbeOutput
source§impl PartialEq for UpdateProbeOutput
impl PartialEq for UpdateProbeOutput
source§fn eq(&self, other: &UpdateProbeOutput) -> bool
fn eq(&self, other: &UpdateProbeOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for UpdateProbeOutput
impl RequestId for UpdateProbeOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for UpdateProbeOutput
Auto Trait Implementations§
impl Freeze for UpdateProbeOutput
impl RefUnwindSafe for UpdateProbeOutput
impl Send for UpdateProbeOutput
impl Sync for UpdateProbeOutput
impl Unpin for UpdateProbeOutput
impl UnwindSafe for UpdateProbeOutput
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