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

A list of triggers for the specified job.

*/ inline const Aws::Vector& GetTriggers() const{ return m_triggers; } /** *

A list of triggers for the specified job.

*/ inline void SetTriggers(const Aws::Vector& value) { m_triggers = value; } /** *

A list of triggers for the specified job.

*/ inline void SetTriggers(Aws::Vector&& value) { m_triggers = std::move(value); } /** *

A list of triggers for the specified job.

*/ inline GetTriggersResult& WithTriggers(const Aws::Vector& value) { SetTriggers(value); return *this;} /** *

A list of triggers for the specified job.

*/ inline GetTriggersResult& WithTriggers(Aws::Vector&& value) { SetTriggers(std::move(value)); return *this;} /** *

A list of triggers for the specified job.

*/ inline GetTriggersResult& AddTriggers(const Trigger& value) { m_triggers.push_back(value); return *this; } /** *

A list of triggers for the specified job.

*/ inline GetTriggersResult& AddTriggers(Trigger&& value) { m_triggers.push_back(std::move(value)); return *this; } /** *

A continuation token, if not all the requested triggers have yet been * returned.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

A continuation token, if not all the requested triggers have yet been * returned.

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

A continuation token, if not all the requested triggers have yet been * returned.

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

A continuation token, if not all the requested triggers have yet been * returned.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

A continuation token, if not all the requested triggers have yet been * returned.

*/ inline GetTriggersResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

A continuation token, if not all the requested triggers have yet been * returned.

*/ inline GetTriggersResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

A continuation token, if not all the requested triggers have yet been * returned.

*/ inline GetTriggersResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline GetTriggersResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetTriggersResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetTriggersResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::Vector m_triggers; Aws::String m_nextToken; Aws::String m_requestId; }; } // namespace Model } // namespace Glue } // namespace Aws