/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace Braket { namespace Model { /** *

The container image used to create an Amazon Braket job.

See * Also:

AWS * API Reference

*/ class ContainerImage { public: AWS_BRAKET_API ContainerImage(); AWS_BRAKET_API ContainerImage(Aws::Utils::Json::JsonView jsonValue); AWS_BRAKET_API ContainerImage& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_BRAKET_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The URI locating the container image.

*/ inline const Aws::String& GetUri() const{ return m_uri; } /** *

The URI locating the container image.

*/ inline bool UriHasBeenSet() const { return m_uriHasBeenSet; } /** *

The URI locating the container image.

*/ inline void SetUri(const Aws::String& value) { m_uriHasBeenSet = true; m_uri = value; } /** *

The URI locating the container image.

*/ inline void SetUri(Aws::String&& value) { m_uriHasBeenSet = true; m_uri = std::move(value); } /** *

The URI locating the container image.

*/ inline void SetUri(const char* value) { m_uriHasBeenSet = true; m_uri.assign(value); } /** *

The URI locating the container image.

*/ inline ContainerImage& WithUri(const Aws::String& value) { SetUri(value); return *this;} /** *

The URI locating the container image.

*/ inline ContainerImage& WithUri(Aws::String&& value) { SetUri(std::move(value)); return *this;} /** *

The URI locating the container image.

*/ inline ContainerImage& WithUri(const char* value) { SetUri(value); return *this;} private: Aws::String m_uri; bool m_uriHasBeenSet = false; }; } // namespace Model } // namespace Braket } // namespace Aws