#[non_exhaustive]pub struct UpdateCampaignInput {
pub campaign_arn: Option<String>,
pub solution_version_arn: Option<String>,
pub min_provisioned_tps: Option<i32>,
pub campaign_config: Option<CampaignConfig>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.campaign_arn: Option<String>
The Amazon Resource Name (ARN) of the campaign.
solution_version_arn: Option<String>
The ARN of a new solution version to deploy.
min_provisioned_tps: Option<i32>
Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support. A high minProvisionedTPS
will increase your bill. We recommend starting with 1 for minProvisionedTPS
(the default). Track your usage using Amazon CloudWatch metrics, and increase the minProvisionedTPS
as necessary.
campaign_config: Option<CampaignConfig>
The configuration details of a campaign.
Implementations§
source§impl UpdateCampaignInput
impl UpdateCampaignInput
sourcepub fn campaign_arn(&self) -> Option<&str>
pub fn campaign_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the campaign.
sourcepub fn solution_version_arn(&self) -> Option<&str>
pub fn solution_version_arn(&self) -> Option<&str>
The ARN of a new solution version to deploy.
sourcepub fn min_provisioned_tps(&self) -> Option<i32>
pub fn min_provisioned_tps(&self) -> Option<i32>
Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support. A high minProvisionedTPS
will increase your bill. We recommend starting with 1 for minProvisionedTPS
(the default). Track your usage using Amazon CloudWatch metrics, and increase the minProvisionedTPS
as necessary.
sourcepub fn campaign_config(&self) -> Option<&CampaignConfig>
pub fn campaign_config(&self) -> Option<&CampaignConfig>
The configuration details of a campaign.
source§impl UpdateCampaignInput
impl UpdateCampaignInput
sourcepub fn builder() -> UpdateCampaignInputBuilder
pub fn builder() -> UpdateCampaignInputBuilder
Creates a new builder-style object to manufacture UpdateCampaignInput
.
Trait Implementations§
source§impl Clone for UpdateCampaignInput
impl Clone for UpdateCampaignInput
source§fn clone(&self) -> UpdateCampaignInput
fn clone(&self) -> UpdateCampaignInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for UpdateCampaignInput
impl Debug for UpdateCampaignInput
source§impl PartialEq for UpdateCampaignInput
impl PartialEq for UpdateCampaignInput
source§fn eq(&self, other: &UpdateCampaignInput) -> bool
fn eq(&self, other: &UpdateCampaignInput) -> bool
self
and other
values to be equal, and is used
by ==
.