Values.ActionDeclarationSourceRepresents information about an action declaration.
type nonrec t = {name : ActionName.t;The action declaration's name.
*)actionTypeId : ActionTypeId.t;Specifies the action type and the provider of the action.
*)runOrder : ActionRunOrder.t option;The order in which actions are run.
*)configuration : ActionConfigurationMap.t option;The action's configuration. These are key-value pairs that specify input values for an action. For more information, see Action Structure Requirements in CodePipeline. For the list of configuration properties for the CloudFormation action type in CodePipeline, see Configuration Properties Reference in the CloudFormation User Guide. For template snippets with examples, see Using Parameter Override Functions with CodePipeline Pipelines in the CloudFormation User Guide. The values can be represented in either JSON or YAML format. For example, the JSON configuration item format is as follows: JSON: "Configuration" : { Key : Value },
*)commands : CommandList.t option;The shell commands to run with your compute action in CodePipeline. All commands are supported except multi-line formats. While CodeBuild logs and permissions are used, you do not need to create any resources in CodeBuild. Using compute time for this action will incur separate charges in CodeBuild.
*)outputArtifacts : OutputArtifactList.t option;The name or ID of the result of the action declaration, such as a test or build artifact.
*)inputArtifacts : InputArtifactList.t option;The name or ID of the artifact consumed by the action, such as a test or build artifact.
*)outputVariables : OutputVariableList.t option;The list of variables that are to be exported from the compute action. This is specifically CodeBuild environment variables as used for that action.
*)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.
*)region : AWSRegionName.t option;The action declaration's Amazon Web Services Region, such as us-east-1.
*)namespace : ActionNamespace.t option;The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.
*)timeoutInMinutes : ActionTimeout.t option;A timeout duration in minutes that can be applied against the ActionType’s default timeout value specified in Quotas for CodePipeline . This attribute is available only to the manual approval ActionType.
*)environmentVariables : EnvironmentVariableList.t option;The environment variables for the action.
*)}val make :
?runOrder:??? ->
?configuration:??? ->
?commands:??? ->
?outputArtifacts:??? ->
?inputArtifacts:??? ->
?outputVariables:??? ->
?roleArn:??? ->
?region:??? ->
?namespace:??? ->
?timeoutInMinutes:??? ->
?environmentVariables:??? ->
name:ActionName.t ->
actionTypeId:ActionTypeId.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of ActionRunOrder.t
| `List of
[> `String of Command.t
| `Structure of
(string
* [> `Enum of string
| `List of [> `String of FilePath.t ] list
| `String of ArtifactName.t ])
list ]
list
| `Map of
([> `String of ActionConfigurationKey.t ]
* [> `String of ActionConfigurationValue.t ])
list
| `String of ActionName.t
| `Structure of
(string * [> `Enum of string | `String of ActionProvider.t ]) list ])
list ]