/** * 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 SageMaker { namespace Model { /** *

Configure the export output details for an Amazon SageMaker Model * Card.

See Also:

AWS * API Reference

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

The Amazon S3 output path to export your model card PDF.

*/ inline const Aws::String& GetS3OutputPath() const{ return m_s3OutputPath; } /** *

The Amazon S3 output path to export your model card PDF.

*/ inline bool S3OutputPathHasBeenSet() const { return m_s3OutputPathHasBeenSet; } /** *

The Amazon S3 output path to export your model card PDF.

*/ inline void SetS3OutputPath(const Aws::String& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = value; } /** *

The Amazon S3 output path to export your model card PDF.

*/ inline void SetS3OutputPath(Aws::String&& value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath = std::move(value); } /** *

The Amazon S3 output path to export your model card PDF.

*/ inline void SetS3OutputPath(const char* value) { m_s3OutputPathHasBeenSet = true; m_s3OutputPath.assign(value); } /** *

The Amazon S3 output path to export your model card PDF.

*/ inline ModelCardExportOutputConfig& WithS3OutputPath(const Aws::String& value) { SetS3OutputPath(value); return *this;} /** *

The Amazon S3 output path to export your model card PDF.

*/ inline ModelCardExportOutputConfig& WithS3OutputPath(Aws::String&& value) { SetS3OutputPath(std::move(value)); return *this;} /** *

The Amazon S3 output path to export your model card PDF.

*/ inline ModelCardExportOutputConfig& WithS3OutputPath(const char* value) { SetS3OutputPath(value); return *this;} private: Aws::String m_s3OutputPath; bool m_s3OutputPathHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws