/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The result structure for the generate access logs request. See
* Also:
AWS
* API Reference
The pre-signed URL for the requested access logs.
*/ inline const Aws::String& GetLogUrl() const{ return m_logUrl; } /** *The pre-signed URL for the requested access logs.
*/ inline void SetLogUrl(const Aws::String& value) { m_logUrl = value; } /** *The pre-signed URL for the requested access logs.
*/ inline void SetLogUrl(Aws::String&& value) { m_logUrl = std::move(value); } /** *The pre-signed URL for the requested access logs.
*/ inline void SetLogUrl(const char* value) { m_logUrl.assign(value); } /** *The pre-signed URL for the requested access logs.
*/ inline GenerateAccessLogsResult& WithLogUrl(const Aws::String& value) { SetLogUrl(value); return *this;} /** *The pre-signed URL for the requested access logs.
*/ inline GenerateAccessLogsResult& WithLogUrl(Aws::String&& value) { SetLogUrl(std::move(value)); return *this;} /** *The pre-signed URL for the requested access logs.
*/ inline GenerateAccessLogsResult& WithLogUrl(const char* value) { SetLogUrl(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GenerateAccessLogsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GenerateAccessLogsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GenerateAccessLogsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_logUrl; Aws::String m_requestId; }; } // namespace Model } // namespace Amplify } // namespace Aws