/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace CloudWatchLogs { namespace Model { /** */ class GetLogGroupFieldsRequest : public CloudWatchLogsRequest { public: AWS_CLOUDWATCHLOGS_API GetLogGroupFieldsRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "GetLogGroupFields"; } AWS_CLOUDWATCHLOGS_API Aws::String SerializePayload() const override; AWS_CLOUDWATCHLOGS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline const Aws::String& GetLogGroupName() const{ return m_logGroupName; } /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline bool LogGroupNameHasBeenSet() const { return m_logGroupNameHasBeenSet; } /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline void SetLogGroupName(const Aws::String& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = value; } /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline void SetLogGroupName(Aws::String&& value) { m_logGroupNameHasBeenSet = true; m_logGroupName = std::move(value); } /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline void SetLogGroupName(const char* value) { m_logGroupNameHasBeenSet = true; m_logGroupName.assign(value); } /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline GetLogGroupFieldsRequest& WithLogGroupName(const Aws::String& value) { SetLogGroupName(value); return *this;} /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline GetLogGroupFieldsRequest& WithLogGroupName(Aws::String&& value) { SetLogGroupName(std::move(value)); return *this;} /** *

The name of the log group to search.

You must include either * logGroupIdentifier or logGroupName, but not both.

* */ inline GetLogGroupFieldsRequest& WithLogGroupName(const char* value) { SetLogGroupName(value); return *this;} /** *

The time to set as the center of the query. If you specify time, * the 8 minutes before and 8 minutes after this time are searched. If you omit * time, the most recent 15 minutes up to the current time are * searched.

The time value is specified as epoch time, which * is the number of seconds since January 1, 1970, 00:00:00 UTC.

*/ inline long long GetTime() const{ return m_time; } /** *

The time to set as the center of the query. If you specify time, * the 8 minutes before and 8 minutes after this time are searched. If you omit * time, the most recent 15 minutes up to the current time are * searched.

The time value is specified as epoch time, which * is the number of seconds since January 1, 1970, 00:00:00 UTC.

*/ inline bool TimeHasBeenSet() const { return m_timeHasBeenSet; } /** *

The time to set as the center of the query. If you specify time, * the 8 minutes before and 8 minutes after this time are searched. If you omit * time, the most recent 15 minutes up to the current time are * searched.

The time value is specified as epoch time, which * is the number of seconds since January 1, 1970, 00:00:00 UTC.

*/ inline void SetTime(long long value) { m_timeHasBeenSet = true; m_time = value; } /** *

The time to set as the center of the query. If you specify time, * the 8 minutes before and 8 minutes after this time are searched. If you omit * time, the most recent 15 minutes up to the current time are * searched.

The time value is specified as epoch time, which * is the number of seconds since January 1, 1970, 00:00:00 UTC.

*/ inline GetLogGroupFieldsRequest& WithTime(long long value) { SetTime(value); return *this;} /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline const Aws::String& GetLogGroupIdentifier() const{ return m_logGroupIdentifier; } /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline bool LogGroupIdentifierHasBeenSet() const { return m_logGroupIdentifierHasBeenSet; } /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline void SetLogGroupIdentifier(const Aws::String& value) { m_logGroupIdentifierHasBeenSet = true; m_logGroupIdentifier = value; } /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline void SetLogGroupIdentifier(Aws::String&& value) { m_logGroupIdentifierHasBeenSet = true; m_logGroupIdentifier = std::move(value); } /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline void SetLogGroupIdentifier(const char* value) { m_logGroupIdentifierHasBeenSet = true; m_logGroupIdentifier.assign(value); } /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline GetLogGroupFieldsRequest& WithLogGroupIdentifier(const Aws::String& value) { SetLogGroupIdentifier(value); return *this;} /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline GetLogGroupFieldsRequest& WithLogGroupIdentifier(Aws::String&& value) { SetLogGroupIdentifier(std::move(value)); return *this;} /** *

Specify either the name or ARN of the log group to view. If the log group is * in a source account and you are using a monitoring account, you must specify the * ARN.

You must include either logGroupIdentifier or * logGroupName, but not both.

*/ inline GetLogGroupFieldsRequest& WithLogGroupIdentifier(const char* value) { SetLogGroupIdentifier(value); return *this;} private: Aws::String m_logGroupName; bool m_logGroupNameHasBeenSet = false; long long m_time; bool m_timeHasBeenSet = false; Aws::String m_logGroupIdentifier; bool m_logGroupIdentifierHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchLogs } // namespace Aws