Module Values.CreateExtensionRequestSource

Creates an AppConfig extension. An extension augments your ability to inject logic or behavior at different points during the AppConfig workflow of creating or deploying a configuration. You can create your own extensions or use the Amazon Web Services authored extensions provided by AppConfig. For an AppConfig extension that uses Lambda, you must create a Lambda function to perform any computation and processing defined in the extension. If you plan to create custom versions of the Amazon Web Services authored notification extensions, you only need to specify an Amazon Resource Name (ARN) in the Uri field for the new extension version. For a custom EventBridge notification extension, enter the ARN of the EventBridge default events in the Uri field. For a custom Amazon SNS notification extension, enter the ARN of an Amazon SNS topic in the Uri field. For a custom Amazon SQS notification extension, enter the ARN of an Amazon SQS message queue in the Uri field. For more information about extensions, see Extending workflows in the AppConfig User Guide.

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

    A name for the extension. Each extension name in your account must be unique. Extension versions use the same name.

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

    Information about the extension.

    *)
  3. actions : ActionsMap.t;
    (*

    The actions defined in the extension.

    *)
  4. parameters : ParameterMap.t option;
    (*

    The parameters accepted by the extension. You specify parameter values when you associate the extension to an AppConfig resource by using the CreateExtensionAssociation API action. For Lambda extension actions, these parameters are included in the Lambda request object.

    *)
  5. tags : TagMap.t option;
    (*

    Adds one or more tags for the specified extension. Tags are metadata that help you categorize resources in different ways, for example, by purpose, owner, or environment. Each tag consists of a key and an optional value, both of which you define.

    *)
  6. latestVersionNumber : Integer.t option;
    (*

    You can omit this field when you create an extension. When you create a new version, specify the most recent current version number. For example, you create version 3, enter 2 for this field.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?parameters:??? -> ?tags:??? -> ?latestVersionNumber:??? -> name:ExtensionOrParameterName.t -> actions:ActionsMap.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Map of ([> `Enum of string | `String of ExtensionOrParameterName.t ] * [> `List of [> `Structure of (string * [> `String of Name.t ]) list ] list | `String of TagValue.t | `Structure of (string * [> `Boolean of Boolean.t | `String of Description.t ]) list ]) list | `String of ExtensionOrParameterName.t ]) 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