/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The URL of S3 bucket where you want to store the results of this
* request.See Also:
AWS
* API Reference
The URL of S3 bucket where you want to store the results of this request.
*/ inline const S3OutputUrl& GetS3OutputUrl() const{ return m_s3OutputUrl; } /** *The URL of S3 bucket where you want to store the results of this request.
*/ inline bool S3OutputUrlHasBeenSet() const { return m_s3OutputUrlHasBeenSet; } /** *The URL of S3 bucket where you want to store the results of this request.
*/ inline void SetS3OutputUrl(const S3OutputUrl& value) { m_s3OutputUrlHasBeenSet = true; m_s3OutputUrl = value; } /** *The URL of S3 bucket where you want to store the results of this request.
*/ inline void SetS3OutputUrl(S3OutputUrl&& value) { m_s3OutputUrlHasBeenSet = true; m_s3OutputUrl = std::move(value); } /** *The URL of S3 bucket where you want to store the results of this request.
*/ inline InstanceAssociationOutputUrl& WithS3OutputUrl(const S3OutputUrl& value) { SetS3OutputUrl(value); return *this;} /** *The URL of S3 bucket where you want to store the results of this request.
*/ inline InstanceAssociationOutputUrl& WithS3OutputUrl(S3OutputUrl&& value) { SetS3OutputUrl(std::move(value)); return *this;} private: S3OutputUrl m_s3OutputUrl; bool m_s3OutputUrlHasBeenSet = false; }; } // namespace Model } // namespace SSM } // namespace Aws