ServiceNetworkConfiguration constructor

const ServiceNetworkConfiguration({
  1. Input<ServiceNetworkConfigurationEgressConfiguration?>? egressConfiguration,
  2. Input<ServiceNetworkConfigurationIngressConfiguration?>? ingressConfiguration,
  3. Input<String?>? ipAddressType,
})

Creates a new ServiceNetworkConfiguration. egressConfiguration Network configuration settings for outbound message traffic. See egressConfiguration below. ingressConfiguration Network configuration settings for inbound network traffic. See ingressConfiguration below. ipAddressType App Runner provides you with the option to choose between IP version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration. Valid values: IPV4, DUAL_STACK. Default: IPV4.

Implementation

const ServiceNetworkConfiguration({
  this.egressConfiguration,
  this.ingressConfiguration,
  this.ipAddressType,
});