/** * 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 { /** *

The artifacts of the model card export job.

See Also:

AWS * API Reference

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

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