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