Module Values_5.GetCapacityManagerAttributesResultSource

Retrieves the current configuration and status of EC2 Capacity Manager for your account, including enablement status, Organizations access settings, and data ingestion status.

Sourcetype nonrec t = {
  1. capacityManagerStatus : Values_3.CapacityManagerStatus.t option;
    (*

    The current status of Capacity Manager.

    *)
  2. organizationsAccess : Values_0.Boolean.t option;
    (*

    Indicates whether Organizations access is enabled for cross-account data aggregation.

    *)
  3. dataExportCount : Values_0.Integer.t option;
    (*

    The number of active data export configurations for this account. This count includes all data exports regardless of their current delivery status.

    *)
  4. ingestionStatus : Values_3.IngestionStatus.t option;
    (*

    The current data ingestion status. Initial ingestion may take several hours after enabling Capacity Manager.

    *)
  5. ingestionStatusMessage : Values_0.String_.t option;
    (*

    A descriptive message providing additional details about the current ingestion status. This may include error information if ingestion has failed or progress details during initial setup.

    *)
  6. earliestDatapointTimestamp : Values_0.MillisecondDateTime.t option;
    (*

    The timestamp of the earliest data point available in Capacity Manager, in milliseconds since epoch. This indicates how far back historical data is available for queries.

    *)
  7. latestDatapointTimestamp : Values_0.MillisecondDateTime.t option;
    (*

    The timestamp of the most recent data point ingested by Capacity Manager, in milliseconds since epoch. This indicates how current your capacity data is.

    *)
}
Sourcetype nonrec error = [
  1. | `Unknown_operation_error of string * string option
]
Sourceval make : ?capacityManagerStatus:??? -> ?organizationsAccess:??? -> ?dataExportCount:??? -> ?ingestionStatus:??? -> ?ingestionStatusMessage:??? -> ?earliestDatapointTimestamp:??? -> ?latestDatapointTimestamp:??? -> unit -> t
Sourceval error_of_json : 'a -> Yojson.Safe.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_of_xml : 'a -> Awso.Xml.t -> [> `Unknown_operation_error of 'a * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Enum of string | `Integer of Values_0.Integer.t | `String of Values_0.String_.t | `Timestamp of Values_0.MillisecondDateTime.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