/** * 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 Proton { namespace Model { /** */ class ListServiceInstanceOutputsRequest : public ProtonRequest { public: AWS_PROTON_API ListServiceInstanceOutputsRequest(); // 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 "ListServiceInstanceOutputs"; } AWS_PROTON_API Aws::String SerializePayload() const override; AWS_PROTON_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The ID of the deployment whose outputs you want.

*/ inline const Aws::String& GetDeploymentId() const{ return m_deploymentId; } /** *

The ID of the deployment whose outputs you want.

*/ inline bool DeploymentIdHasBeenSet() const { return m_deploymentIdHasBeenSet; } /** *

The ID of the deployment whose outputs you want.

*/ inline void SetDeploymentId(const Aws::String& value) { m_deploymentIdHasBeenSet = true; m_deploymentId = value; } /** *

The ID of the deployment whose outputs you want.

*/ inline void SetDeploymentId(Aws::String&& value) { m_deploymentIdHasBeenSet = true; m_deploymentId = std::move(value); } /** *

The ID of the deployment whose outputs you want.

*/ inline void SetDeploymentId(const char* value) { m_deploymentIdHasBeenSet = true; m_deploymentId.assign(value); } /** *

The ID of the deployment whose outputs you want.

*/ inline ListServiceInstanceOutputsRequest& WithDeploymentId(const Aws::String& value) { SetDeploymentId(value); return *this;} /** *

The ID of the deployment whose outputs you want.

*/ inline ListServiceInstanceOutputsRequest& WithDeploymentId(Aws::String&& value) { SetDeploymentId(std::move(value)); return *this;} /** *

The ID of the deployment whose outputs you want.

*/ inline ListServiceInstanceOutputsRequest& WithDeploymentId(const char* value) { SetDeploymentId(value); return *this;} /** *

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

A token that indicates the location of the next output in the array of * outputs, after the list of outputs that was previously requested.

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

The name of the service instance whose outputs you want.

*/ inline const Aws::String& GetServiceInstanceName() const{ return m_serviceInstanceName; } /** *

The name of the service instance whose outputs you want.

*/ inline bool ServiceInstanceNameHasBeenSet() const { return m_serviceInstanceNameHasBeenSet; } /** *

The name of the service instance whose outputs you want.

*/ inline void SetServiceInstanceName(const Aws::String& value) { m_serviceInstanceNameHasBeenSet = true; m_serviceInstanceName = value; } /** *

The name of the service instance whose outputs you want.

*/ inline void SetServiceInstanceName(Aws::String&& value) { m_serviceInstanceNameHasBeenSet = true; m_serviceInstanceName = std::move(value); } /** *

The name of the service instance whose outputs you want.

*/ inline void SetServiceInstanceName(const char* value) { m_serviceInstanceNameHasBeenSet = true; m_serviceInstanceName.assign(value); } /** *

The name of the service instance whose outputs you want.

*/ inline ListServiceInstanceOutputsRequest& WithServiceInstanceName(const Aws::String& value) { SetServiceInstanceName(value); return *this;} /** *

The name of the service instance whose outputs you want.

*/ inline ListServiceInstanceOutputsRequest& WithServiceInstanceName(Aws::String&& value) { SetServiceInstanceName(std::move(value)); return *this;} /** *

The name of the service instance whose outputs you want.

*/ inline ListServiceInstanceOutputsRequest& WithServiceInstanceName(const char* value) { SetServiceInstanceName(value); return *this;} /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline const Aws::String& GetServiceName() const{ return m_serviceName; } /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline bool ServiceNameHasBeenSet() const { return m_serviceNameHasBeenSet; } /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline void SetServiceName(const Aws::String& value) { m_serviceNameHasBeenSet = true; m_serviceName = value; } /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline void SetServiceName(Aws::String&& value) { m_serviceNameHasBeenSet = true; m_serviceName = std::move(value); } /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline void SetServiceName(const char* value) { m_serviceNameHasBeenSet = true; m_serviceName.assign(value); } /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline ListServiceInstanceOutputsRequest& WithServiceName(const Aws::String& value) { SetServiceName(value); return *this;} /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline ListServiceInstanceOutputsRequest& WithServiceName(Aws::String&& value) { SetServiceName(std::move(value)); return *this;} /** *

The name of the service that serviceInstanceName is associated * to.

*/ inline ListServiceInstanceOutputsRequest& WithServiceName(const char* value) { SetServiceName(value); return *this;} private: Aws::String m_deploymentId; bool m_deploymentIdHasBeenSet = false; Aws::String m_nextToken; bool m_nextTokenHasBeenSet = false; Aws::String m_serviceInstanceName; bool m_serviceInstanceNameHasBeenSet = false; Aws::String m_serviceName; bool m_serviceNameHasBeenSet = false; }; } // namespace Model } // namespace Proton } // namespace Aws