Interface AppMeshProxyConfigurationConfigProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AppMeshProxyConfigurationConfigProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:16.256Z") @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();