/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The Amazon S3 storage configuration of a hub.See Also:
AWS
* API Reference
The Amazon S3 bucket prefix for hosting hub content.
*/ inline const Aws::String& GetS3OutputPath() const{ return m_s3OutputPath; } /** *The Amazon S3 bucket prefix for hosting hub content.
*/ inline bool S3OutputPathHasBeenSet() const { return m_s3OutputPathHasBeenSet; } /** *The Amazon S3 bucket prefix for hosting hub content.
*/ inline void SetS3OutputPath(const Aws::String& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = value; } /** *The Amazon S3 bucket prefix for hosting hub content.
*/ inline void SetS3OutputPath(Aws::String&& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = std::move(value); } /** *The Amazon S3 bucket prefix for hosting hub content.
*/ inline void SetS3OutputPath(const char* value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath.assign(value); } /** *The Amazon S3 bucket prefix for hosting hub content.
*/ inline HubS3StorageConfig& WithS3OutputPath(const Aws::String& value) { SetS3OutputPath(value); return *this;} /** *The Amazon S3 bucket prefix for hosting hub content.
*/ inline HubS3StorageConfig& WithS3OutputPath(Aws::String&& value) { SetS3OutputPath(std::move(value)); return *this;} /** *The Amazon S3 bucket prefix for hosting hub content.
*/ inline HubS3StorageConfig& WithS3OutputPath(const char* value) { SetS3OutputPath(value); return *this;} private: Aws::String m_s3OutputPath; bool m_s3OutputPathHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws