Module Values.EnvironmentActionSummarySource

The details about the specified action configured for an environment. For example, the details of the specified console links for an analytics tool that is available in this environment.

Sourcetype nonrec t = {
  1. domainId : DomainId.t option;
    (*

    The Amazon DataZone domain ID of the environment action.

    *)
  2. environmentId : EnvironmentId.t option;
    (*

    The environment ID of the environment action.

    *)
  3. id : EnvironmentActionId.t option;
    (*

    The ID of the environment action.

    *)
  4. name : String_.t option;
    (*

    The name of the environment action.

    *)
  5. parameters : ActionParameters.t option;
    (*

    The parameters of the environment action.

    *)
  6. description : String_.t option;
    (*

    The environment action description.

    *)
}
Sourceval make : ?domainId:??? -> ?environmentId:??? -> ?id:??? -> ?name:??? -> ?parameters:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.t | `Structure of (string * [> `Structure of (string * [> `String of String_.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