Class: Aws::Resiliencehubv2::Types::DependencyInsight

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#categoryString

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.

Returns:

  • (String)


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

#descriptionString

A human-readable explanation of the insight, describing the dependency behavior or condition that was detected.

Returns:

  • (String)


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