enum IpAddressType
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.AppRunner.Alpha.IpAddressType |
Go | github.com/aws/aws-cdk-go/awscdkapprunneralpha/v2#IpAddressType |
Java | software.amazon.awscdk.services.apprunner.alpha.IpAddressType |
Python | aws_cdk.aws_apprunner_alpha.IpAddressType |
TypeScript (source) | @aws-cdk/aws-apprunner-alpha » IpAddressType |
The IP address type for your incoming public network configuration.
Example
new apprunner.Service(this, 'Service', {
source: apprunner.Source.fromEcrPublic({
imageConfiguration: { port: 8000 },
imageIdentifier: 'public.ecr.aws/aws-containers/hello-app-runner:latest',
}),
ipAddressType: apprunner.IpAddressType.DUAL_STACK,
});
Members
Name | Description |
---|---|
IPV4 | IPV4. |
DUAL_STACK | DUAL_STACK. |
IPV4
IPV4.
DUAL_STACK
DUAL_STACK.