AWS SDK for C++

AWS SDK for C++ Version 1.11.440

Loading...
Searching...
No Matches
AccountUsage.h
1
6#pragma once
7#include <aws/lambda/Lambda_EXPORTS.h>
8
9namespace Aws
10{
11namespace Utils
12{
13namespace Json
14{
15 class JsonValue;
16 class JsonView;
17} // namespace Json
18} // namespace Utils
19namespace Lambda
20{
21namespace Model
22{
23
31 {
32 public:
33 AWS_LAMBDA_API AccountUsage();
34 AWS_LAMBDA_API AccountUsage(Aws::Utils::Json::JsonView jsonValue);
36 AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const;
37
38
40
44 inline long long GetTotalCodeSize() const{ return m_totalCodeSize; }
45 inline bool TotalCodeSizeHasBeenSet() const { return m_totalCodeSizeHasBeenSet; }
46 inline void SetTotalCodeSize(long long value) { m_totalCodeSizeHasBeenSet = true; m_totalCodeSize = value; }
47 inline AccountUsage& WithTotalCodeSize(long long value) { SetTotalCodeSize(value); return *this;}
49
51
54 inline long long GetFunctionCount() const{ return m_functionCount; }
55 inline bool FunctionCountHasBeenSet() const { return m_functionCountHasBeenSet; }
56 inline void SetFunctionCount(long long value) { m_functionCountHasBeenSet = true; m_functionCount = value; }
57 inline AccountUsage& WithFunctionCount(long long value) { SetFunctionCount(value); return *this;}
59 private:
60
61 long long m_totalCodeSize;
62 bool m_totalCodeSizeHasBeenSet = false;
63
64 long long m_functionCount;
65 bool m_functionCountHasBeenSet = false;
66 };
67
68} // namespace Model
69} // namespace Lambda
70} // namespace Aws
void SetFunctionCount(long long value)
long long GetFunctionCount() const
AccountUsage & WithFunctionCount(long long value)
AWS_LAMBDA_API Aws::Utils::Json::JsonValue Jsonize() const
AWS_LAMBDA_API AccountUsage(Aws::Utils::Json::JsonView jsonValue)
AWS_LAMBDA_API AccountUsage & operator=(Aws::Utils::Json::JsonView jsonValue)
void SetTotalCodeSize(long long value)
AccountUsage & WithTotalCodeSize(long long value)
long long GetTotalCodeSize() const
Aws::Utils::Json::JsonValue JsonValue