/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The object that contains the Docker image URI for either your robot or
* simulation applications.See Also:
AWS
* API Reference
The Docker image URI for either your robot or simulation applications.
*/ inline const Aws::String& GetUri() const{ return m_uri; } /** *The Docker image URI for either your robot or simulation applications.
*/ inline bool UriHasBeenSet() const { return m_uriHasBeenSet; } /** *The Docker image URI for either your robot or simulation applications.
*/ inline void SetUri(const Aws::String& value) { m_uriHasBeenSet = true; m_uri = value; } /** *The Docker image URI for either your robot or simulation applications.
*/ inline void SetUri(Aws::String&& value) { m_uriHasBeenSet = true; m_uri = std::move(value); } /** *The Docker image URI for either your robot or simulation applications.
*/ inline void SetUri(const char* value) { m_uriHasBeenSet = true; m_uri.assign(value); } /** *The Docker image URI for either your robot or simulation applications.
*/ inline Environment& WithUri(const Aws::String& value) { SetUri(value); return *this;} /** *The Docker image URI for either your robot or simulation applications.
*/ inline Environment& WithUri(Aws::String&& value) { SetUri(std::move(value)); return *this;} /** *The Docker image URI for either your robot or simulation applications.
*/ inline Environment& WithUri(const char* value) { SetUri(value); return *this;} private: Aws::String m_uri; bool m_uriHasBeenSet = false; }; } // namespace Model } // namespace RoboMaker } // namespace Aws