IpAddressType

class aws_cdk.aws_apprunner_alpha.IpAddressType(value, names=None, *, module=None, qualname=None, type=None, start=1, boundary=None)

Bases: Enum

(experimental) The IP address type for your incoming public network configuration.

Stability:

experimental

ExampleMetadata:

infused

Example:

apprunner.Service(self, "Service",
    source=apprunner.Source.from_ecr_public(
        image_configuration=apprunner.ImageConfiguration(port=8000),
        image_identifier="public.ecr.aws/aws-containers/hello-app-runner:latest"
    ),
    ip_address_type=apprunner.IpAddressType.DUAL_STACK
)

Attributes

DUAL_STACK

(experimental) DUAL_STACK.

Stability:

experimental

IPV4

(experimental) IPV4.

Stability:

experimental