/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SSM { namespace Model { /** *

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

*/ class S3OutputUrl { public: AWS_SSM_API S3OutputUrl(); AWS_SSM_API S3OutputUrl(Aws::Utils::Json::JsonView jsonValue); AWS_SSM_API S3OutputUrl& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SSM_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

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