[][src]Struct rusoto_personalize::CreateCampaignRequest

pub struct CreateCampaignRequest {
    pub campaign_config: Option<CampaignConfig>,
    pub min_provisioned_tps: i64,
    pub name: String,
    pub solution_version_arn: String,
}

Fields

campaign_config: Option<CampaignConfig>

The configuration details of a campaign.

min_provisioned_tps: i64

Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support.

name: String

A name for the new campaign. The campaign name must be unique within your account.

solution_version_arn: String

The Amazon Resource Name (ARN) of the solution version to deploy.

Trait Implementations

impl Clone for CreateCampaignRequest[src]

impl Debug for CreateCampaignRequest[src]

impl Default for CreateCampaignRequest[src]

impl PartialEq<CreateCampaignRequest> for CreateCampaignRequest[src]

impl Serialize for CreateCampaignRequest[src]

impl StructuralPartialEq for CreateCampaignRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.