updateEventBridgeRuleTemplateGroup method
Updates the specified eventbridge rule template group.
May throw BadRequestException.
May throw ConflictException.
May throw ForbiddenException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter identifier :
An eventbridge rule template group's identifier. Can be either be its id
or current name.
Parameter description :
A resource's optional description.
Implementation
Future<UpdateEventBridgeRuleTemplateGroupResponse>
updateEventBridgeRuleTemplateGroup({
required String identifier,
String? description,
}) async {
final $payload = <String, dynamic>{
if (description != null) 'description': description,
};
final response = await _protocol.send(
payload: $payload,
method: 'PATCH',
requestUri:
'/prod/eventbridge-rule-template-groups/${Uri.encodeComponent(identifier)}',
exceptionFnMap: _exceptionFns,
);
return UpdateEventBridgeRuleTemplateGroupResponse.fromJson(response);
}