Module Values.CreatePipelineOutputSource

Represents the output of a CreatePipeline action.

Sourcetype nonrec t = {
  1. pipeline : PipelineDeclaration.t option;
    (*

    Represents the structure of actions and stages to be performed in the pipeline.

    *)
  2. tags : TagList.t option;
    (*

    Specifies the tags applied to the pipeline.

    *)
}
Sourcetype nonrec error = [
  1. | `ConcurrentModificationException of ConcurrentModificationException.t
  2. | `InvalidActionDeclarationException of InvalidActionDeclarationException.t
  3. | `InvalidBlockerDeclarationException of InvalidBlockerDeclarationException.t
  4. | `InvalidStageDeclarationException of InvalidStageDeclarationException.t
  5. | `InvalidStructureException of InvalidStructureException.t
  6. | `InvalidTagsException of InvalidTagsException.t
  7. | `LimitExceededException of LimitExceededException.t
  8. | `PipelineNameInUseException of PipelineNameInUseException.t
  9. | `TooManyTagsException of TooManyTagsException.t
  10. | `ValidationException of ValidationException.t
  11. | `Unknown_operation_error of string * string option
]
Sourceval make : ?pipeline:??? -> ?tags:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConcurrentModificationException of ConcurrentModificationException.t | `InvalidActionDeclarationException of unit | `InvalidBlockerDeclarationException of unit | `InvalidStageDeclarationException of unit | `InvalidStructureException of unit | `InvalidTagsException of InvalidTagsException.t | `LimitExceededException of unit | `PipelineNameInUseException of unit | `TooManyTagsException of TooManyTagsException.t | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConcurrentModificationException of ConcurrentModificationException.t | `InvalidActionDeclarationException of unit | `InvalidBlockerDeclarationException of unit | `InvalidStageDeclarationException of unit | `InvalidStructureException of unit | `InvalidTagsException of InvalidTagsException.t | `LimitExceededException of unit | `PipelineNameInUseException of unit | `TooManyTagsException of TooManyTagsException.t | `Unknown_operation_error of string * string option | `ValidationException of unit ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `Structure of (string * [> `Enum of string | `Integer of PipelineVersion.t | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum 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 BlockerName.t | `Structure of (string * [> `Enum of string | `String of ActionProvider.t ]) list ]) list ] list | `String of StageName.t | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string | `Structure of (string * [> `Integer of RuleTimeout.t | `List of [> `String of Command.t | `Structure of (string * [> `String of ArtifactName.t ]) list ] list | `Map of ([> `String of RuleConfigurationKey.t ] * [> `String of RuleConfigurationValue.t ]) list | `String of RuleName.t | `Structure of (string * [> `Enum of string | `String of RuleProvider.t ]) list ]) list ] list | `Structure of (string * [> `List of [> `String of GitTagNamePattern.t ] list ]) list ]) list ] list | `String of ActionName.t | `Structure of (string * [> `Enum of string ]) list ]) list ]) list ] list | `Map of ([> `String of AWSRegionName.t ] * [> `Structure of (string * [> `Enum of string | `String of ArtifactStoreLocation.t | `Structure of (string * [> `Enum of string | `String of EncryptionKeyId.t ]) list ]) list ]) list | `String of PipelineName.t | `Structure of (string * [> `Enum of string | `String of ArtifactStoreLocation.t | `Structure of (string * [> `Enum of string | `String of EncryptionKeyId.t ]) list ]) 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