/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace SageMaker { namespace Model { /** */ class DescribeModelCardExportJobRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API DescribeModelCardExportJobRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DescribeModelCardExportJob"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline const Aws::String& GetModelCardExportJobArn() const{ return m_modelCardExportJobArn; } /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline bool ModelCardExportJobArnHasBeenSet() const { return m_modelCardExportJobArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline void SetModelCardExportJobArn(const Aws::String& value) { m_modelCardExportJobArnHasBeenSet = true; m_modelCardExportJobArn = value; } /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline void SetModelCardExportJobArn(Aws::String&& value) { m_modelCardExportJobArnHasBeenSet = true; m_modelCardExportJobArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline void SetModelCardExportJobArn(const char* value) { m_modelCardExportJobArnHasBeenSet = true; m_modelCardExportJobArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline DescribeModelCardExportJobRequest& WithModelCardExportJobArn(const Aws::String& value) { SetModelCardExportJobArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline DescribeModelCardExportJobRequest& WithModelCardExportJobArn(Aws::String&& value) { SetModelCardExportJobArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the model card export job to describe.

*/ inline DescribeModelCardExportJobRequest& WithModelCardExportJobArn(const char* value) { SetModelCardExportJobArn(value); return *this;} private: Aws::String m_modelCardExportJobArn; bool m_modelCardExportJobArnHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws