Module Values.CampaignUpdateSummarySource

Provides a summary of the properties of a campaign update. For a complete listing, call the DescribeCampaign API.

Sourcetype nonrec t = {
  1. solutionVersionArn : Arn.t option;
    (*

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

    *)
  2. minProvisionedTPS : TransactionsPerSecond.t option;
    (*

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

    *)
  3. campaignConfig : CampaignConfig.t option;
  4. status : Status.t option;
    (*

    The status of the campaign update. A campaign update can be in one of the following states: CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED DELETE PENDING > DELETE IN_PROGRESS

    *)
  5. failureReason : FailureReason.t option;
    (*

    If a campaign update fails, the reason behind the failure.

    *)
  6. creationDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the campaign update was created.

    *)
  7. lastUpdatedDateTime : Date.t option;
    (*

    The date and time (in Unix time) that the campaign update was last updated.

    *)
}
Sourceval make : ?solutionVersionArn:??? -> ?minProvisionedTPS:??? -> ?campaignConfig:??? -> ?status:??? -> ?failureReason:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of TransactionsPerSecond.t | `String of Arn.t | `Structure of (string * [> `Boolean of Boolean.t | `Map of ([> `Enum of string | `String of ParameterName.t ] * [> `Double of RankingInfluenceWeight.t | `String of ParameterValue.t ]) list ]) list | `Timestamp of Date.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t