Interface DhcpOptions.Builder

    • Method Detail

      • dhcpConfigurations

        DhcpOptions.Builder dhcpConfigurations​(Collection<DhcpConfiguration> dhcpConfigurations)

        The DHCP options in the set.

        Parameters:
        dhcpConfigurations - The DHCP options in the set.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • dhcpConfigurations

        DhcpOptions.Builder dhcpConfigurations​(DhcpConfiguration... dhcpConfigurations)

        The DHCP options in the set.

        Parameters:
        dhcpConfigurations - The DHCP options in the set.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • dhcpOptionsId

        DhcpOptions.Builder dhcpOptionsId​(String dhcpOptionsId)

        The ID of the set of DHCP options.

        Parameters:
        dhcpOptionsId - The ID of the set of DHCP options.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • ownerId

        DhcpOptions.Builder ownerId​(String ownerId)

        The ID of the Amazon Web Services account that owns the DHCP options set.

        Parameters:
        ownerId - The ID of the Amazon Web Services account that owns the DHCP options set.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        Any tags assigned to the DHCP options set.

        Parameters:
        tags - Any tags assigned to the DHCP options set.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

        DhcpOptions.Builder tags​(Tag... tags)

        Any tags assigned to the DHCP options set.

        Parameters:
        tags - Any tags assigned to the DHCP options set.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • tags

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

        Any tags assigned to the DHCP options set.

        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)