Module Values.CreateApplicationRequestSource

Adds an application that is created from a resource group.

Sourcetype nonrec t = {
  1. resourceGroupName : ResourceGroupName.t option;
    (*

    The name of the resource group.

    *)
  2. opsCenterEnabled : OpsCenterEnabled.t option;
    (*

    When set to true, creates opsItems for any problems detected on an application.

    *)
  3. cWEMonitorEnabled : CWEMonitorEnabled.t option;
    (*

    Indicates whether Application Insights can listen to CloudWatch events for the application resources, such as instance terminated, failed deployment, and others.

    *)
  4. opsItemSNSTopicArn : OpsItemSNSTopicArn.t option;
    (*

    The SNS topic provided to Application Insights that is associated to the created opsItem. Allows you to receive notifications for updates to the opsItem.

    *)
  5. sNSNotificationArn : SNSNotificationArn.t option;
    (*

    The SNS notification topic ARN.

    *)
  6. tags : TagList.t option;
    (*

    List of tags to add to the application. tag key (Key) and an associated tag value (Value). The maximum length of a tag key is 128 characters. The maximum length of a tag value is 256 characters.

    *)
  7. autoConfigEnabled : AutoConfigEnabled.t option;
    (*

    Indicates whether Application Insights automatically configures unmonitored resources in the resource group.

    *)
  8. autoCreate : AutoCreate.t option;
    (*

    Configures all of the resources in the resource group by applying the recommended configurations.

    *)
  9. groupingType : GroupingType.t option;
    (*

    Application Insights can create applications based on a resource group or on an account. To create an account-based application using all of the resources in the account, set this parameter to ACCOUNT_BASED.

    *)
  10. attachMissingPermission : AttachMissingPermission.t option;
    (*

    If set to true, the managed policies for SSM and CW will be attached to the instance roles if they are missing.

    *)
}
Sourceval make : ?resourceGroupName:??? -> ?opsCenterEnabled:??? -> ?cWEMonitorEnabled:??? -> ?opsItemSNSTopicArn:??? -> ?sNSNotificationArn:??? -> ?tags:??? -> ?autoConfigEnabled:??? -> ?autoCreate:??? -> ?groupingType:??? -> ?attachMissingPermission:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of OpsCenterEnabled.t | `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of ResourceGroupName.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