interface IngressConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnServicePropsMixin.IngressConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnServicePropsMixin_IngressConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnServicePropsMixin.IngressConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnServicePropsMixin.IngressConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » CfnServicePropsMixin » 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 { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const ingressConfigurationProperty: apprunner_mixins.CfnServicePropsMixin.IngressConfigurationProperty = {
isPubliclyAccessible: false,
};
Properties
| Name | Type | Description |
|---|---|---|
| is | boolean | IResolvable | Specifies whether your App Runner service is publicly accessible. |
isPubliclyAccessible?
Type:
boolean | IResolvable
(optional)
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