Class: Aws::ApplicationSignals::Types::DependencyConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ApplicationSignals::Types::DependencyConfig
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Identifies the dependency using the DependencyKeyAttributes
and
DependencyOperationName
.
When creating a service dependency SLO, you must specify the
KeyAttributes
of the service, and the DependencyConfig
for the
dependency. You can specify the OperationName
of the service, from
which it calls the dependency. Alternatively, you can exclude
OperationName
and the SLO will monitor all of the service's
operations that call the dependency.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#dependency_key_attributes ⇒ Hash<String,String>
This is a string-to-string map.
-
#dependency_operation_name ⇒ String
The name of the called operation in the dependency.
Instance Attribute Details
#dependency_key_attributes ⇒ Hash<String,String>
This is a string-to-string map. It can include the following fields.
Type
designates the type of object this is.ResourceType
specifies the type of the resource. This field is used only when the value of theType
field isResource
orAWS::Resource
.Name
specifies the name of the object. This is used only if the value of theType
field isService
,RemoteService
, orAWS::Service
.Identifier
identifies the resource objects of this resource. This is used only if the value of theType
field isResource
orAWS::Resource
.Environment
specifies the location where this object is hosted, or what it belongs to.
342 343 344 345 346 347 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 342 class DependencyConfig < Struct.new( :dependency_key_attributes, :dependency_operation_name) SENSITIVE = [] include Aws::Structure end |
#dependency_operation_name ⇒ String
The name of the called operation in the dependency.
342 343 344 345 346 347 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 342 class DependencyConfig < Struct.new( :dependency_key_attributes, :dependency_operation_name) SENSITIVE = [] include Aws::Structure end |