interface IngressConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.AppRunner.CfnService.IngressConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapprunner#CfnService_IngressConfigurationProperty |
Java | software.amazon.awscdk.services.apprunner.CfnService.IngressConfigurationProperty |
Python | aws_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
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Specifies 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 .

.NET
Go
Java
Python
TypeScript