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 ==
.