/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the source where the association execution details are
* stored.See Also:
AWS
* API Reference
The ID of the output source, for example the URL of an S3 bucket.
*/ inline const Aws::String& GetOutputSourceId() const{ return m_outputSourceId; } inline bool OutputSourceIdHasBeenSet() const { return m_outputSourceIdHasBeenSet; } inline void SetOutputSourceId(const Aws::String& value) { m_outputSourceIdHasBeenSet = true; m_outputSourceId = value; } inline void SetOutputSourceId(Aws::String&& value) { m_outputSourceIdHasBeenSet = true; m_outputSourceId = std::move(value); } inline void SetOutputSourceId(const char* value) { m_outputSourceIdHasBeenSet = true; m_outputSourceId.assign(value); } inline OutputSource& WithOutputSourceId(const Aws::String& value) { SetOutputSourceId(value); return *this;} inline OutputSource& WithOutputSourceId(Aws::String&& value) { SetOutputSourceId(std::move(value)); return *this;} inline OutputSource& WithOutputSourceId(const char* value) { SetOutputSourceId(value); return *this;} ///@} ///@{ /** *The type of source where the association execution details are stored, for * example, Amazon S3.
*/ inline const Aws::String& GetOutputSourceType() const{ return m_outputSourceType; } inline bool OutputSourceTypeHasBeenSet() const { return m_outputSourceTypeHasBeenSet; } inline void SetOutputSourceType(const Aws::String& value) { m_outputSourceTypeHasBeenSet = true; m_outputSourceType = value; } inline void SetOutputSourceType(Aws::String&& value) { m_outputSourceTypeHasBeenSet = true; m_outputSourceType = std::move(value); } inline void SetOutputSourceType(const char* value) { m_outputSourceTypeHasBeenSet = true; m_outputSourceType.assign(value); } inline OutputSource& WithOutputSourceType(const Aws::String& value) { SetOutputSourceType(value); return *this;} inline OutputSource& WithOutputSourceType(Aws::String&& value) { SetOutputSourceType(std::move(value)); return *this;} inline OutputSource& WithOutputSourceType(const char* value) { SetOutputSourceType(value); return *this;} ///@} private: Aws::String m_outputSourceId; bool m_outputSourceIdHasBeenSet = false; Aws::String m_outputSourceType; bool m_outputSourceTypeHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws