Interface AppMeshProxyConfigurationConfigProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AppMeshProxyConfigurationConfigProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.975Z")
@Stability(Stable)
public interface AppMeshProxyConfigurationConfigProps
extends software.amazon.jsii.JsiiSerializable
The configuration to use when setting an App Mesh proxy configuration.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ecs.*; AppMeshProxyConfigurationConfigProps appMeshProxyConfigurationConfigProps = AppMeshProxyConfigurationConfigProps.builder() .containerName("containerName") .properties(AppMeshProxyConfigurationProps.builder() .appPorts(List.of(123)) .proxyEgressPort(123) .proxyIngressPort(123) // the properties below are optional .egressIgnoredIPs(List.of("egressIgnoredIPs")) .egressIgnoredPorts(List.of(123)) .ignoredGID(123) .ignoredUID(123) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAppMeshProxyConfigurationConfigProps
static final class
An implementation forAppMeshProxyConfigurationConfigProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the container that will serve as the App Mesh proxy.The set of network configuration parameters to provide the Container Network Interface (CNI) plugin.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getContainerName
The name of the container that will serve as the App Mesh proxy. -
getProperties
The set of network configuration parameters to provide the Container Network Interface (CNI) plugin. -
builder
-