interface EgressConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppRunner.Mixins.CfnServicePropsMixin.EgressConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapprunner/mixins#CfnServicePropsMixin_EgressConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.apprunner.mixins.CfnServicePropsMixin.EgressConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_apprunner.mixins.CfnServicePropsMixin.EgressConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_apprunner » mixins » 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 { mixins as apprunner_mixins } from '@aws-cdk/mixins-preview/aws-apprunner';
const egressConfigurationProperty: apprunner_mixins.CfnServicePropsMixin.EgressConfigurationProperty = {
egressType: 'egressType',
vpcConnectorArn: 'vpcConnectorArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| egress | string | The type of egress configuration. |
| vpc | string | 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
(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