interface NetworkConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppRunner.CfnService.NetworkConfigurationProperty |
Java | software.amazon.awscdk.services.apprunner.CfnService.NetworkConfigurationProperty |
Python | aws_cdk.aws_apprunner.CfnService.NetworkConfigurationProperty |
TypeScript | @aws-cdk/aws-apprunner » CfnService » 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 * as apprunner from '@aws-cdk/aws-apprunner';
const networkConfigurationProperty: apprunner.CfnService.NetworkConfigurationProperty = {
egressConfiguration: {
egressType: 'egressType',
// the properties below are optional
vpcConnectorArn: 'vpcConnectorArn',
},
ingressConfiguration: {
isPubliclyAccessible: false,
},
};
Properties
Name | Type | Description |
---|---|---|
egress | IResolvable | Egress | Network configuration settings for outbound message traffic. |
ingress | IResolvable | Ingress | Network configuration settings for inbound message traffic. |
egressConfiguration?
Type:
IResolvable
|
Egress
(optional)
Network configuration settings for outbound message traffic.
ingressConfiguration?
Type:
IResolvable
|
Ingress
(optional)
Network configuration settings for inbound message traffic.