Lesson 35 - Get Compute Auth Token Working

This commit is contained in:
Norman Lansing
2026-02-28 12:32:28 -05:00
parent 1d477ee42a
commit 4fde462bce
7743 changed files with 1397833 additions and 18 deletions

View File

@@ -0,0 +1,30 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <smithy/tracing/Tracer.h>
#include <smithy/Smithy_EXPORTS.h>
namespace smithy {
namespace components {
namespace tracing {
/**
* Entry point for creating Tracer instances.
*/
class SMITHY_API TracerProvider {
public:
virtual ~TracerProvider() = default;
/**
* Returns a reference to a Tracer instance.
* @param scope The scope of the Tracer that is being used.
* @param attributes the attributes or dimensions associate with this measurement.
* @return A reference to a Tracer instance.
*/
virtual std::shared_ptr<Tracer> GetTracer(Aws::String scope, const Aws::Map<Aws::String, Aws::String> &attributes) = 0;
};
}
}
}