Interface AssignOpportunityRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AssignOpportunityRequest.Builder,AssignOpportunityRequest>,PartnerCentralSellingRequest.Builder,SdkBuilder<AssignOpportunityRequest.Builder,AssignOpportunityRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AssignOpportunityRequest
public static interface AssignOpportunityRequest.Builder extends PartnerCentralSellingRequest.Builder, SdkPojo, CopyableBuilder<AssignOpportunityRequest.Builder,AssignOpportunityRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default AssignOpportunityRequest.Builderassignee(Consumer<AssigneeContact.Builder> assignee)Specifies the user or team member responsible for managing the assigned opportunity.AssignOpportunityRequest.Builderassignee(AssigneeContact assignee)Specifies the user or team member responsible for managing the assigned opportunity.AssignOpportunityRequest.Buildercatalog(String catalog)Specifies the catalog associated with the request.AssignOpportunityRequest.Builderidentifier(String identifier)Requires theOpportunity's unique identifier when you want to assign it to another user.AssignOpportunityRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AssignOpportunityRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.partnercentralselling.model.PartnerCentralSellingRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
assignee
AssignOpportunityRequest.Builder assignee(AssigneeContact assignee)
Specifies the user or team member responsible for managing the assigned opportunity. This field identifies the Assignee based on the partner's internal team structure. Ensure that the email address is associated with a registered user in your Partner Central account.
- Parameters:
assignee- Specifies the user or team member responsible for managing the assigned opportunity. This field identifies the Assignee based on the partner's internal team structure. Ensure that the email address is associated with a registered user in your Partner Central account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
assignee
default AssignOpportunityRequest.Builder assignee(Consumer<AssigneeContact.Builder> assignee)
Specifies the user or team member responsible for managing the assigned opportunity. This field identifies the Assignee based on the partner's internal team structure. Ensure that the email address is associated with a registered user in your Partner Central account.
This is a convenience method that creates an instance of theAssigneeContact.Builderavoiding the need to create one manually viaAssigneeContact.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toassignee(AssigneeContact).- Parameters:
assignee- a consumer that will call methods onAssigneeContact.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
assignee(AssigneeContact)
-
catalog
AssignOpportunityRequest.Builder catalog(String catalog)
Specifies the catalog associated with the request. This field takes a string value from a predefined list:
AWSorSandbox. The catalog determines which environment the opportunity is assigned in. UseAWSto assign real opportunities in the Amazon Web Services catalog, andSandboxfor testing in secure, isolated environments.- Parameters:
catalog- Specifies the catalog associated with the request. This field takes a string value from a predefined list:AWSorSandbox. The catalog determines which environment the opportunity is assigned in. UseAWSto assign real opportunities in the Amazon Web Services catalog, andSandboxfor testing in secure, isolated environments.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
identifier
AssignOpportunityRequest.Builder identifier(String identifier)
Requires the
Opportunity's unique identifier when you want to assign it to another user. Provide the correct identifier so the intended opportunity is reassigned.- Parameters:
identifier- Requires theOpportunity's unique identifier when you want to assign it to another user. Provide the correct identifier so the intended opportunity is reassigned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
AssignOpportunityRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AssignOpportunityRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-