Module Values.ExtensionAssociationSummarySource

Information about an association between an extension and an AppConfig resource such as an application, environment, or configuration profile. Call GetExtensionAssociation to get more information about an association.

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

    The extension association ID. This ID is used to call other ExtensionAssociation API actions such as GetExtensionAssociation or DeleteExtensionAssociation.

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

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

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

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

    *)
}
Sourceval make : ?id:??? -> ?extensionArn:??? -> ?resourceArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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