/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include #include namespace Aws { namespace CodeCatalyst { namespace Model { /** */ class StartDevEnvironmentRequest : public CodeCatalystRequest { public: AWS_CODECATALYST_API StartDevEnvironmentRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "StartDevEnvironment"; } AWS_CODECATALYST_API Aws::String SerializePayload() const override; /** *

The name of the space.

*/ inline const Aws::String& GetSpaceName() const{ return m_spaceName; } /** *

The name of the space.

*/ inline bool SpaceNameHasBeenSet() const { return m_spaceNameHasBeenSet; } /** *

The name of the space.

*/ inline void SetSpaceName(const Aws::String& value) { m_spaceNameHasBeenSet = true; m_spaceName = value; } /** *

The name of the space.

*/ inline void SetSpaceName(Aws::String&& value) { m_spaceNameHasBeenSet = true; m_spaceName = std::move(value); } /** *

The name of the space.

*/ inline void SetSpaceName(const char* value) { m_spaceNameHasBeenSet = true; m_spaceName.assign(value); } /** *

The name of the space.

*/ inline StartDevEnvironmentRequest& WithSpaceName(const Aws::String& value) { SetSpaceName(value); return *this;} /** *

The name of the space.

*/ inline StartDevEnvironmentRequest& WithSpaceName(Aws::String&& value) { SetSpaceName(std::move(value)); return *this;} /** *

The name of the space.

*/ inline StartDevEnvironmentRequest& WithSpaceName(const char* value) { SetSpaceName(value); return *this;} /** *

The name of the project in the space.

*/ inline const Aws::String& GetProjectName() const{ return m_projectName; } /** *

The name of the project in the space.

*/ inline bool ProjectNameHasBeenSet() const { return m_projectNameHasBeenSet; } /** *

The name of the project in the space.

*/ inline void SetProjectName(const Aws::String& value) { m_projectNameHasBeenSet = true; m_projectName = value; } /** *

The name of the project in the space.

*/ inline void SetProjectName(Aws::String&& value) { m_projectNameHasBeenSet = true; m_projectName = std::move(value); } /** *

The name of the project in the space.

*/ inline void SetProjectName(const char* value) { m_projectNameHasBeenSet = true; m_projectName.assign(value); } /** *

The name of the project in the space.

*/ inline StartDevEnvironmentRequest& WithProjectName(const Aws::String& value) { SetProjectName(value); return *this;} /** *

The name of the project in the space.

*/ inline StartDevEnvironmentRequest& WithProjectName(Aws::String&& value) { SetProjectName(std::move(value)); return *this;} /** *

The name of the project in the space.

*/ inline StartDevEnvironmentRequest& WithProjectName(const char* value) { SetProjectName(value); return *this;} /** *

The system-generated unique ID of the Dev Environment.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The system-generated unique ID of the Dev Environment.

*/ inline bool IdHasBeenSet() const { return m_idHasBeenSet; } /** *

The system-generated unique ID of the Dev Environment.

*/ inline void SetId(const Aws::String& value) { m_idHasBeenSet = true; m_id = value; } /** *

The system-generated unique ID of the Dev Environment.

*/ inline void SetId(Aws::String&& value) { m_idHasBeenSet = true; m_id = std::move(value); } /** *

The system-generated unique ID of the Dev Environment.

*/ inline void SetId(const char* value) { m_idHasBeenSet = true; m_id.assign(value); } /** *

The system-generated unique ID of the Dev Environment.

*/ inline StartDevEnvironmentRequest& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The system-generated unique ID of the Dev Environment.

*/ inline StartDevEnvironmentRequest& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The system-generated unique ID of the Dev Environment.

*/ inline StartDevEnvironmentRequest& WithId(const char* value) { SetId(value); return *this;} /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline const Aws::Vector& GetIdes() const{ return m_ides; } /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline bool IdesHasBeenSet() const { return m_idesHasBeenSet; } /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline void SetIdes(const Aws::Vector& value) { m_idesHasBeenSet = true; m_ides = value; } /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline void SetIdes(Aws::Vector&& value) { m_idesHasBeenSet = true; m_ides = std::move(value); } /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline StartDevEnvironmentRequest& WithIdes(const Aws::Vector& value) { SetIdes(value); return *this;} /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline StartDevEnvironmentRequest& WithIdes(Aws::Vector&& value) { SetIdes(std::move(value)); return *this;} /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline StartDevEnvironmentRequest& AddIdes(const IdeConfiguration& value) { m_idesHasBeenSet = true; m_ides.push_back(value); return *this; } /** *

Information about the integrated development environment (IDE) configured for * a Dev Environment.

*/ inline StartDevEnvironmentRequest& AddIdes(IdeConfiguration&& value) { m_idesHasBeenSet = true; m_ides.push_back(std::move(value)); return *this; } /** *

The Amazon EC2 instace type to use for the Dev Environment.

*/ inline const InstanceType& GetInstanceType() const{ return m_instanceType; } /** *

The Amazon EC2 instace type to use for the Dev Environment.

*/ inline bool InstanceTypeHasBeenSet() const { return m_instanceTypeHasBeenSet; } /** *

The Amazon EC2 instace type to use for the Dev Environment.

*/ inline void SetInstanceType(const InstanceType& value) { m_instanceTypeHasBeenSet = true; m_instanceType = value; } /** *

The Amazon EC2 instace type to use for the Dev Environment.

*/ inline void SetInstanceType(InstanceType&& value) { m_instanceTypeHasBeenSet = true; m_instanceType = std::move(value); } /** *

The Amazon EC2 instace type to use for the Dev Environment.

*/ inline StartDevEnvironmentRequest& WithInstanceType(const InstanceType& value) { SetInstanceType(value); return *this;} /** *

The Amazon EC2 instace type to use for the Dev Environment.

*/ inline StartDevEnvironmentRequest& WithInstanceType(InstanceType&& value) { SetInstanceType(std::move(value)); return *this;} /** *

The amount of time the Dev Environment will run without any activity detected * before stopping, in minutes. Only whole integers are allowed. Dev Environments * consume compute minutes when running.

*/ inline int GetInactivityTimeoutMinutes() const{ return m_inactivityTimeoutMinutes; } /** *

The amount of time the Dev Environment will run without any activity detected * before stopping, in minutes. Only whole integers are allowed. Dev Environments * consume compute minutes when running.

*/ inline bool InactivityTimeoutMinutesHasBeenSet() const { return m_inactivityTimeoutMinutesHasBeenSet; } /** *

The amount of time the Dev Environment will run without any activity detected * before stopping, in minutes. Only whole integers are allowed. Dev Environments * consume compute minutes when running.

*/ inline void SetInactivityTimeoutMinutes(int value) { m_inactivityTimeoutMinutesHasBeenSet = true; m_inactivityTimeoutMinutes = value; } /** *

The amount of time the Dev Environment will run without any activity detected * before stopping, in minutes. Only whole integers are allowed. Dev Environments * consume compute minutes when running.

*/ inline StartDevEnvironmentRequest& WithInactivityTimeoutMinutes(int value) { SetInactivityTimeoutMinutes(value); return *this;} private: Aws::String m_spaceName; bool m_spaceNameHasBeenSet = false; Aws::String m_projectName; bool m_projectNameHasBeenSet = false; Aws::String m_id; bool m_idHasBeenSet = false; Aws::Vector m_ides; bool m_idesHasBeenSet = false; InstanceType m_instanceType; bool m_instanceTypeHasBeenSet = false; int m_inactivityTimeoutMinutes; bool m_inactivityTimeoutMinutesHasBeenSet = false; }; } // namespace Model } // namespace CodeCatalyst } // namespace Aws