Interface Ipv6Pool.Builder

    • Method Detail

      • poolId

        Ipv6Pool.Builder poolId​(String poolId)

        The ID of the address pool.

        Parameters:
        poolId - The ID of the address pool.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • description

        Ipv6Pool.Builder description​(String description)

        The description for the address pool.

        Parameters:
        description - The description for the address pool.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • poolCidrBlocks

        Ipv6Pool.Builder poolCidrBlocks​(Collection<PoolCidrBlock> poolCidrBlocks)

        The CIDR blocks for the address pool.

        Parameters:
        poolCidrBlocks - The CIDR blocks for the address pool.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • poolCidrBlocks

        Ipv6Pool.Builder poolCidrBlocks​(PoolCidrBlock... poolCidrBlocks)

        The CIDR blocks for the address pool.

        Parameters:
        poolCidrBlocks - The CIDR blocks for the address pool.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        Ipv6Pool.Builder tags​(Collection<Tag> tags)

        Any tags for the address pool.

        Parameters:
        tags - Any tags for the address pool.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        Ipv6Pool.Builder tags​(Tag... tags)

        Any tags for the address pool.

        Parameters:
        tags - Any tags for the address pool.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        Ipv6Pool.Builder tags​(Consumer<Tag.Builder>... tags)

        Any tags for the address pool.

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

        When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to #tags(List).

        Parameters:
        tags - a consumer that will call methods on Tag.Builder
        Returns:
        Returns a reference to this object so that method calls can be chained together.
        See Also:
        #tags(java.util.Collection)