aws-cdk-lib.aws_ecs.AppMeshProxyConfigurationConfigProps

interface AppMeshProxyConfigurationConfigProps

LanguageType name
.NETAmazon.CDK.AWS.ECS.AppMeshProxyConfigurationConfigProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsecs#AppMeshProxyConfigurationConfigProps
Javasoftware.amazon.awscdk.services.ecs.AppMeshProxyConfigurationConfigProps
Pythonaws_cdk.aws_ecs.AppMeshProxyConfigurationConfigProps
TypeScript (source)aws-cdk-lib » aws_ecs » AppMeshProxyConfigurationConfigProps

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 { aws_ecs as ecs } from 'aws-cdk-lib';
const appMeshProxyConfigurationConfigProps: ecs.AppMeshProxyConfigurationConfigProps = {
  containerName: 'containerName',
  properties: {
    appPorts: [123],
    proxyEgressPort: 123,
    proxyIngressPort: 123,

    // the properties below are optional
    egressIgnoredIPs: ['egressIgnoredIPs'],
    egressIgnoredPorts: [123],
    ignoredGID: 123,
    ignoredUID: 123,
  },
};

Properties

NameTypeDescription
containerNamestringThe name of the container that will serve as the App Mesh proxy.
propertiesAppMeshProxyConfigurationPropsThe set of network configuration parameters to provide the Container Network Interface (CNI) plugin.

containerName

Type: string

The name of the container that will serve as the App Mesh proxy.


properties

Type: AppMeshProxyConfigurationProps

The set of network configuration parameters to provide the Container Network Interface (CNI) plugin.