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

The Amazon Resource Name (ARN) of the simulation. For more information about * ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline const Aws::String& GetArn() const{ return m_arn; } /** *

The Amazon Resource Name (ARN) of the simulation. For more information about * ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

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

The Amazon Resource Name (ARN) of the simulation. For more information about * ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

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

The Amazon Resource Name (ARN) of the simulation. For more information about * ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline void SetArn(const char* value) { m_arn.assign(value); } /** *

The Amazon Resource Name (ARN) of the simulation. For more information about * ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline StartSimulationResult& WithArn(const Aws::String& value) { SetArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the simulation. For more information about * ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline StartSimulationResult& WithArn(Aws::String&& value) { SetArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the simulation. For more information about * ARNs, see Amazon * Resource Names (ARNs) in the Amazon Web Services General * Reference.

*/ inline StartSimulationResult& WithArn(const char* value) { SetArn(value); return *this;} /** *

The time when the simulation was created, expressed as the number of seconds * and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).

*/ inline const Aws::Utils::DateTime& GetCreationTime() const{ return m_creationTime; } /** *

The time when the simulation was created, expressed as the number of seconds * and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).

*/ inline void SetCreationTime(const Aws::Utils::DateTime& value) { m_creationTime = value; } /** *

The time when the simulation was created, expressed as the number of seconds * and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).

*/ inline void SetCreationTime(Aws::Utils::DateTime&& value) { m_creationTime = std::move(value); } /** *

The time when the simulation was created, expressed as the number of seconds * and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).

*/ inline StartSimulationResult& WithCreationTime(const Aws::Utils::DateTime& value) { SetCreationTime(value); return *this;} /** *

The time when the simulation was created, expressed as the number of seconds * and milliseconds in UTC since the Unix epoch (0:0:0.000, January 1, 1970).

*/ inline StartSimulationResult& WithCreationTime(Aws::Utils::DateTime&& value) { SetCreationTime(std::move(value)); return *this;} /** *

A universally unique identifier (UUID) for this simulation.

*/ inline const Aws::String& GetExecutionId() const{ return m_executionId; } /** *

A universally unique identifier (UUID) for this simulation.

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

A universally unique identifier (UUID) for this simulation.

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

A universally unique identifier (UUID) for this simulation.

*/ inline void SetExecutionId(const char* value) { m_executionId.assign(value); } /** *

A universally unique identifier (UUID) for this simulation.

*/ inline StartSimulationResult& WithExecutionId(const Aws::String& value) { SetExecutionId(value); return *this;} /** *

A universally unique identifier (UUID) for this simulation.

*/ inline StartSimulationResult& WithExecutionId(Aws::String&& value) { SetExecutionId(std::move(value)); return *this;} /** *

A universally unique identifier (UUID) for this simulation.

*/ inline StartSimulationResult& WithExecutionId(const char* value) { SetExecutionId(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 StartSimulationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartSimulationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartSimulationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_arn; Aws::Utils::DateTime m_creationTime; Aws::String m_executionId; Aws::String m_requestId; }; } // namespace Model } // namespace SimSpaceWeaver } // namespace Aws