Interface AwsOpportunityCustomer.Builder

    • Method Detail

      • contacts

        AwsOpportunityCustomer.Builder contacts​(Collection<Contact> contacts)

        Provides a list of customer contacts involved in the opportunity. These contacts may include decision makers, influencers, and other stakeholders within the customer's organization.

        Parameters:
        contacts - Provides a list of customer contacts involved in the opportunity. These contacts may include decision makers, influencers, and other stakeholders within the customer's organization.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • contacts

        AwsOpportunityCustomer.Builder contacts​(Contact... contacts)

        Provides a list of customer contacts involved in the opportunity. These contacts may include decision makers, influencers, and other stakeholders within the customer's organization.

        Parameters:
        contacts - Provides a list of customer contacts involved in the opportunity. These contacts may include decision makers, influencers, and other stakeholders within the customer's organization.
        Returns:
        Returns a reference to this object so that method calls can be chained together.
      • contacts

        AwsOpportunityCustomer.Builder contacts​(Consumer<Contact.Builder>... contacts)

        Provides a list of customer contacts involved in the opportunity. These contacts may include decision makers, influencers, and other stakeholders within the customer's organization.

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

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

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