aws-cdk-lib.aws_apprunner.CfnService.IngressConfigurationProperty

interface IngressConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.AppRunner.CfnService.IngressConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnService_IngressConfigurationProperty
Javasoftware.amazon.awscdk.services.apprunner.CfnService.IngressConfigurationProperty
Pythonaws_cdk.aws_apprunner.CfnService.IngressConfigurationProperty
TypeScript aws-cdk-lib » aws_apprunner » CfnService » IngressConfigurationProperty

Network configuration settings for inbound network traffic.

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 ingressConfigurationProperty: apprunner.CfnService.IngressConfigurationProperty = {
  isPubliclyAccessible: false,
};

Properties

NameTypeDescription
isPubliclyAccessibleboolean | IResolvableSpecifies whether your App Runner service is publicly accessible.

isPubliclyAccessible

Type: boolean | IResolvable

Specifies whether your App Runner service is publicly accessible.

To make the service publicly accessible set it to True . To make the service privately accessible, from only within an Amazon VPC set it to False .