/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Output from validating an application.See Also:
AWS
* API Reference
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