This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-lambda/include/aws/lambda/model/TracingConfigResponse.h

79 lines
1.8 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/lambda/Lambda_EXPORTS.h>
#include <aws/lambda/model/TracingMode.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace Lambda
{
namespace Model
{
/**
* <p>The function's AWS X-Ray tracing configuration.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/lambda-2015-03-31/TracingConfigResponse">AWS
* API Reference</a></p>
*/
class AWS_LAMBDA_API TracingConfigResponse
{
public:
TracingConfigResponse();
TracingConfigResponse(Aws::Utils::Json::JsonView jsonValue);
TracingConfigResponse& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>The tracing mode.</p>
*/
inline const TracingMode& GetMode() const{ return m_mode; }
/**
* <p>The tracing mode.</p>
*/
inline bool ModeHasBeenSet() const { return m_modeHasBeenSet; }
/**
* <p>The tracing mode.</p>
*/
inline void SetMode(const TracingMode& value) { m_modeHasBeenSet = true; m_mode = value; }
/**
* <p>The tracing mode.</p>
*/
inline void SetMode(TracingMode&& value) { m_modeHasBeenSet = true; m_mode = std::move(value); }
/**
* <p>The tracing mode.</p>
*/
inline TracingConfigResponse& WithMode(const TracingMode& value) { SetMode(value); return *this;}
/**
* <p>The tracing mode.</p>
*/
inline TracingConfigResponse& WithMode(TracingMode&& value) { SetMode(std::move(value)); return *this;}
private:
TracingMode m_mode;
bool m_modeHasBeenSet;
};
} // namespace Model
} // namespace Lambda
} // namespace Aws