Class: Aws::Resiliencehubv2::Types::DependencyInsight
- Inherits:
-
Struct
- Object
- Struct
- Aws::Resiliencehubv2::Types::DependencyInsight
- Defined in:
- gems/aws-sdk-resiliencehubv2/lib/aws-sdk-resiliencehubv2/types.rb
Overview
Contains a single insight about a service's dependencies.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#category ⇒ String
The category of the insight.
-
#description ⇒ String
A human-readable explanation of the insight, describing the dependency behavior or condition that was detected.
Instance Attribute Details
#category ⇒ String
The category of the insight. Valid values:
CROSS_REGION - The insight relates to dependencies used across multiple Regions.
NEW_DEPENDENCY - The insight relates to a recently detected dependency.
THIRD_PARTY - The insight relates to a third-party dependency.
UNEVEN_USAGE - The insight relates to a dependency with uneven usage across the service.
AWS_SERVICE - The insight relates to a dependency on an Amazon Web Services service.
1221 1222 1223 1224 1225 1226 |
# File 'gems/aws-sdk-resiliencehubv2/lib/aws-sdk-resiliencehubv2/types.rb', line 1221 class DependencyInsight < Struct.new( :category, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A human-readable explanation of the insight, describing the dependency behavior or condition that was detected.
1221 1222 1223 1224 1225 1226 |
# File 'gems/aws-sdk-resiliencehubv2/lib/aws-sdk-resiliencehubv2/types.rb', line 1221 class DependencyInsight < Struct.new( :category, :description) SENSITIVE = [] include Aws::Structure end |