interface NetworkConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnServicePropsMixin.NetworkConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnServicePropsMixin_NetworkConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnServicePropsMixin.NetworkConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnServicePropsMixin.NetworkConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » CfnServicePropsMixin » NetworkConfigurationProperty |
Describes configuration settings related to network traffic of an AWS App Runner service.
Consists of embedded objects for each configurable network feature.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const networkConfigurationProperty: apprunner_mixins.CfnServicePropsMixin.NetworkConfigurationProperty = {
egressConfiguration: {
egressType: 'egressType',
vpcConnectorArn: 'vpcConnectorArn',
},
ingressConfiguration: {
isPubliclyAccessible: false,
},
ipAddressType: 'ipAddressType',
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | IResolvable | Egress | Network configuration settings for outbound message traffic. |
| ingress | IResolvable | Ingress | Network configuration settings for inbound message traffic. |
| ip | string | App Runner provides you with the option to choose between IPv4 and dual stack (IPv4 and IPv6) for your incoming public network configuration. |
egressConfiguration?
Type:
IResolvable | Egress
(optional)
Network configuration settings for outbound message traffic.
ingressConfiguration?
Type:
IResolvable | Ingress
(optional)
Network configuration settings for inbound message traffic.
ipAddressType?
Type:
string
(optional)
App Runner provides you with the option to choose between IPv4 and dual stack (IPv4 and IPv6) for your incoming public network configuration.
This is an optional parameter. If you do not specify an IpAddressType , it defaults to select IPv4.

.NET
Go
Java
Python
TypeScript