Module Values.ActionSource

Describes an action. For more information, see FIS actions in the Fault Injection Service User Guide.

Sourcetype nonrec t = {
  1. id : ActionId.t option;
    (*

    The ID of the action.

    *)
  2. arn : ResourceArn.t option;
    (*

    The Amazon Resource Name (ARN) of the action.

    *)
  3. description : ActionDescription.t option;
    (*

    The description for the action.

    *)
  4. parameters : ActionParameterMap.t option;
    (*

    The action parameters, if applicable.

    *)
  5. targets : ActionTargetMap.t option;
    (*

    The supported targets for the action.

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

    The tags for the action.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?description:??? -> ?parameters:??? -> ?targets:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of ActionParameterName.t ] * [> `String of TagValue.t | `Structure of (string * [> `Boolean of ActionParameterRequired.t | `String of ActionParameterDescription.t ]) list ]) list | `String of ActionId.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