@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:38.568Z") @Stability(value=Stable) public interface AppMeshProxyConfigurationConfigProps extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
AppMeshProxyConfigurationConfigProps.Builder
A builder for
AppMeshProxyConfigurationConfigProps |
static class |
AppMeshProxyConfigurationConfigProps.Jsii$Proxy
An implementation for
AppMeshProxyConfigurationConfigProps |
| Modifier and Type | Method and Description |
|---|---|
static AppMeshProxyConfigurationConfigProps.Builder |
builder() |
String |
getContainerName()
The name of the container that will serve as the App Mesh proxy.
|
AppMeshProxyConfigurationProps |
getProperties()
The set of network configuration parameters to provide the Container Network Interface (CNI) plugin.
|
@Stability(value=Stable) @NotNull String getContainerName()
@Stability(value=Stable) @NotNull AppMeshProxyConfigurationProps getProperties()
@Stability(value=Stable) static AppMeshProxyConfigurationConfigProps.Builder builder()
Copyright © 2022. All rights reserved.