getEventBridgeRuleTemplateGroup method

Future<GetEventBridgeRuleTemplateGroupResponse> getEventBridgeRuleTemplateGroup({
  1. required String identifier,
})

Retrieves the specified eventbridge rule template group.

May throw BadRequestException. 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.

Implementation

Future<GetEventBridgeRuleTemplateGroupResponse>
    getEventBridgeRuleTemplateGroup({
  required String identifier,
}) async {
  final response = await _protocol.send(
    payload: null,
    method: 'GET',
    requestUri:
        '/prod/eventbridge-rule-template-groups/${Uri.encodeComponent(identifier)}',
    exceptionFnMap: _exceptionFns,
  );
  return GetEventBridgeRuleTemplateGroupResponse.fromJson(response);
}