Module Values.ExtensionAssociationSource

When you create an extension or configure an Amazon Web Services authored extension, you associate the extension with an AppConfig application, environment, or configuration profile. For example, you can choose to run the AppConfig deployment events to Amazon SNS Amazon Web Services authored extension and receive notifications on an Amazon SNS topic anytime a configuration deployment is started for a specific application. Defining which extension to associate with an AppConfig resource is called an extension association. An extension association is a specified relationship between an extension and an AppConfig resource, such as an application or a configuration profile. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.

Sourcetype nonrec t = {
  1. id : Identifier.t option;
    (*

    The system-generated ID for the association.

    *)
  2. extensionArn : Arn.t option;
    (*

    The ARN of the extension defined in the association.

    *)
  3. resourceArn : Arn.t option;
    (*

    The ARNs of applications, configuration profiles, or environments defined in the association.

    *)
  4. arn : Arn.t option;
    (*

    The system-generated Amazon Resource Name (ARN) for the extension.

    *)
  5. parameters : ParameterValueMap.t option;
    (*

    The parameter names and values defined in the association.

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

    The version number for the extension defined in the association.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `InternalServerException of InternalServerException.t
  3. | `ResourceNotFoundException of ResourceNotFoundException.t
  4. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?id:??? -> ?extensionArn:??? -> ?resourceArn:??? -> ?arn:??? -> ?parameters:??? -> ?extensionVersionNumber:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `Map of ([> `String of ExtensionOrParameterName.t ] * [> `String of StringWithLengthBetween1And2048.t ]) list | `String of Identifier.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