getIdentityPoolRoles method
Gets the roles for an identity pool.
You must use AWS Developer credentials to call this API.
May throw InvalidParameterException. May throw ResourceNotFoundException. May throw NotAuthorizedException. May throw ResourceConflictException. May throw TooManyRequestsException. May throw InternalErrorException.
Parameter identityPoolId
:
An identity pool ID in the format REGION:GUID.
Implementation
Future<GetIdentityPoolRolesResponse> getIdentityPoolRoles({
required String identityPoolId,
}) async {
ArgumentError.checkNotNull(identityPoolId, 'identityPoolId');
_s.validateStringLength(
'identityPoolId',
identityPoolId,
1,
55,
isRequired: true,
);
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'AWSCognitoIdentityService.GetIdentityPoolRoles'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'IdentityPoolId': identityPoolId,
},
);
return GetIdentityPoolRolesResponse.fromJson(jsonResponse.body);
}