Module Values.CreateLinkInputSource

Creates a link between a source account and a sink that you have created in a monitoring account. After the link is created, data is sent from the source account to the monitoring account. When you create a link, you can optionally specify filters that specify which metric namespaces and which log groups are shared from the source account to the monitoring account. Before you create a link, you must create a sink in the monitoring account and create a sink policy in that account. The sink policy must permit the source account to link to it. You can grant permission to source accounts by granting permission to an entire organization or to individual accounts. For more information, see CreateSink and PutSinkPolicy. Each monitoring account can be linked to as many as 100,000 source accounts. Each source account can be linked to as many as five monitoring accounts.

Sourcetype nonrec t = {
  1. labelTemplate : LabelTemplate.t;
    (*

    Specify a friendly human-readable name to use to identify this source account when you are viewing data from it in the monitoring account. You can use a custom label or use the following variables: $AccountName is the name of the account $AccountEmail is the globally unique email address of the account $AccountEmailNoDomain is the email address of the account without the domain name In the Amazon Web Services GovCloud (US-East) and Amazon Web Services GovCloud (US-West) Regions, the only supported option is to use custom labels, and the $AccountName, $AccountEmail, and $AccountEmailNoDomain variables all resolve as account-id instead of the specified variable.

    *)
  2. linkConfiguration : LinkConfiguration.t option;
    (*

    Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.

    *)
  3. resourceTypes : ResourceTypesInput.t;
    (*

    An array of strings that define which types of data that the source account shares with the monitoring account.

    *)
  4. sinkIdentifier : ResourceIdentifier.t;
    (*

    The ARN of the sink to use to create this link. You can use ListSinks to find the ARNs of sinks. For more information about sinks, see CreateSink.

    *)
  5. tags : TagMapInput.t option;
    (*

    Assigns one or more tags (key-value pairs) to the link. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. For more information about using tags to control access, see Controlling access to Amazon Web Services resources using tags.

    *)
}
Sourceval context_ : string
Sourceval make : ?linkConfiguration:??? -> ?tags:??? -> labelTemplate:LabelTemplate.t -> resourceTypes:ResourceTypesInput.t -> sinkIdentifier:ResourceIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string ] list | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of LabelTemplate.t | `Structure of (string * [> `Structure of (string * [> `String of LogsFilter.t ]) list ]) list ]) 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