Values.CreateExtensionAssociationRequestSourceWhen 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.
type nonrec t = {extensionIdentifier : Identifier.t;The name, the ID, or the Amazon Resource Name (ARN) of the extension.
*)extensionVersionNumber : Integer.t option;The version number of the extension. If not specified, AppConfig uses the maximum version of the extension.
*)resourceIdentifier : Identifier.t;The ARN of an application, configuration profile, or environment.
*)parameters : ParameterValueMap.t option;The parameter names and values defined in the extensions. Extension parameters marked Required must be entered for this field.
*)}val make :
?extensionVersionNumber:??? ->
?parameters:??? ->
?tags:??? ->
extensionIdentifier:Identifier.t ->
resourceIdentifier:Identifier.t ->
unit ->
tval 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 ]