Interface UpdateCampaignRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<UpdateCampaignRequest.Builder,UpdateCampaignRequest>,PersonalizeRequest.Builder,SdkBuilder<UpdateCampaignRequest.Builder,UpdateCampaignRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- UpdateCampaignRequest
public static interface UpdateCampaignRequest.Builder extends PersonalizeRequest.Builder, SdkPojo, CopyableBuilder<UpdateCampaignRequest.Builder,UpdateCampaignRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description UpdateCampaignRequest.BuildercampaignArn(String campaignArn)The Amazon Resource Name (ARN) of the campaign.default UpdateCampaignRequest.BuildercampaignConfig(Consumer<CampaignConfig.Builder> campaignConfig)The configuration details of a campaign.UpdateCampaignRequest.BuildercampaignConfig(CampaignConfig campaignConfig)The configuration details of a campaign.UpdateCampaignRequest.BuilderminProvisionedTPS(Integer minProvisionedTPS)Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support.UpdateCampaignRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)UpdateCampaignRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)UpdateCampaignRequest.BuildersolutionVersionArn(String solutionVersionArn)The Amazon Resource Name (ARN) of a new model to deploy.-
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.personalize.model.PersonalizeRequest.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
-
campaignArn
UpdateCampaignRequest.Builder campaignArn(String campaignArn)
The Amazon Resource Name (ARN) of the campaign.
- Parameters:
campaignArn- The Amazon Resource Name (ARN) of the campaign.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
solutionVersionArn
UpdateCampaignRequest.Builder solutionVersionArn(String solutionVersionArn)
The Amazon Resource Name (ARN) of a new model to deploy. To specify the latest solution version of your solution, specify the ARN of your solution in
SolutionArn/$LATESTformat. You must use this format if you setsyncWithLatestSolutionVersiontoTruein the CampaignConfig.To deploy a model that isn't the latest solution version of your solution, specify the ARN of the solution version.
For more information about automatic campaign updates, see Enabling automatic campaign updates.
- Parameters:
solutionVersionArn- The Amazon Resource Name (ARN) of a new model to deploy. To specify the latest solution version of your solution, specify the ARN of your solution inSolutionArn/$LATESTformat. You must use this format if you setsyncWithLatestSolutionVersiontoTruein the CampaignConfig.To deploy a model that isn't the latest solution version of your solution, specify the ARN of the solution version.
For more information about automatic campaign updates, see Enabling automatic campaign updates.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
minProvisionedTPS
UpdateCampaignRequest.Builder minProvisionedTPS(Integer minProvisionedTPS)
Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support. A high
minProvisionedTPSwill increase your bill. We recommend starting with 1 forminProvisionedTPS(the default). Track your usage using Amazon CloudWatch metrics, and increase theminProvisionedTPSas necessary.- Parameters:
minProvisionedTPS- Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support. A highminProvisionedTPSwill increase your bill. We recommend starting with 1 forminProvisionedTPS(the default). Track your usage using Amazon CloudWatch metrics, and increase theminProvisionedTPSas necessary.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
campaignConfig
UpdateCampaignRequest.Builder campaignConfig(CampaignConfig campaignConfig)
The configuration details of a campaign.
- Parameters:
campaignConfig- The configuration details of a campaign.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
campaignConfig
default UpdateCampaignRequest.Builder campaignConfig(Consumer<CampaignConfig.Builder> campaignConfig)
The configuration details of a campaign.
This is a convenience method that creates an instance of theCampaignConfig.Builderavoiding the need to create one manually viaCampaignConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocampaignConfig(CampaignConfig).- Parameters:
campaignConfig- a consumer that will call methods onCampaignConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
campaignConfig(CampaignConfig)
-
overrideConfiguration
UpdateCampaignRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateCampaignRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-