Struct aws_sdk_xray::types::InsightImpactGraphService
source · #[non_exhaustive]pub struct InsightImpactGraphService {
pub reference_id: Option<i32>,
pub type: Option<String>,
pub name: Option<String>,
pub names: Option<Vec<String>>,
pub account_id: Option<String>,
pub edges: Option<Vec<InsightImpactGraphEdge>>,
}
Expand description
Information about an application that processed requests, users that made requests, or downstream services, resources, and applications that an application used.
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.reference_id: Option<i32>
Identifier for the service. Unique within the service map.
type: Option<String>
Identifier for the service. Unique within the service map.
-
Amazon Web Services Resource - The type of an Amazon Web Services resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.
-
Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.
-
Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.
-
remote - A downstream service of indeterminate type.
name: Option<String>
The canonical name of the service.
names: Option<Vec<String>>
A list of names for the service, including the canonical name.
account_id: Option<String>
Identifier of the Amazon Web Services account in which the service runs.
edges: Option<Vec<InsightImpactGraphEdge>>
Connections to downstream services.
Implementations§
source§impl InsightImpactGraphService
impl InsightImpactGraphService
sourcepub fn reference_id(&self) -> Option<i32>
pub fn reference_id(&self) -> Option<i32>
Identifier for the service. Unique within the service map.
sourcepub fn type(&self) -> Option<&str>
pub fn type(&self) -> Option<&str>
Identifier for the service. Unique within the service map.
-
Amazon Web Services Resource - The type of an Amazon Web Services resource. For example, AWS::EC2::Instance for an application running on Amazon EC2 or AWS::DynamoDB::Table for an Amazon DynamoDB table that the application used.
-
Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.
-
Amazon Web Services Service - The type of an Amazon Web Services service. For example, AWS::DynamoDB for downstream calls to Amazon DynamoDB that didn't target a specific table.
-
remote - A downstream service of indeterminate type.
sourcepub fn names(&self) -> &[String]
pub fn names(&self) -> &[String]
A list of names for the service, including the canonical name.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .names.is_none()
.
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
Identifier of the Amazon Web Services account in which the service runs.
sourcepub fn edges(&self) -> &[InsightImpactGraphEdge]
pub fn edges(&self) -> &[InsightImpactGraphEdge]
Connections to downstream services.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .edges.is_none()
.
source§impl InsightImpactGraphService
impl InsightImpactGraphService
sourcepub fn builder() -> InsightImpactGraphServiceBuilder
pub fn builder() -> InsightImpactGraphServiceBuilder
Creates a new builder-style object to manufacture InsightImpactGraphService
.
Trait Implementations§
source§impl Clone for InsightImpactGraphService
impl Clone for InsightImpactGraphService
source§fn clone(&self) -> InsightImpactGraphService
fn clone(&self) -> InsightImpactGraphService
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for InsightImpactGraphService
impl Debug for InsightImpactGraphService
source§impl PartialEq for InsightImpactGraphService
impl PartialEq for InsightImpactGraphService
source§fn eq(&self, other: &InsightImpactGraphService) -> bool
fn eq(&self, other: &InsightImpactGraphService) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InsightImpactGraphService
Auto Trait Implementations§
impl Freeze for InsightImpactGraphService
impl RefUnwindSafe for InsightImpactGraphService
impl Send for InsightImpactGraphService
impl Sync for InsightImpactGraphService
impl Unpin for InsightImpactGraphService
impl UnwindSafe for InsightImpactGraphService
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