78 lines
2.3 KiB
C++
78 lines
2.3 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/ssm/SSM_EXPORTS.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace SSM
|
|
{
|
|
namespace Model
|
|
{
|
|
class AWS_SSM_API StartAutomationExecutionResult
|
|
{
|
|
public:
|
|
StartAutomationExecutionResult();
|
|
StartAutomationExecutionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
StartAutomationExecutionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The unique ID of a newly scheduled automation execution.</p>
|
|
*/
|
|
inline const Aws::String& GetAutomationExecutionId() const{ return m_automationExecutionId; }
|
|
|
|
/**
|
|
* <p>The unique ID of a newly scheduled automation execution.</p>
|
|
*/
|
|
inline void SetAutomationExecutionId(const Aws::String& value) { m_automationExecutionId = value; }
|
|
|
|
/**
|
|
* <p>The unique ID of a newly scheduled automation execution.</p>
|
|
*/
|
|
inline void SetAutomationExecutionId(Aws::String&& value) { m_automationExecutionId = std::move(value); }
|
|
|
|
/**
|
|
* <p>The unique ID of a newly scheduled automation execution.</p>
|
|
*/
|
|
inline void SetAutomationExecutionId(const char* value) { m_automationExecutionId.assign(value); }
|
|
|
|
/**
|
|
* <p>The unique ID of a newly scheduled automation execution.</p>
|
|
*/
|
|
inline StartAutomationExecutionResult& WithAutomationExecutionId(const Aws::String& value) { SetAutomationExecutionId(value); return *this;}
|
|
|
|
/**
|
|
* <p>The unique ID of a newly scheduled automation execution.</p>
|
|
*/
|
|
inline StartAutomationExecutionResult& WithAutomationExecutionId(Aws::String&& value) { SetAutomationExecutionId(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>The unique ID of a newly scheduled automation execution.</p>
|
|
*/
|
|
inline StartAutomationExecutionResult& WithAutomationExecutionId(const char* value) { SetAutomationExecutionId(value); return *this;}
|
|
|
|
private:
|
|
|
|
Aws::String m_automationExecutionId;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace SSM
|
|
} // namespace Aws
|