#[non_exhaustive]pub struct GetNetworkTelemetryInput {
pub global_network_id: Option<String>,
pub core_network_id: Option<String>,
pub registered_gateway_arn: Option<String>,
pub aws_region: Option<String>,
pub account_id: Option<String>,
pub resource_type: Option<String>,
pub resource_arn: Option<String>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
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.global_network_id: Option<String>
The ID of the global network.
core_network_id: Option<String>
The ID of a core network.
registered_gateway_arn: Option<String>
The ARN of the gateway.
aws_region: Option<String>
The Amazon Web Services Region.
account_id: Option<String>
The Amazon Web Services account ID.
resource_type: Option<String>
The resource type.
The following are the supported resource types for Direct Connect:
-
dxcon
-
dx-gateway
-
dx-vif
The following are the supported resource types for Network Manager:
-
connection
-
device
-
link
-
site
The following are the supported resource types for Amazon VPC:
-
customer-gateway
-
transit-gateway
-
transit-gateway-attachment
-
transit-gateway-connect-peer
-
transit-gateway-route-table
-
vpn-connection
resource_arn: Option<String>
The ARN of the resource.
max_results: Option<i32>
The maximum number of results to return.
next_token: Option<String>
The token for the next page of results.
Implementations§
source§impl GetNetworkTelemetryInput
impl GetNetworkTelemetryInput
sourcepub fn global_network_id(&self) -> Option<&str>
pub fn global_network_id(&self) -> Option<&str>
The ID of the global network.
sourcepub fn core_network_id(&self) -> Option<&str>
pub fn core_network_id(&self) -> Option<&str>
The ID of a core network.
sourcepub fn registered_gateway_arn(&self) -> Option<&str>
pub fn registered_gateway_arn(&self) -> Option<&str>
The ARN of the gateway.
sourcepub fn aws_region(&self) -> Option<&str>
pub fn aws_region(&self) -> Option<&str>
The Amazon Web Services Region.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID.
sourcepub fn resource_type(&self) -> Option<&str>
pub fn resource_type(&self) -> Option<&str>
The resource type.
The following are the supported resource types for Direct Connect:
-
dxcon
-
dx-gateway
-
dx-vif
The following are the supported resource types for Network Manager:
-
connection
-
device
-
link
-
site
The following are the supported resource types for Amazon VPC:
-
customer-gateway
-
transit-gateway
-
transit-gateway-attachment
-
transit-gateway-connect-peer
-
transit-gateway-route-table
-
vpn-connection
sourcepub fn resource_arn(&self) -> Option<&str>
pub fn resource_arn(&self) -> Option<&str>
The ARN of the resource.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next page of results.
source§impl GetNetworkTelemetryInput
impl GetNetworkTelemetryInput
sourcepub fn builder() -> GetNetworkTelemetryInputBuilder
pub fn builder() -> GetNetworkTelemetryInputBuilder
Creates a new builder-style object to manufacture GetNetworkTelemetryInput
.
Trait Implementations§
source§impl Clone for GetNetworkTelemetryInput
impl Clone for GetNetworkTelemetryInput
source§fn clone(&self) -> GetNetworkTelemetryInput
fn clone(&self) -> GetNetworkTelemetryInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetNetworkTelemetryInput
impl Debug for GetNetworkTelemetryInput
source§impl PartialEq for GetNetworkTelemetryInput
impl PartialEq for GetNetworkTelemetryInput
source§fn eq(&self, other: &GetNetworkTelemetryInput) -> bool
fn eq(&self, other: &GetNetworkTelemetryInput) -> bool
self
and other
values to be equal, and is used
by ==
.