/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the output of a put repository triggers operation.See
* Also:
AWS
* API Reference
The system-generated unique ID for the create or update operation.
*/ inline const Aws::String& GetConfigurationId() const{ return m_configurationId; } /** *The system-generated unique ID for the create or update operation.
*/ inline void SetConfigurationId(const Aws::String& value) { m_configurationId = value; } /** *The system-generated unique ID for the create or update operation.
*/ inline void SetConfigurationId(Aws::String&& value) { m_configurationId = std::move(value); } /** *The system-generated unique ID for the create or update operation.
*/ inline void SetConfigurationId(const char* value) { m_configurationId.assign(value); } /** *The system-generated unique ID for the create or update operation.
*/ inline PutRepositoryTriggersResult& WithConfigurationId(const Aws::String& value) { SetConfigurationId(value); return *this;} /** *The system-generated unique ID for the create or update operation.
*/ inline PutRepositoryTriggersResult& WithConfigurationId(Aws::String&& value) { SetConfigurationId(std::move(value)); return *this;} /** *The system-generated unique ID for the create or update operation.
*/ inline PutRepositoryTriggersResult& WithConfigurationId(const char* value) { SetConfigurationId(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 PutRepositoryTriggersResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline PutRepositoryTriggersResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline PutRepositoryTriggersResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_configurationId; Aws::String m_requestId; }; } // namespace Model } // namespace CodeCommit } // namespace Aws