Interface ServiceDependency.Builder

  • Method Details

    • operationName

      ServiceDependency.Builder operationName(String operationName)

      The name of the operation in this service that calls the dependency.

      Parameters:
      operationName - The name of the operation in this service that calls the dependency.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • dependencyKeyAttributes

      ServiceDependency.Builder dependencyKeyAttributes(Map<String,String> dependencyKeyAttributes)

      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 the Type field is Resource or AWS::Resource.

      • Name specifies the name of the object. This is used only if the value of the Type field is Service, RemoteService, or AWS::Service.

      • Identifier identifies the resource objects of this resource. This is used only if the value of the Type field is Resource or AWS::Resource.

      • Environment specifies the location where this object is hosted, or what it belongs to.

      Parameters:
      dependencyKeyAttributes - 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 the Type field is Resource or AWS::Resource.

      • Name specifies the name of the object. This is used only if the value of the Type field is Service, RemoteService, or AWS::Service.

      • Identifier identifies the resource objects of this resource. This is used only if the value of the Type field is Resource or AWS::Resource.

      • Environment specifies the location where this object is hosted, or what it belongs to.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • dependencyOperationName

      ServiceDependency.Builder dependencyOperationName(String dependencyOperationName)

      The name of the called operation in the dependency.

      Parameters:
      dependencyOperationName - The name of the called operation in the dependency.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • metricReferences

      ServiceDependency.Builder metricReferences(Collection<MetricReference> metricReferences)

      An array of structures that each contain information about one metric associated with this service dependency that was discovered by Application Signals.

      Parameters:
      metricReferences - An array of structures that each contain information about one metric associated with this service dependency that was discovered by Application Signals.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • metricReferences

      ServiceDependency.Builder metricReferences(MetricReference... metricReferences)

      An array of structures that each contain information about one metric associated with this service dependency that was discovered by Application Signals.

      Parameters:
      metricReferences - An array of structures that each contain information about one metric associated with this service dependency that was discovered by Application Signals.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • metricReferences

      ServiceDependency.Builder metricReferences(Consumer<MetricReference.Builder>... metricReferences)

      An array of structures that each contain information about one metric associated with this service dependency that was discovered by Application Signals.

      This is a convenience method that creates an instance of the MetricReference.Builder avoiding the need to create one manually via MetricReference.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to metricReferences(List<MetricReference>).

      Parameters:
      metricReferences - a consumer that will call methods on MetricReference.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: