@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:06.986Z") @Stability(value=Experimental) 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()
(experimental) The name of the container that will serve as the App Mesh proxy.
|
AppMeshProxyConfigurationProps |
getProperties()
(experimental) The set of network configuration parameters to provide the Container Network Interface (CNI) plugin.
|
@Stability(value=Experimental) @NotNull String getContainerName()
@Stability(value=Experimental) @NotNull AppMeshProxyConfigurationProps getProperties()
@Stability(value=Experimental) static AppMeshProxyConfigurationConfigProps.Builder builder()
Copyright © 2022. All rights reserved.