interface EgressConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppRunner.CfnServicePropsMixin.EgressConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsapprunner#CfnServicePropsMixin_EgressConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.apprunner.CfnServicePropsMixin.EgressConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_apprunner.CfnServicePropsMixin.EgressConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_apprunner » CfnServicePropsMixin » EgressConfigurationProperty |
Describes configuration settings related to outbound network traffic of an AWS App Runner service.
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/cfn-property-mixins';
const egressConfigurationProperty: apprunner.CfnServicePropsMixin.EgressConfigurationProperty = {
egressType: 'egressType',
vpcConnectorArn: 'vpcConnectorArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | string | The type of egress configuration. |
| vpc | string | IVpc | The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service. |
egressType?
Type:
string
(optional)
The type of egress configuration.
Set to DEFAULT for access to resources hosted on public networks.
Set to VPC to associate your service to a custom VPC specified by VpcConnectorArn .
vpcConnectorArn?
Type:
string | IVpc
(optional)
The Amazon Resource Name (ARN) of the App Runner VPC connector that you want to associate with your App Runner service.
Only valid when EgressType = VPC .

.NET
Go
Java
Python
TypeScript