Interface IAppMeshProxyConfigurationConfigProps
The configuration to use when setting an App Mesh proxy configuration.
Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public interface IAppMeshProxyConfigurationConfigProps
Syntax (vb)
Public Interface IAppMeshProxyConfigurationConfigProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;
var appMeshProxyConfigurationConfigProps = new AppMeshProxyConfigurationConfigProps {
ContainerName = "containerName",
Properties = new AppMeshProxyConfigurationProps {
AppPorts = new [] { 123 },
ProxyEgressPort = 123,
ProxyIngressPort = 123,
// the properties below are optional
EgressIgnoredIPs = new [] { "egressIgnoredIPs" },
EgressIgnoredPorts = new [] { 123 },
IgnoredGID = 123,
IgnoredUID = 123
}
};
Synopsis
Properties
ContainerName | The name of the container that will serve as the App Mesh proxy. |
Properties | The set of network configuration parameters to provide the Container Network Interface (CNI) plugin. |
Properties
ContainerName
The name of the container that will serve as the App Mesh proxy.
string ContainerName { get; }
Property Value
System.String
Properties
The set of network configuration parameters to provide the Container Network Interface (CNI) plugin.
IAppMeshProxyConfigurationProps Properties { get; }
Property Value
IAppMeshProxyConfigurationProps