Module Values_0.DescribeAssociationExecutionTargetsRequestSource

Views information about a specific execution of a specific association.

Sourcetype nonrec t = {
  1. associationId : AssociationId.t;
    (*

    The association ID that includes the execution for which you want to view details.

    *)
  2. executionId : AssociationExecutionId.t;
    (*

    The execution ID for which you want to view details.

    *)
  3. filters : AssociationExecutionTargetsFilterList.t option;
    (*

    Filters for the request. You can specify the following filters and values. Status (EQUAL) ResourceId (EQUAL) ResourceType (EQUAL)

    *)
  4. maxResults : MaxResults.t option;
    (*

    The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

    *)
  5. nextToken : NextToken.t option;
    (*

    A token to start the list. Use this token to get the next set of results.

    *)
}
Sourceval context_ : string
Sourceval make : ?filters:??? -> ?maxResults:??? -> ?nextToken:??? -> associationId:AssociationId.t -> executionId:AssociationExecutionId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MaxResults.t | `List of [> `Structure of (string * [> `Enum of string | `String of AssociationExecutionTargetsFilterValue.t ]) list ] list | `String of AssociationId.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