describeQev2IdcApplications method
Lists the Amazon Redshift Query Editor (QEV2) IAM Identity Center applications. To retrieve additional results, use the MaxRecords and Marker parameters.
May throw DependentServiceAccessDeniedFault.
May throw DependentServiceUnavailableFault.
May throw Qev2IdcApplicationNotExistsFault.
May throw UnsupportedOperationFault.
Parameter marker :
A value that indicates the starting point for the next set of response
records in a subsequent request. If a value is returned in a response, you
can retrieve the next set of records by providing this returned marker
value in the Marker parameter and retrying the command. If the Marker
field is empty, all response records have been retrieved for the request.
Parameter maxRecords :
The maximum number of response records to return in each call. If the
number of remaining response records exceeds the specified MaxRecords
value, a value is returned in a marker field of the response. You can
retrieve the next set of records by retrying the command with the returned
marker value.
Parameter qev2IdcApplicationArn :
The Amazon Resource Name (ARN) for the Amazon Redshift Query Editor (QEV2)
application that integrates with IAM Identity Center.
Implementation
Future<DescribeQev2IdcApplicationsResult> describeQev2IdcApplications({
String? marker,
int? maxRecords,
String? qev2IdcApplicationArn,
}) async {
final $request = <String, String>{
if (marker != null) 'Marker': marker,
if (maxRecords != null) 'MaxRecords': maxRecords.toString(),
if (qev2IdcApplicationArn != null)
'Qev2IdcApplicationArn': qev2IdcApplicationArn,
};
final $result = await _protocol.send(
$request,
action: 'DescribeQev2IdcApplications',
version: '2012-12-01',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
resultWrapper: 'DescribeQev2IdcApplicationsResult',
);
return DescribeQev2IdcApplicationsResult.fromXml($result);
}