/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace SMS { namespace Model { /** *

Output from validating an application.

See Also:

AWS * API Reference

*/ class AppValidationOutput { public: AWS_SMS_API AppValidationOutput(); AWS_SMS_API AppValidationOutput(Aws::Utils::Json::JsonView jsonValue); AWS_SMS_API AppValidationOutput& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_SMS_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

Output from using SSM to validate the application.

*/ inline const SSMOutput& GetSsmOutput() const{ return m_ssmOutput; } /** *

Output from using SSM to validate the application.

*/ inline bool SsmOutputHasBeenSet() const { return m_ssmOutputHasBeenSet; } /** *

Output from using SSM to validate the application.

*/ inline void SetSsmOutput(const SSMOutput& value) { m_ssmOutputHasBeenSet = true; m_ssmOutput = value; } /** *

Output from using SSM to validate the application.

*/ inline void SetSsmOutput(SSMOutput&& value) { m_ssmOutputHasBeenSet = true; m_ssmOutput = std::move(value); } /** *

Output from using SSM to validate the application.

*/ inline AppValidationOutput& WithSsmOutput(const SSMOutput& value) { SetSsmOutput(value); return *this;} /** *

Output from using SSM to validate the application.

*/ inline AppValidationOutput& WithSsmOutput(SSMOutput&& value) { SetSsmOutput(std::move(value)); return *this;} private: SSMOutput m_ssmOutput; bool m_ssmOutputHasBeenSet = false; }; } // namespace Model } // namespace SMS } // namespace Aws