#[non_exhaustive]pub struct CreateCampaignInput {
pub name: Option<String>,
pub solution_version_arn: Option<String>,
pub min_provisioned_tps: Option<i32>,
pub campaign_config: Option<CampaignConfig>,
pub tags: Option<Vec<Tag>>,
}
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.name: Option<String>
A name for the new campaign. The campaign name must be unique within your account.
solution_version_arn: Option<String>
The Amazon Resource Name (ARN) of the 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.
A list of tags to apply to the campaign.
Implementations§
source§impl CreateCampaignInput
impl CreateCampaignInput
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
A name for the new campaign. The campaign name must be unique within your account.
sourcepub fn solution_version_arn(&self) -> Option<&str>
pub fn solution_version_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the 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.
A list of tags to apply to the campaign.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl CreateCampaignInput
impl CreateCampaignInput
sourcepub fn builder() -> CreateCampaignInputBuilder
pub fn builder() -> CreateCampaignInputBuilder
Creates a new builder-style object to manufacture CreateCampaignInput
.
Trait Implementations§
source§impl Clone for CreateCampaignInput
impl Clone for CreateCampaignInput
source§fn clone(&self) -> CreateCampaignInput
fn clone(&self) -> CreateCampaignInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateCampaignInput
impl Debug for CreateCampaignInput
source§impl PartialEq for CreateCampaignInput
impl PartialEq for CreateCampaignInput
source§fn eq(&self, other: &CreateCampaignInput) -> bool
fn eq(&self, other: &CreateCampaignInput) -> bool
self
and other
values to be equal, and is used
by ==
.