/** * 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 DescribeEdgeDeploymentPlanRequest : public SageMakerRequest { public: AWS_SAGEMAKER_API DescribeEdgeDeploymentPlanRequest(); // 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 "DescribeEdgeDeploymentPlan"; } AWS_SAGEMAKER_API Aws::String SerializePayload() const override; AWS_SAGEMAKER_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the deployment plan to describe.

*/ inline const Aws::String& GetEdgeDeploymentPlanName() const{ return m_edgeDeploymentPlanName; } /** *

The name of the deployment plan to describe.

*/ inline bool EdgeDeploymentPlanNameHasBeenSet() const { return m_edgeDeploymentPlanNameHasBeenSet; } /** *

The name of the deployment plan to describe.

*/ inline void SetEdgeDeploymentPlanName(const Aws::String& value) { m_edgeDeploymentPlanNameHasBeenSet = true; m_edgeDeploymentPlanName = value; } /** *

The name of the deployment plan to describe.

*/ inline void SetEdgeDeploymentPlanName(Aws::String&& value) { m_edgeDeploymentPlanNameHasBeenSet = true; m_edgeDeploymentPlanName = std::move(value); } /** *

The name of the deployment plan to describe.

*/ inline void SetEdgeDeploymentPlanName(const char* value) { m_edgeDeploymentPlanNameHasBeenSet = true; m_edgeDeploymentPlanName.assign(value); } /** *

The name of the deployment plan to describe.

*/ inline DescribeEdgeDeploymentPlanRequest& WithEdgeDeploymentPlanName(const Aws::String& value) { SetEdgeDeploymentPlanName(value); return *this;} /** *

The name of the deployment plan to describe.

*/ inline DescribeEdgeDeploymentPlanRequest& WithEdgeDeploymentPlanName(Aws::String&& value) { SetEdgeDeploymentPlanName(std::move(value)); return *this;} /** *

The name of the deployment plan to describe.

*/ inline DescribeEdgeDeploymentPlanRequest& WithEdgeDeploymentPlanName(const char* value) { SetEdgeDeploymentPlanName(value); return *this;} /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; } /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; } /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); } /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); } /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline DescribeEdgeDeploymentPlanRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline DescribeEdgeDeploymentPlanRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

If the edge deployment plan has enough stages to require tokening, then this * is the response from the last list of stages returned.

*/ inline DescribeEdgeDeploymentPlanRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The maximum number of results to select (50 by default).

*/ inline int GetMaxResults() const{ return m_maxResults; } /** *

The maximum number of results to select (50 by default).

*/ inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; } /** *

The maximum number of results to select (50 by default).

*/ inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; } /** *

The maximum number of results to select (50 by default).

*/ inline DescribeEdgeDeploymentPlanRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;} private: Aws::String m_edgeDeploymentPlanName; bool m_edgeDeploymentPlanNameHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; int m_maxResults; bool m_maxResultsHasBeenSet = false; }; } // namespace Model } // namespace SageMaker } // namespace Aws