277 lines
8.0 KiB
C
277 lines
8.0 KiB
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <aws/logs/CloudWatchLogs_EXPORTS.h>
|
|||
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|||
|
|
#include <utility>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
namespace Json
|
|||
|
|
{
|
|||
|
|
class JsonValue;
|
|||
|
|
class JsonView;
|
|||
|
|
} // namespace Json
|
|||
|
|
} // namespace Utils
|
|||
|
|
namespace CloudWatchLogs
|
|||
|
|
{
|
|||
|
|
namespace Model
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>Represents a log group.</p><p><h3>See Also:</h3> <a
|
|||
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/logs-2014-03-28/LogGroup">AWS API
|
|||
|
|
* Reference</a></p>
|
|||
|
|
*/
|
|||
|
|
class AWS_CLOUDWATCHLOGS_API LogGroup
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
LogGroup();
|
|||
|
|
LogGroup(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
LogGroup& operator=(Aws::Utils::Json::JsonView jsonValue);
|
|||
|
|
Aws::Utils::Json::JsonValue Jsonize() const;
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetLogGroupName() const{ return m_logGroupName; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool LogGroupNameHasBeenSet() const { return m_logGroupNameHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetLogGroupName(const Aws::String& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetLogGroupName(Aws::String&& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetLogGroupName(const char* value) { m_logGroupNameHasBeenSet = true; m_logGroupName.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithLogGroupName(const Aws::String& value) { SetLogGroupName(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithLogGroupName(Aws::String&& value) { SetLogGroupName(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The name of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithLogGroupName(const char* value) { SetLogGroupName(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The creation time of the log group, expressed as the number of milliseconds
|
|||
|
|
* after Jan 1, 1970 00:00:00 UTC.</p>
|
|||
|
|
*/
|
|||
|
|
inline long long GetCreationTime() const{ return m_creationTime; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The creation time of the log group, expressed as the number of milliseconds
|
|||
|
|
* after Jan 1, 1970 00:00:00 UTC.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool CreationTimeHasBeenSet() const { return m_creationTimeHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The creation time of the log group, expressed as the number of milliseconds
|
|||
|
|
* after Jan 1, 1970 00:00:00 UTC.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetCreationTime(long long value) { m_creationTimeHasBeenSet = true; m_creationTime = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The creation time of the log group, expressed as the number of milliseconds
|
|||
|
|
* after Jan 1, 1970 00:00:00 UTC.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithCreationTime(long long value) { SetCreationTime(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline int GetRetentionInDays() const{ return m_retentionInDays; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline bool RetentionInDaysHasBeenSet() const { return m_retentionInDaysHasBeenSet; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline void SetRetentionInDays(int value) { m_retentionInDaysHasBeenSet = true; m_retentionInDays = value; }
|
|||
|
|
|
|||
|
|
|
|||
|
|
inline LogGroup& WithRetentionInDays(int value) { SetRetentionInDays(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of metric filters.</p>
|
|||
|
|
*/
|
|||
|
|
inline int GetMetricFilterCount() const{ return m_metricFilterCount; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of metric filters.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool MetricFilterCountHasBeenSet() const { return m_metricFilterCountHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of metric filters.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetMetricFilterCount(int value) { m_metricFilterCountHasBeenSet = true; m_metricFilterCount = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of metric filters.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithMetricFilterCount(int value) { SetMetricFilterCount(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetArn() const{ return m_arn; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool ArnHasBeenSet() const { return m_arnHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetArn(const Aws::String& value) { m_arnHasBeenSet = true; m_arn = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetArn(Aws::String&& value) { m_arnHasBeenSet = true; m_arn = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetArn(const char* value) { m_arnHasBeenSet = true; m_arn.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithArn(const Aws::String& value) { SetArn(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the log group.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithArn(const char* value) { SetArn(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of bytes stored.</p>
|
|||
|
|
*/
|
|||
|
|
inline long long GetStoredBytes() const{ return m_storedBytes; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of bytes stored.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool StoredBytesHasBeenSet() const { return m_storedBytesHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of bytes stored.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetStoredBytes(long long value) { m_storedBytesHasBeenSet = true; m_storedBytes = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The number of bytes stored.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithStoredBytes(long long value) { SetStoredBytes(value); return *this;}
|
|||
|
|
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline const Aws::String& GetKmsKeyId() const{ return m_kmsKeyId; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline bool KmsKeyIdHasBeenSet() const { return m_kmsKeyIdHasBeenSet; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetKmsKeyId(const Aws::String& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = value; }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetKmsKeyId(Aws::String&& value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId = std::move(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline void SetKmsKeyId(const char* value) { m_kmsKeyIdHasBeenSet = true; m_kmsKeyId.assign(value); }
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithKmsKeyId(const Aws::String& value) { SetKmsKeyId(value); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithKmsKeyId(Aws::String&& value) { SetKmsKeyId(std::move(value)); return *this;}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* <p>The Amazon Resource Name (ARN) of the CMK to use when encrypting log
|
|||
|
|
* data.</p>
|
|||
|
|
*/
|
|||
|
|
inline LogGroup& WithKmsKeyId(const char* value) { SetKmsKeyId(value); return *this;}
|
|||
|
|
|
|||
|
|
private:
|
|||
|
|
|
|||
|
|
Aws::String m_logGroupName;
|
|||
|
|
bool m_logGroupNameHasBeenSet;
|
|||
|
|
|
|||
|
|
long long m_creationTime;
|
|||
|
|
bool m_creationTimeHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_retentionInDays;
|
|||
|
|
bool m_retentionInDaysHasBeenSet;
|
|||
|
|
|
|||
|
|
int m_metricFilterCount;
|
|||
|
|
bool m_metricFilterCountHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_arn;
|
|||
|
|
bool m_arnHasBeenSet;
|
|||
|
|
|
|||
|
|
long long m_storedBytes;
|
|||
|
|
bool m_storedBytesHasBeenSet;
|
|||
|
|
|
|||
|
|
Aws::String m_kmsKeyId;
|
|||
|
|
bool m_kmsKeyIdHasBeenSet;
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
} // namespace Model
|
|||
|
|
} // namespace CloudWatchLogs
|
|||
|
|
} // namespace Aws
|