Struct aws_sdk_iotwireless::operation::get_network_analyzer_configuration::GetNetworkAnalyzerConfigurationOutput
source · #[non_exhaustive]pub struct GetNetworkAnalyzerConfigurationOutput {
pub trace_content: Option<TraceContent>,
pub wireless_devices: Option<Vec<String>>,
pub wireless_gateways: Option<Vec<String>>,
pub description: Option<String>,
pub arn: Option<String>,
pub name: Option<String>,
pub multicast_groups: Option<Vec<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.trace_content: Option<TraceContent>
Trace content for your wireless devices, gateways, and multicast groups.
wireless_devices: Option<Vec<String>>
List of wireless device resources that have been added to the network analyzer configuration.
wireless_gateways: Option<Vec<String>>
List of wireless gateway resources that have been added to the network analyzer configuration.
description: Option<String>
The description of the new resource.
arn: Option<String>
The Amazon Resource Name of the new resource.
name: Option<String>
Name of the network analyzer configuration.
multicast_groups: Option<Vec<String>>
List of multicast group resources that have been added to the network analyzer configuration.
Implementations§
source§impl GetNetworkAnalyzerConfigurationOutput
impl GetNetworkAnalyzerConfigurationOutput
sourcepub fn trace_content(&self) -> Option<&TraceContent>
pub fn trace_content(&self) -> Option<&TraceContent>
Trace content for your wireless devices, gateways, and multicast groups.
sourcepub fn wireless_devices(&self) -> &[String]
pub fn wireless_devices(&self) -> &[String]
List of wireless device resources that have been added to the network analyzer configuration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .wireless_devices.is_none()
.
sourcepub fn wireless_gateways(&self) -> &[String]
pub fn wireless_gateways(&self) -> &[String]
List of wireless gateway resources that have been added to the network analyzer configuration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .wireless_gateways.is_none()
.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the new resource.
sourcepub fn multicast_groups(&self) -> &[String]
pub fn multicast_groups(&self) -> &[String]
List of multicast group resources that have been added to the network analyzer configuration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .multicast_groups.is_none()
.
source§impl GetNetworkAnalyzerConfigurationOutput
impl GetNetworkAnalyzerConfigurationOutput
sourcepub fn builder() -> GetNetworkAnalyzerConfigurationOutputBuilder
pub fn builder() -> GetNetworkAnalyzerConfigurationOutputBuilder
Creates a new builder-style object to manufacture GetNetworkAnalyzerConfigurationOutput
.
Trait Implementations§
source§impl Clone for GetNetworkAnalyzerConfigurationOutput
impl Clone for GetNetworkAnalyzerConfigurationOutput
source§fn clone(&self) -> GetNetworkAnalyzerConfigurationOutput
fn clone(&self) -> GetNetworkAnalyzerConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetNetworkAnalyzerConfigurationOutput
impl PartialEq for GetNetworkAnalyzerConfigurationOutput
source§fn eq(&self, other: &GetNetworkAnalyzerConfigurationOutput) -> bool
fn eq(&self, other: &GetNetworkAnalyzerConfigurationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for GetNetworkAnalyzerConfigurationOutput
impl RequestId for GetNetworkAnalyzerConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetNetworkAnalyzerConfigurationOutput
Auto Trait Implementations§
impl Freeze for GetNetworkAnalyzerConfigurationOutput
impl RefUnwindSafe for GetNetworkAnalyzerConfigurationOutput
impl Send for GetNetworkAnalyzerConfigurationOutput
impl Sync for GetNetworkAnalyzerConfigurationOutput
impl Unpin for GetNetworkAnalyzerConfigurationOutput
impl UnwindSafe for GetNetworkAnalyzerConfigurationOutput
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