/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The type of action to be taken.See Also:
AWS
* API Reference
The type of action to be taken.
*/ inline const ImageActionType& GetType() const{ return m_type; } /** *The type of action to be taken.
*/ inline bool TypeHasBeenSet() const { return m_typeHasBeenSet; } /** *The type of action to be taken.
*/ inline void SetType(const ImageActionType& value) { m_typeHasBeenSet = true; m_type = value; } /** *The type of action to be taken.
*/ inline void SetType(ImageActionType&& value) { m_typeHasBeenSet = true; m_type = std::move(value); } /** *The type of action to be taken.
*/ inline LifecyclePolicyRuleAction& WithType(const ImageActionType& value) { SetType(value); return *this;} /** *The type of action to be taken.
*/ inline LifecyclePolicyRuleAction& WithType(ImageActionType&& value) { SetType(std::move(value)); return *this;} private: ImageActionType m_type; bool m_typeHasBeenSet = false; }; } // namespace Model } // namespace ECR } // namespace Aws