describeInputSecurityGroup method
Future<DescribeInputSecurityGroupResponse>
describeInputSecurityGroup({
- required String inputSecurityGroupId,
Produces a summary of an Input Security Group
May throw BadGatewayException.
May throw BadRequestException.
May throw ForbiddenException.
May throw GatewayTimeoutException.
May throw InternalServerErrorException.
May throw NotFoundException.
May throw TooManyRequestsException.
Parameter inputSecurityGroupId :
The id of the Input Security Group to describe
Implementation
Future<DescribeInputSecurityGroupResponse> describeInputSecurityGroup({
required String inputSecurityGroupId,
}) async {
final response = await _protocol.send(
payload: null,
method: 'GET',
requestUri:
'/prod/inputSecurityGroups/${Uri.encodeComponent(inputSecurityGroupId)}',
exceptionFnMap: _exceptionFns,
);
return DescribeInputSecurityGroupResponse.fromJson(response);
}