Module Values.ActionExecutionInputSource

Input information used for an action execution.

Sourcetype nonrec t = {
  1. actionTypeId : ActionTypeId.t option;
  2. configuration : ActionConfigurationMap.t option;
    (*

    Configuration data for an action execution.

    *)
  3. resolvedConfiguration : ResolvedActionConfigurationMap.t option;
    (*

    Configuration data for an action execution with all variable references replaced with their real values for the execution.

    *)
  4. roleArn : RoleArn.t option;
    (*

    The ARN of the IAM service role that performs the declared action. This is assumed through the roleArn for the pipeline.

    *)
  5. region : AWSRegionName.t option;
    (*

    The Amazon Web Services Region for the action, such as us-east-1.

    *)
  6. inputArtifacts : ArtifactDetailList.t option;
    (*

    Details of input artifacts of the action that correspond to the action execution.

    *)
  7. namespace : ActionNamespace.t option;
    (*

    The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.

    *)
}
Sourceval make : ?actionTypeId:??? -> ?configuration:??? -> ?resolvedConfiguration:??? -> ?roleArn:??? -> ?region:??? -> ?inputArtifacts:??? -> ?namespace:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of ArtifactName.t | `Structure of (string * [> `String of S3Bucket.t ]) list ]) list ] list | `Map of ([> `String of ActionConfigurationKey.t ] * [> `String of ActionConfigurationValue.t ]) list | `String of RoleArn.t | `Structure of (string * [> `Enum of string | `String of ActionProvider.t ]) 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