268 lines
11 KiB
C++
268 lines
11 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/logs/CloudWatchLogsRequest.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/logs/model/InputLogEvent.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace CloudWatchLogs
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_CLOUDWATCHLOGS_API PutLogEventsRequest : public CloudWatchLogsRequest
|
|
{
|
|
public:
|
|
PutLogEventsRequest();
|
|
|
|
// 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 "PutLogEvents"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <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 PutLogEventsRequest& WithLogGroupName(const Aws::String& value) { SetLogGroupName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the log group.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithLogGroupName(Aws::String&& value) { SetLogGroupName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the log group.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithLogGroupName(const char* value) { SetLogGroupName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline const Aws::String& GetLogStreamName() const{ return m_logStreamName; }
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline bool LogStreamNameHasBeenSet() const { return m_logStreamNameHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline void SetLogStreamName(const Aws::String& value) { m_logStreamNameHasBeenSet = true; m_logStreamName = value; }
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline void SetLogStreamName(Aws::String&& value) { m_logStreamNameHasBeenSet = true; m_logStreamName = std::move(value); }
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline void SetLogStreamName(const char* value) { m_logStreamNameHasBeenSet = true; m_logStreamName.assign(value); }
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithLogStreamName(const Aws::String& value) { SetLogStreamName(value); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithLogStreamName(Aws::String&& value) { SetLogStreamName(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The name of the log stream.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithLogStreamName(const char* value) { SetLogStreamName(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline const Aws::Vector<InputLogEvent>& GetLogEvents() const{ return m_logEvents; }
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline bool LogEventsHasBeenSet() const { return m_logEventsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline void SetLogEvents(const Aws::Vector<InputLogEvent>& value) { m_logEventsHasBeenSet = true; m_logEvents = value; }
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline void SetLogEvents(Aws::Vector<InputLogEvent>&& value) { m_logEventsHasBeenSet = true; m_logEvents = std::move(value); }
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithLogEvents(const Aws::Vector<InputLogEvent>& value) { SetLogEvents(value); return *this;}
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithLogEvents(Aws::Vector<InputLogEvent>&& value) { SetLogEvents(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline PutLogEventsRequest& AddLogEvents(const InputLogEvent& value) { m_logEventsHasBeenSet = true; m_logEvents.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>The log events.</p>
|
|
*/
|
|
inline PutLogEventsRequest& AddLogEvents(InputLogEvent&& value) { m_logEventsHasBeenSet = true; m_logEvents.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline const Aws::String& GetSequenceToken() const{ return m_sequenceToken; }
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline bool SequenceTokenHasBeenSet() const { return m_sequenceTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline void SetSequenceToken(const Aws::String& value) { m_sequenceTokenHasBeenSet = true; m_sequenceToken = value; }
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline void SetSequenceToken(Aws::String&& value) { m_sequenceTokenHasBeenSet = true; m_sequenceToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline void SetSequenceToken(const char* value) { m_sequenceTokenHasBeenSet = true; m_sequenceToken.assign(value); }
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithSequenceToken(const Aws::String& value) { SetSequenceToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithSequenceToken(Aws::String&& value) { SetSequenceToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The sequence token obtained from the response of the previous
|
|
* <code>PutLogEvents</code> call. An upload in a newly created log stream does not
|
|
* require a sequence token. You can also get the sequence token using <a
|
|
* href="https://docs.aws.amazon.com/AmazonCloudWatchLogs/latest/APIReference/API_DescribeLogStreams.html">DescribeLogStreams</a>.
|
|
* If you call <code>PutLogEvents</code> twice within a narrow time period using
|
|
* the same value for <code>sequenceToken</code>, both calls might be successful or
|
|
* one might be rejected.</p>
|
|
*/
|
|
inline PutLogEventsRequest& WithSequenceToken(const char* value) { SetSequenceToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_logGroupName;
|
|
bool m_logGroupNameHasBeenSet;
|
|
|
|
Aws::String m_logStreamName;
|
|
bool m_logStreamNameHasBeenSet;
|
|
|
|
Aws::Vector<InputLogEvent> m_logEvents;
|
|
bool m_logEventsHasBeenSet;
|
|
|
|
Aws::String m_sequenceToken;
|
|
bool m_sequenceTokenHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace CloudWatchLogs
|
|
} // namespace Aws
|