You must use AWS Developer credentials to call this API.
/// <summary> /// Lists the identities in a pool. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListIdentities service method.</param> /// /// <returns>The response from the ListIdentities service method, as returned by CognitoIdentity.</returns> /// <exception cref="Amazon.CognitoIdentity.Model.InternalErrorException"> /// Thrown when the service encounters an error during processing the request. /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.InvalidParameterException"> /// Thrown for missing or bad input parameter(s). /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.NotAuthorizedException"> /// Thrown when a user is not authorized to access the requested resource. /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.ResourceNotFoundException"> /// Thrown when the requested resource (for example, a dataset or record) does not exist. /// </exception> /// <exception cref="Amazon.CognitoIdentity.Model.TooManyRequestsException"> /// Thrown when a request is throttled. /// </exception> internal ListIdentitiesResponse ListIdentities(ListIdentitiesRequest request) { var marshaller = new ListIdentitiesRequestMarshaller(); var unmarshaller = ListIdentitiesResponseUnmarshaller.Instance; return Invoke<ListIdentitiesRequest,ListIdentitiesResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the ListIdentities operation. /// <seealso cref="Amazon.CognitoIdentity.IAmazonCognitoIdentity.ListIdentities"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListIdentities operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task<ListIdentitiesResponse> ListIdentitiesAsync(ListIdentitiesRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ListIdentitiesRequestMarshaller(); var unmarshaller = ListIdentitiesResponseUnmarshaller.GetInstance(); return Invoke<IRequest, ListIdentitiesRequest, ListIdentitiesResponse>(request, marshaller, unmarshaller, signer, cancellationToken); }
/// <summary> /// Initiates the asynchronous execution of the ListIdentities operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListIdentities operation on AmazonCognitoIdentityClient.</param> /// <param name="callback">An Action delegate that is invoked when the operation completes.</param> /// <param name="options">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> public void ListIdentitiesAsync(ListIdentitiesRequest request, AmazonServiceCallback<ListIdentitiesRequest, ListIdentitiesResponse> callback, AsyncOptions options = null) { options = options == null?new AsyncOptions():options; var marshaller = new ListIdentitiesRequestMarshaller(); var unmarshaller = ListIdentitiesResponseUnmarshaller.Instance; Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null; if(callback !=null ) callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { AmazonServiceResult<ListIdentitiesRequest,ListIdentitiesResponse> responseObject = new AmazonServiceResult<ListIdentitiesRequest,ListIdentitiesResponse>((ListIdentitiesRequest)req, (ListIdentitiesResponse)res, ex , ao.State); callback(responseObject); }; BeginInvoke<ListIdentitiesRequest>(request, marshaller, unmarshaller, options, callbackHelper); }
/// <summary> /// Initiates the asynchronous execution of the ListIdentities operation. /// <seealso cref="Amazon.CognitoIdentity.IAmazonCognitoIdentity"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListIdentities operation on AmazonCognitoIdentityClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListIdentities /// operation.</returns> public IAsyncResult BeginListIdentities(ListIdentitiesRequest request, AsyncCallback callback, object state) { var marshaller = new ListIdentitiesRequestMarshaller(); var unmarshaller = ListIdentitiesResponseUnmarshaller.Instance; return BeginInvoke<ListIdentitiesRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Lists the identities in a pool. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListIdentities service method.</param> /// /// <returns>The response from the ListIdentities service method, as returned by CognitoIdentity.</returns> /// <exception cref="T:Amazon.CognitoIdentity.Model.InternalErrorException"> /// Thrown when the service encounters an error during processing the request. /// </exception> /// <exception cref="T:Amazon.CognitoIdentity.Model.InvalidParameterException"> /// Thrown for missing or bad input parameter(s). /// </exception> /// <exception cref="T:Amazon.CognitoIdentity.Model.NotAuthorizedException"> /// Thrown when a user is not authorized to access the requested resource. /// </exception> /// <exception cref="T:Amazon.CognitoIdentity.Model.ResourceNotFoundException"> /// Thrown when the requested resource (for example, a dataset or record) does not exist. /// </exception> /// <exception cref="T:Amazon.CognitoIdentity.Model.TooManyRequestsException"> /// Thrown when a request is throttled. /// </exception> public ListIdentitiesResponse ListIdentities(ListIdentitiesRequest request) { var task = ListIdentitiesAsync(request); try { return task.Result; } catch(AggregateException e) { ExceptionDispatchInfo.Capture(e.InnerException).Throw(); return null; } }
/// <summary> /// Initiates the asynchronous execution of the ListIdentities operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListIdentities operation.</param> /// <param name="cancellationToken"> /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. /// </param> /// <returns>The task object representing the asynchronous operation.</returns> public Task<ListIdentitiesResponse> ListIdentitiesAsync(ListIdentitiesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new ListIdentitiesRequestMarshaller(); var unmarshaller = ListIdentitiesResponseUnmarshaller.Instance; return InvokeAsync<ListIdentitiesRequest,ListIdentitiesResponse>(request, marshaller, unmarshaller, cancellationToken); }
private IEnumerable<IdentityDescription> GetAllIdentitiesHelper(string poolId) { var request = new ListIdentitiesRequest { MaxResults = MaxResults, IdentityPoolId = poolId }; ListIdentitiesResponse result; do { result = Client.ListIdentities(request); foreach (var ident in result.Identities) { Assert.IsNotNull(ident); Assert.IsFalse(string.IsNullOrEmpty(ident.IdentityId)); Assert.IsNotNull(ident.Logins); yield return ident; } request.NextToken = result.NextToken; } while (!string.IsNullOrEmpty(result.NextToken)); }
IAsyncResult invokeListIdentities(ListIdentitiesRequest request, AsyncCallback callback, object state, bool synchronized) { var marshaller = new ListIdentitiesRequestMarshaller(); var unmarshaller = ListIdentitiesResponseUnmarshaller.Instance; return Invoke(request, callback, state, synchronized, marshaller, unmarshaller, signer); }
/// <summary> /// Initiates the asynchronous execution of the ListIdentities operation. /// <seealso cref="Amazon.CognitoIdentity.IAmazonCognitoIdentity"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the ListIdentities operation on AmazonCognitoIdentityClient.</param> /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param> /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.</param> /// /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndListIdentities /// operation.</returns> public IAsyncResult BeginListIdentities(ListIdentitiesRequest request, AsyncCallback callback, object state) { return invokeListIdentities(request, callback, state, false); }
/// <summary> /// Lists the identities in a pool. /// </summary> /// <param name="request">Container for the necessary parameters to execute the ListIdentities service method.</param> /// /// <returns>The response from the ListIdentities service method, as returned by CognitoIdentity.</returns> /// <exception cref="InternalErrorException"> /// Thrown when the service encounters an error during processing the request. /// </exception> /// <exception cref="InvalidParameterException"> /// Thrown for missing or bad input parameter(s). /// </exception> /// <exception cref="NotAuthorizedException"> /// Thrown when a user is not authorized to access the requested resource. /// </exception> /// <exception cref="ResourceNotFoundException"> /// Thrown when the requested resource (for example, a dataset or record) does not exist. /// </exception> /// <exception cref="TooManyRequestsException"> /// Thrown when a request is throttled. /// </exception> public ListIdentitiesResponse ListIdentities(ListIdentitiesRequest request) { IAsyncResult asyncResult = invokeListIdentities(request, null, null, true); return EndListIdentities(asyncResult); }