/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace SecurityHub { namespace Model { class AWS_SECURITYHUB_API CreateActionTargetResult { public: CreateActionTargetResult(); CreateActionTargetResult(const Aws::AmazonWebServiceResult& result); CreateActionTargetResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ARN for the custom action target.

*/ inline const Aws::String& GetActionTargetArn() const{ return m_actionTargetArn; } /** *

The ARN for the custom action target.

*/ inline void SetActionTargetArn(const Aws::String& value) { m_actionTargetArn = value; } /** *

The ARN for the custom action target.

*/ inline void SetActionTargetArn(Aws::String&& value) { m_actionTargetArn = std::move(value); } /** *

The ARN for the custom action target.

*/ inline void SetActionTargetArn(const char* value) { m_actionTargetArn.assign(value); } /** *

The ARN for the custom action target.

*/ inline CreateActionTargetResult& WithActionTargetArn(const Aws::String& value) { SetActionTargetArn(value); return *this;} /** *

The ARN for the custom action target.

*/ inline CreateActionTargetResult& WithActionTargetArn(Aws::String&& value) { SetActionTargetArn(std::move(value)); return *this;} /** *

The ARN for the custom action target.

*/ inline CreateActionTargetResult& WithActionTargetArn(const char* value) { SetActionTargetArn(value); return *this;} private: Aws::String m_actionTargetArn; }; } // namespace Model } // namespace SecurityHub } // namespace Aws