Module Values.AggregationAuthorizationSource

An object that represents the authorizations granted to aggregator accounts and regions.

Sourcetype nonrec t = {
  1. aggregationAuthorizationArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the aggregation object.

    *)
  2. authorizedAccountId : AccountId.t option;
    (*

    The 12-digit account ID of the account authorized to aggregate data.

    *)
  3. authorizedAwsRegion : AwsRegion.t option;
    (*

    The region authorized to collect aggregated data.

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

    The time stamp when the aggregation authorization was created.

    *)
}
Sourceval make : ?aggregationAuthorizationArn:??? -> ?authorizedAccountId:??? -> ?authorizedAwsRegion:??? -> ?creationTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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