Module Values.GetAudienceModelResponseSource

Returns information about an audience model

Sourcetype nonrec t = {
  1. createTime : SyntheticTimestamp_date_time.t option;
    (*

    The time at which the audience model was created.

    *)
  2. updateTime : SyntheticTimestamp_date_time.t option;
    (*

    The most recent time at which the audience model was updated.

    *)
  3. trainingDataStartTime : SyntheticTimestamp_date_time.t option;
    (*

    The start date specified for the training window.

    *)
  4. trainingDataEndTime : SyntheticTimestamp_date_time.t option;
    (*

    The end date specified for the training window.

    *)
  5. audienceModelArn : AudienceModelArn.t option;
    (*

    The Amazon Resource Name (ARN) of the audience model.

    *)
  6. name : NameString.t option;
    (*

    The name of the audience model.

    *)
  7. trainingDatasetArn : TrainingDatasetArn.t option;
    (*

    The Amazon Resource Name (ARN) of the training dataset that was used for this audience model.

    *)
  8. status : AudienceModelStatus.t option;
    (*

    The status of the audience model.

    *)
  9. statusDetails : StatusDetails.t option;
    (*

    Details about the status of the audience model.

    *)
  10. kmsKeyArn : KmsKeyArn.t option;
    (*

    The KMS key ARN used for the audience model.

    *)
  11. tags : TagMap.t option;
    (*

    The tags that are assigned to the audience model.

    *)
  12. description : ResourceDescription.t option;
    (*

    The description of the audience model.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ValidationException of ValidationException.t
  4. | `Unknown_operation_error of string * string option
]
Sourceval make : ?createTime:??? -> ?updateTime:??? -> ?trainingDataStartTime:??? -> ?trainingDataEndTime:??? -> ?audienceModelArn:??? -> ?name:??? -> ?trainingDatasetArn:??? -> ?status:??? -> ?statusDetails:??? -> ?kmsKeyArn:??? -> ?tags:??? -> ?description:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of AudienceModelArn.t | `Structure of (string * [> `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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