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.
Typedesignates the type of object this is.ResourceTypespecifies the type of the resource. This field is used only when the value of theTypefield isResourceorAWS::Resource.Namespecifies the name of the object. This is used only if the value of theTypefield isService,RemoteService, orAWS::Service.Identifieridentifies the resource objects of this resource. This is used only if the value of theTypefield isResourceorAWS::Resource.Environmentspecifies the location where this object is hosted, or what it belongs to.
581 582 583 584 585 586 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 581 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.
581 582 583 584 585 586 |
# File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 581 class DependencyConfig < Struct.new( :dependency_key_attributes, :dependency_operation_name) SENSITIVE = [] include Aws::Structure end |