/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about an action that returns a custom HTTP response.
* See Also:
AWS
* API Reference
The HTTP response code.
*/ inline int GetStatusCode() const{ return m_statusCode; } /** *The HTTP response code.
*/ inline bool StatusCodeHasBeenSet() const { return m_statusCodeHasBeenSet; } /** *The HTTP response code.
*/ inline void SetStatusCode(int value) { m_statusCodeHasBeenSet = true; m_statusCode = value; } /** *The HTTP response code.
*/ inline FixedResponseAction& WithStatusCode(int value) { SetStatusCode(value); return *this;} private: int m_statusCode; bool m_statusCodeHasBeenSet = false; }; } // namespace Model } // namespace VPCLattice } // namespace Aws