/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information about the network endpoint that you can use to connect to your
* custom or service app. For more information about SimSpace Weaver apps, see Key
* concepts: Apps in the SimSpace Weaver User Guide..See
* Also:
AWS
* API Reference
The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline const Aws::String& GetAddress() const{ return m_address; } /** *The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline bool AddressHasBeenSet() const { return m_addressHasBeenSet; } /** *The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline void SetAddress(const Aws::String& value) { m_addressHasBeenSet = true; m_address = value; } /** *The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline void SetAddress(Aws::String&& value) { m_addressHasBeenSet = true; m_address = std::move(value); } /** *The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline void SetAddress(const char* value) { m_addressHasBeenSet = true; m_address.assign(value); } /** *The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline SimulationAppEndpointInfo& WithAddress(const Aws::String& value) { SetAddress(value); return *this;} /** *The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline SimulationAppEndpointInfo& WithAddress(Aws::String&& value) { SetAddress(std::move(value)); return *this;} /** *The IP address of the app. SimSpace Weaver dynamically assigns this IP * address when the app starts.
*/ inline SimulationAppEndpointInfo& WithAddress(const char* value) { SetAddress(value); return *this;} /** *The inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline const Aws::VectorThe inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline bool IngressPortMappingsHasBeenSet() const { return m_ingressPortMappingsHasBeenSet; } /** *The inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline void SetIngressPortMappings(const Aws::VectorThe inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline void SetIngressPortMappings(Aws::VectorThe inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline SimulationAppEndpointInfo& WithIngressPortMappings(const Aws::VectorThe inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline SimulationAppEndpointInfo& WithIngressPortMappings(Aws::VectorThe inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline SimulationAppEndpointInfo& AddIngressPortMappings(const SimulationAppPortMapping& value) { m_ingressPortMappingsHasBeenSet = true; m_ingressPortMappings.push_back(value); return *this; } /** *The inbound TCP/UDP port numbers of the app. The combination of an IP address * and a port number form a network endpoint.
*/ inline SimulationAppEndpointInfo& AddIngressPortMappings(SimulationAppPortMapping&& value) { m_ingressPortMappingsHasBeenSet = true; m_ingressPortMappings.push_back(std::move(value)); return *this; } private: Aws::String m_address; bool m_addressHasBeenSet = false; Aws::Vector