/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The artifacts of the model card export job.See Also:
AWS
* API Reference
The Amazon S3 URI of the exported model artifacts.
*/ inline const Aws::String& GetS3ExportArtifacts() const{ return m_s3ExportArtifacts; } /** *The Amazon S3 URI of the exported model artifacts.
*/ inline bool S3ExportArtifactsHasBeenSet() const { return m_s3ExportArtifactsHasBeenSet; } /** *The Amazon S3 URI of the exported model artifacts.
*/ inline void SetS3ExportArtifacts(const Aws::String& value) { m_s3ExportArtifactsHasBeenSet = true; m_s3ExportArtifacts = value; } /** *The Amazon S3 URI of the exported model artifacts.
*/ inline void SetS3ExportArtifacts(Aws::String&& value) { m_s3ExportArtifactsHasBeenSet = true; m_s3ExportArtifacts = std::move(value); } /** *The Amazon S3 URI of the exported model artifacts.
*/ inline void SetS3ExportArtifacts(const char* value) { m_s3ExportArtifactsHasBeenSet = true; m_s3ExportArtifacts.assign(value); } /** *The Amazon S3 URI of the exported model artifacts.
*/ inline ModelCardExportArtifacts& WithS3ExportArtifacts(const Aws::String& value) { SetS3ExportArtifacts(value); return *this;} /** *The Amazon S3 URI of the exported model artifacts.
*/ inline ModelCardExportArtifacts& WithS3ExportArtifacts(Aws::String&& value) { SetS3ExportArtifacts(std::move(value)); return *this;} /** *The Amazon S3 URI of the exported model artifacts.
*/ inline ModelCardExportArtifacts& WithS3ExportArtifacts(const char* value) { SetS3ExportArtifacts(value); return *this;} private: Aws::String m_s3ExportArtifacts; bool m_s3ExportArtifactsHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws