/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include A URL for the Amazon Web Services Systems Manager (Systems Manager) bucket
* where you want to store the results of this request.See Also:
* AWS
* API Reference
A URL for an S3 bucket where you want to store the results of this * request.
*/ inline const Aws::String& GetOutputUrl() const{ return m_outputUrl; } /** *A URL for an S3 bucket where you want to store the results of this * request.
*/ inline bool OutputUrlHasBeenSet() const { return m_outputUrlHasBeenSet; } /** *A URL for an S3 bucket where you want to store the results of this * request.
*/ inline void SetOutputUrl(const Aws::String& value) { m_outputUrlHasBeenSet = true; m_outputUrl = value; } /** *A URL for an S3 bucket where you want to store the results of this * request.
*/ inline void SetOutputUrl(Aws::String&& value) { m_outputUrlHasBeenSet = true; m_outputUrl = std::move(value); } /** *A URL for an S3 bucket where you want to store the results of this * request.
*/ inline void SetOutputUrl(const char* value) { m_outputUrlHasBeenSet = true; m_outputUrl.assign(value); } /** *A URL for an S3 bucket where you want to store the results of this * request.
*/ inline S3OutputUrl& WithOutputUrl(const Aws::String& value) { SetOutputUrl(value); return *this;} /** *A URL for an S3 bucket where you want to store the results of this * request.
*/ inline S3OutputUrl& WithOutputUrl(Aws::String&& value) { SetOutputUrl(std::move(value)); return *this;} /** *A URL for an S3 bucket where you want to store the results of this * request.
*/ inline S3OutputUrl& WithOutputUrl(const char* value) { SetOutputUrl(value); return *this;} private: Aws::String m_outputUrl; bool m_outputUrlHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws