/** * 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 signer { namespace Model { /** */ class GetSigningPlatformRequest : public SignerRequest { public: AWS_SIGNER_API GetSigningPlatformRequest(); // 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 "GetSigningPlatform"; } AWS_SIGNER_API Aws::String SerializePayload() const override; /** *

The ID of the target signing platform.

*/ inline const Aws::String& GetPlatformId() const{ return m_platformId; } /** *

The ID of the target signing platform.

*/ inline bool PlatformIdHasBeenSet() const { return m_platformIdHasBeenSet; } /** *

The ID of the target signing platform.

*/ inline void SetPlatformId(const Aws::String& value) { m_platformIdHasBeenSet = true; m_platformId = value; } /** *

The ID of the target signing platform.

*/ inline void SetPlatformId(Aws::String&& value) { m_platformIdHasBeenSet = true; m_platformId = std::move(value); } /** *

The ID of the target signing platform.

*/ inline void SetPlatformId(const char* value) { m_platformIdHasBeenSet = true; m_platformId.assign(value); } /** *

The ID of the target signing platform.

*/ inline GetSigningPlatformRequest& WithPlatformId(const Aws::String& value) { SetPlatformId(value); return *this;} /** *

The ID of the target signing platform.

*/ inline GetSigningPlatformRequest& WithPlatformId(Aws::String&& value) { SetPlatformId(std::move(value)); return *this;} /** *

The ID of the target signing platform.

*/ inline GetSigningPlatformRequest& WithPlatformId(const char* value) { SetPlatformId(value); return *this;} private: Aws::String m_platformId; bool m_platformIdHasBeenSet = false; }; } // namespace Model } // namespace signer } // namespace Aws