#[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: String
The updated ARN of the source subnet.
destination: String
The updated destination IP address for the probe.
destination_port: Option<i32>
The updated destination port. This will be a number between 1
and 65536
.
protocol: Protocol
The 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 will 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 will 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 will 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.