Module Values.CampaignSummarySource

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

Sourcetype nonrec t = {
  1. name : Name.t option;
    (*

    The name of the campaign.

    *)
  2. campaignArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the campaign.

    *)
  3. status : Status.t option;
    (*

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

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

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

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

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

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

    If a campaign fails, the reason behind the failure.

    *)
}
Sourceval make : ?name:??? -> ?campaignArn:??? -> ?status:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Name.t | `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