Module Values.AggregateResourceIdentifierSource

The details that identify a resource that is collected by Config aggregator, including the resource type, ID, (if available) the custom resource name, the source account, and source region.

Sourcetype nonrec t = {
  1. sourceAccountId : AccountId.t;
    (*

    The 12-digit account ID of the source account.

    *)
  2. sourceRegion : AwsRegion.t;
    (*

    The source region where data is aggregated.

    *)
  3. resourceId : ResourceId.t;
    (*

    The ID of the Amazon Web Services resource.

    *)
  4. resourceType : ResourceType.t;
    (*

    The type of the Amazon Web Services resource.

    *)
  5. resourceName : ResourceName.t option;
    (*

    The name of the Amazon Web Services resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?resourceName:??? -> sourceAccountId:AccountId.t -> sourceRegion:AwsRegion.t -> resourceId:ResourceId.t -> resourceType:ResourceType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccountId.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