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

Detailed information about the StackSet operation.

See Also:

* AWS * API Reference

*/ class StackSetOperationStatusDetails { public: AWS_CLOUDFORMATION_API StackSetOperationStatusDetails(); AWS_CLOUDFORMATION_API StackSetOperationStatusDetails(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFORMATION_API StackSetOperationStatusDetails& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_CLOUDFORMATION_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

The number of stack instances for which the StackSet operation failed.

*/ inline int GetFailedStackInstancesCount() const{ return m_failedStackInstancesCount; } /** *

The number of stack instances for which the StackSet operation failed.

*/ inline bool FailedStackInstancesCountHasBeenSet() const { return m_failedStackInstancesCountHasBeenSet; } /** *

The number of stack instances for which the StackSet operation failed.

*/ inline void SetFailedStackInstancesCount(int value) { m_failedStackInstancesCountHasBeenSet = true; m_failedStackInstancesCount = value; } /** *

The number of stack instances for which the StackSet operation failed.

*/ inline StackSetOperationStatusDetails& WithFailedStackInstancesCount(int value) { SetFailedStackInstancesCount(value); return *this;} private: int m_failedStackInstancesCount; bool m_failedStackInstancesCountHasBeenSet = false; }; } // namespace Model } // namespace CloudFormation } // namespace Aws