Module Values_0.DeleteAssociationRequestSource

Disassociates the specified Amazon Web Services Systems Manager document (SSM document) from the specified managed node. If you created the association by using the Targets parameter, then you must delete the association by using the association ID. When you disassociate a document from a managed node, it doesn't change the configuration of the node. To change the configuration state of a managed node after you disassociate a document, you must create a new document with the desired configuration and associate it with the node.

Sourcetype nonrec t = {
  1. name : DocumentARN.t option;
    (*

    The name of the SSM document.

    *)
  2. instanceId : InstanceId.t option;
    (*

    The managed node ID. InstanceId has been deprecated. To specify a managed node ID for an association, use the Targets parameter. Requests that include the parameter InstanceID with Systems Manager documents (SSM documents) that use schema version 2.0 or later will fail. In addition, if you use the parameter InstanceId, you can't use the parameters AssociationName, DocumentVersion, MaxErrors, MaxConcurrency, OutputLocation, or ScheduleExpression. To use these parameters, you must use the Targets parameter.

    *)
  3. associationId : AssociationId.t option;
    (*

    The association ID that you want to delete.

    *)
}
Sourceval make : ?name:??? -> ?instanceId:??? -> ?associationId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DocumentARN.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