aws-cdk-lib.aws_apprunner.CfnService.NetworkConfigurationProperty

interface NetworkConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.AppRunner.CfnService.NetworkConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnService_NetworkConfigurationProperty
Javasoftware.amazon.awscdk.services.apprunner.CfnService.NetworkConfigurationProperty
Pythonaws_cdk.aws_apprunner.CfnService.NetworkConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_apprunner as apprunner } from 'aws-cdk-lib';
const networkConfigurationProperty: apprunner.CfnService.NetworkConfigurationProperty = {
  egressConfiguration: {
    egressType: 'egressType',

    // the properties below are optional
    vpcConnectorArn: 'vpcConnectorArn',
  },
  ingressConfiguration: {
    isPubliclyAccessible: false,
  },
};

Properties

NameTypeDescription
egressConfiguration?IResolvable | EgressConfigurationPropertyNetwork configuration settings for outbound message traffic.
ingressConfiguration?IResolvable | IngressConfigurationPropertyNetwork configuration settings for inbound message traffic.

egressConfiguration?

Type: IResolvable | EgressConfigurationProperty (optional)

Network configuration settings for outbound message traffic.


ingressConfiguration?

Type: IResolvable | IngressConfigurationProperty (optional)

Network configuration settings for inbound message traffic.