Interface NetworkConfiguration.Builder

All Superinterfaces:
Buildable, CopyableBuilder<NetworkConfiguration.Builder,NetworkConfiguration>, SdkBuilder<NetworkConfiguration.Builder,NetworkConfiguration>, SdkPojo
Enclosing class:
NetworkConfiguration

public static interface NetworkConfiguration.Builder extends SdkPojo, CopyableBuilder<NetworkConfiguration.Builder,NetworkConfiguration>
  • Method Details

    • egressConfiguration

      NetworkConfiguration.Builder egressConfiguration(EgressConfiguration egressConfiguration)

      Network configuration settings for outbound message traffic.

      Parameters:
      egressConfiguration - Network configuration settings for outbound message traffic.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • egressConfiguration

      default NetworkConfiguration.Builder egressConfiguration(Consumer<EgressConfiguration.Builder> egressConfiguration)

      Network configuration settings for outbound message traffic.

      This is a convenience method that creates an instance of the EgressConfiguration.Builder avoiding the need to create one manually via EgressConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to egressConfiguration(EgressConfiguration).

      Parameters:
      egressConfiguration - a consumer that will call methods on EgressConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • ingressConfiguration

      NetworkConfiguration.Builder ingressConfiguration(IngressConfiguration ingressConfiguration)

      Network configuration settings for inbound message traffic.

      Parameters:
      ingressConfiguration - Network configuration settings for inbound message traffic.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • ingressConfiguration

      default NetworkConfiguration.Builder ingressConfiguration(Consumer<IngressConfiguration.Builder> ingressConfiguration)

      Network configuration settings for inbound message traffic.

      This is a convenience method that creates an instance of the IngressConfiguration.Builder avoiding the need to create one manually via IngressConfiguration.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to ingressConfiguration(IngressConfiguration).

      Parameters:
      ingressConfiguration - a consumer that will call methods on IngressConfiguration.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • ipAddressType

      NetworkConfiguration.Builder ipAddressType(String ipAddressType)

      App Runner provides you with the option to choose between Internet Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an IpAddressType, it defaults to select IPv4.

      Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint.

      Parameters:
      ipAddressType - App Runner provides you with the option to choose between Internet Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an IpAddressType, it defaults to select IPv4.

      Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • ipAddressType

      NetworkConfiguration.Builder ipAddressType(IpAddressType ipAddressType)

      App Runner provides you with the option to choose between Internet Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an IpAddressType, it defaults to select IPv4.

      Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint.

      Parameters:
      ipAddressType - App Runner provides you with the option to choose between Internet Protocol version 4 (IPv4) and dual stack (IPv4 and IPv6) for your incoming public network configuration. This is an optional parameter. If you do not specify an IpAddressType, it defaults to select IPv4.

      Currently, App Runner supports dual stack for only Public endpoint. Only IPv4 is supported for Private endpoint. If you update a service that's using dual-stack Public endpoint to a Private endpoint, your App Runner service will default to support only IPv4 for Private endpoint and fail to receive traffic originating from IPv6 endpoint.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also: