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

Provides information about the output configuration for the compiled * model.

See Also:

AWS * API Reference

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

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline const Aws::String& GetS3OutputUri() const{ return m_s3OutputUri; } /** *

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline bool S3OutputUriHasBeenSet() const { return m_s3OutputUriHasBeenSet; } /** *

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline void SetS3OutputUri(const Aws::String& value) { m_s3OutputUriHasBeenSet = true; m_s3OutputUri = value; } /** *

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline void SetS3OutputUri(Aws::String&& value) { m_s3OutputUriHasBeenSet = true; m_s3OutputUri = std::move(value); } /** *

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline void SetS3OutputUri(const char* value) { m_s3OutputUriHasBeenSet = true; m_s3OutputUri.assign(value); } /** *

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline RecommendationJobCompiledOutputConfig& WithS3OutputUri(const Aws::String& value) { SetS3OutputUri(value); return *this;} /** *

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline RecommendationJobCompiledOutputConfig& WithS3OutputUri(Aws::String&& value) { SetS3OutputUri(std::move(value)); return *this;} /** *

Identifies the Amazon S3 bucket where you want SageMaker to store the * compiled model artifacts.

*/ inline RecommendationJobCompiledOutputConfig& WithS3OutputUri(const char* value) { SetS3OutputUri(value); return *this;} private: Aws::String m_s3OutputUri; bool m_s3OutputUriHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws