getExtensionAssociation method
Returns information about an AppConfig extension association. For more information about extensions and associations, see Extending workflows in the AppConfig User Guide.
May throw BadRequestException.
May throw InternalServerException.
May throw ResourceNotFoundException.
Parameter extensionAssociationId :
The extension association ID to get.
Implementation
Future<ExtensionAssociation> getExtensionAssociation({
required String extensionAssociationId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/extensionassociations/${Uri.encodeComponent(extensionAssociationId)}',
exceptionFnMap: _exceptionFns,
);
return ExtensionAssociation.fromJson(response);
}