Module Values.UpdateFlowRequestSource

Modifies a flow. Include both fields that you want to keep and fields that you want to change. For more information, see How it works and Create a flow in Amazon Bedrock in the Amazon Bedrock User Guide.

Sourcetype nonrec t = {
  1. name : FlowName.t;
    (*

    A name for the flow.

    *)
  2. description : FlowDescription.t option;
    (*

    A description for the flow.

    *)
  3. executionRoleArn : FlowExecutionRoleArn.t;
    (*

    The Amazon Resource Name (ARN) of the service role with permissions to create and manage a flow. For more information, see Create a service role for flows in Amazon Bedrock in the Amazon Bedrock User Guide.

    *)
  4. customerEncryptionKeyArn : KmsKeyArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key to encrypt the flow.

    *)
  5. definition : FlowDefinition.t option;
    (*

    A definition of the nodes and the connections between the nodes in the flow.

    *)
  6. flowIdentifier : FlowIdentifier.t;
    (*

    The unique identifier of the flow.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?customerEncryptionKeyArn:??? -> ?definition:??? -> name:FlowName.t -> executionRoleArn:FlowExecutionRoleArn.t -> flowIdentifier:FlowIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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