Module Values.ConfigurationAggregatorSource

The details about the configuration aggregator, including information about source accounts, regions, and metadata of the aggregator.

Sourcetype nonrec t = {
  1. configurationAggregatorName : ConfigurationAggregatorName.t option;
    (*

    The name of the aggregator.

    *)
  2. configurationAggregatorArn : ConfigurationAggregatorArn.t option;
    (*

    The Amazon Resource Name (ARN) of the aggregator.

    *)
  3. accountAggregationSources : AccountAggregationSourceList.t option;
    (*

    Provides a list of source accounts and regions to be aggregated.

    *)
  4. organizationAggregationSource : OrganizationAggregationSource.t option;
    (*

    Provides an organization and list of regions to be aggregated.

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

    The time stamp when the configuration aggregator was created.

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

    The time of the last update.

    *)
  7. createdBy : StringWithCharLimit256.t option;
    (*

    Amazon Web Services service that created the configuration aggregator.

    *)
  8. aggregatorFilters : AggregatorFilters.t option;
    (*

    An object to filter the data you specify for an aggregator.

    *)
}
Sourceval make : ?configurationAggregatorName:??? -> ?configurationAggregatorArn:??? -> ?accountAggregationSources:??? -> ?organizationAggregationSource:??? -> ?creationTime:??? -> ?lastUpdatedTime:??? -> ?createdBy:??? -> ?aggregatorFilters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of AccountId.t ] list ]) list ] list | `String of ConfigurationAggregatorName.t | `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string | `List of [> `String of ResourceTypeValue.t ] list ]) 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