Module Values.UpdateCalculatedAttributeDefinitionResponseSource

Updates an existing calculated attribute definition. When updating the Conditions, note that increasing the date range of a calculated attribute will not trigger inclusion of historical data greater than the current date range.

Sourcetype nonrec t = {
  1. calculatedAttributeName : TypeName.t option;
    (*

    The unique name of the calculated attribute.

    *)
  2. displayName : DisplayName.t option;
    (*

    The display name of the calculated attribute.

    *)
  3. description : SensitiveText.t option;
    (*

    The description of the calculated attribute.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The timestamp of when the calculated attribute definition was created.

    *)
  5. lastUpdatedAt : Timestamp.t option;
    (*

    The timestamp of when the calculated attribute definition was most recently edited.

    *)
  6. statistic : Statistic.t option;
    (*

    The aggregation operation to perform for the calculated attribute.

    *)
  7. conditions : Conditions.t option;
    (*

    The conditions including range, object count, and threshold for the calculated attribute.

    *)
  8. attributeDetails : AttributeDetails.t option;
    (*

    The mathematical expression and a list of attribute items specified in that expression.

    *)
  9. useHistoricalData : OptionalBoolean.t option;
    (*

    Whether historical data ingested before the Calculated Attribute was created should be included in calculations.

    *)
  10. status : ReadinessStatus.t option;
    (*

    Status of the Calculated Attribute creation (whether all historical data has been indexed.)

    *)
  11. readiness : Readiness.t option;
    (*

    Information indicating if the Calculated Attribute is ready for use by confirming all historical data has been processed and reflected.

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

    The tags used to organize, track, or control access for this resource.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?calculatedAttributeName:??? -> ?displayName:??? -> ?description:??? -> ?createdAt:??? -> ?lastUpdatedAt:??? -> ?statistic:??? -> ?conditions:??? -> ?attributeDetails:??? -> ?useHistoricalData:??? -> ?status:??? -> ?readiness:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OptionalBoolean.t | `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of TypeName.t | `Structure of (string * [> `Integer of ObjectCount.t | `List of [> `Structure of (string * [> `String of AttributeName.t ]) list ] list | `String of String1To255.t | `Structure of (string * [> `Enum of string | `Integer of Value.t | `String of String1To255.t | `Structure of (string * [> `Integer of ValueRangeStart.t ]) list ]) list ]) list | `Timestamp of Timestamp.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