Struct aws_sdk_xray::model::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
sourceimpl 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) -> Option<&[String]>
pub fn names(&self) -> Option<&[String]>
A list of names for the service, including the canonical name.
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) -> Option<&[InsightImpactGraphEdge]>
pub fn edges(&self) -> Option<&[InsightImpactGraphEdge]>
Connections to downstream services.
sourceimpl InsightImpactGraphService
impl InsightImpactGraphService
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InsightImpactGraphService
Trait Implementations
sourceimpl Clone for InsightImpactGraphService
impl Clone for InsightImpactGraphService
sourcefn clone(&self) -> InsightImpactGraphService
fn clone(&self) -> InsightImpactGraphService
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InsightImpactGraphService
impl Debug for InsightImpactGraphService
sourceimpl PartialEq<InsightImpactGraphService> for InsightImpactGraphService
impl PartialEq<InsightImpactGraphService> for InsightImpactGraphService
sourcefn eq(&self, other: &InsightImpactGraphService) -> bool
fn eq(&self, other: &InsightImpactGraphService) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &InsightImpactGraphService) -> bool
fn ne(&self, other: &InsightImpactGraphService) -> bool
This method tests for !=
.
impl StructuralPartialEq for InsightImpactGraphService
Auto Trait Implementations
impl RefUnwindSafe for InsightImpactGraphService
impl Send for InsightImpactGraphService
impl Sync for InsightImpactGraphService
impl Unpin for InsightImpactGraphService
impl UnwindSafe for InsightImpactGraphService
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more