/** * 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 ECS { namespace Model { /** *

The details for the service registry.

Each service may be associated * with one service registry. Multiple service registries for each service are not * supported.

When you add, update, or remove the service registries * configuration, Amazon ECS starts a new deployment. New tasks are registered and * deregistered to the updated service registry configuration.

See * Also:

AWS * API Reference

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

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline const Aws::String& GetRegistryArn() const{ return m_registryArn; } /** *

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline bool RegistryArnHasBeenSet() const { return m_registryArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline void SetRegistryArn(const Aws::String& value) { m_registryArnHasBeenSet = true; m_registryArn = value; } /** *

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline void SetRegistryArn(Aws::String&& value) { m_registryArnHasBeenSet = true; m_registryArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline void SetRegistryArn(const char* value) { m_registryArnHasBeenSet = true; m_registryArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline ServiceRegistry& WithRegistryArn(const Aws::String& value) { SetRegistryArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline ServiceRegistry& WithRegistryArn(Aws::String&& value) { SetRegistryArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the service registry. The currently * supported service registry is Cloud Map. For more information, see CreateService.

*/ inline ServiceRegistry& WithRegistryArn(const char* value) { SetRegistryArn(value); return *this;} /** *

The port value used if your service discovery service specified an SRV * record. This field might be used if both the awsvpc network mode * and SRV records are used.

*/ inline int GetPort() const{ return m_port; } /** *

The port value used if your service discovery service specified an SRV * record. This field might be used if both the awsvpc network mode * and SRV records are used.

*/ inline bool PortHasBeenSet() const { return m_portHasBeenSet; } /** *

The port value used if your service discovery service specified an SRV * record. This field might be used if both the awsvpc network mode * and SRV records are used.

*/ inline void SetPort(int value) { m_portHasBeenSet = true; m_port = value; } /** *

The port value used if your service discovery service specified an SRV * record. This field might be used if both the awsvpc network mode * and SRV records are used.

*/ inline ServiceRegistry& WithPort(int value) { SetPort(value); return *this;} /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline const Aws::String& GetContainerName() const{ return m_containerName; } /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline bool ContainerNameHasBeenSet() const { return m_containerNameHasBeenSet; } /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline void SetContainerName(const Aws::String& value) { m_containerNameHasBeenSet = true; m_containerName = value; } /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline void SetContainerName(Aws::String&& value) { m_containerNameHasBeenSet = true; m_containerName = std::move(value); } /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline void SetContainerName(const char* value) { m_containerNameHasBeenSet = true; m_containerName.assign(value); } /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline ServiceRegistry& WithContainerName(const Aws::String& value) { SetContainerName(value); return *this;} /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline ServiceRegistry& WithContainerName(Aws::String&& value) { SetContainerName(std::move(value)); return *this;} /** *

The container name value to be used for your service discovery service. It's * already specified in the task definition. If the task definition that your * service task specifies uses the bridge or host network * mode, you must specify a containerName and * containerPort combination from the task definition. If the task * definition that your service task specifies uses the awsvpc network * mode and a type SRV DNS record is used, you must specify either a * containerName and containerPort combination or a * port value. However, you can't specify both.

*/ inline ServiceRegistry& WithContainerName(const char* value) { SetContainerName(value); return *this;} /** *

The port value to be used for your service discovery service. It's already * specified in the task definition. If the task definition your service task * specifies uses the bridge or host network mode, you * must specify a containerName and containerPort * combination from the task definition. If the task definition your service task * specifies uses the awsvpc network mode and a type SRV DNS record is * used, you must specify either a containerName and * containerPort combination or a port value. However, * you can't specify both.

*/ inline int GetContainerPort() const{ return m_containerPort; } /** *

The port value to be used for your service discovery service. It's already * specified in the task definition. If the task definition your service task * specifies uses the bridge or host network mode, you * must specify a containerName and containerPort * combination from the task definition. If the task definition your service task * specifies uses the awsvpc network mode and a type SRV DNS record is * used, you must specify either a containerName and * containerPort combination or a port value. However, * you can't specify both.

*/ inline bool ContainerPortHasBeenSet() const { return m_containerPortHasBeenSet; } /** *

The port value to be used for your service discovery service. It's already * specified in the task definition. If the task definition your service task * specifies uses the bridge or host network mode, you * must specify a containerName and containerPort * combination from the task definition. If the task definition your service task * specifies uses the awsvpc network mode and a type SRV DNS record is * used, you must specify either a containerName and * containerPort combination or a port value. However, * you can't specify both.

*/ inline void SetContainerPort(int value) { m_containerPortHasBeenSet = true; m_containerPort = value; } /** *

The port value to be used for your service discovery service. It's already * specified in the task definition. If the task definition your service task * specifies uses the bridge or host network mode, you * must specify a containerName and containerPort * combination from the task definition. If the task definition your service task * specifies uses the awsvpc network mode and a type SRV DNS record is * used, you must specify either a containerName and * containerPort combination or a port value. However, * you can't specify both.

*/ inline ServiceRegistry& WithContainerPort(int value) { SetContainerPort(value); return *this;} private: Aws::String m_registryArn; bool m_registryArnHasBeenSet = false; int m_port; bool m_portHasBeenSet = false; Aws::String m_containerName; bool m_containerNameHasBeenSet = false; int m_containerPort; bool m_containerPortHasBeenSet = false; }; } // namespace Model } // namespace ECS } // namespace Aws