Exemplo n.º 1
0
        internal SetIdentityPoolRolesResponse SetIdentityPoolRoles(SetIdentityPoolRolesRequest request)
        {
            SetIdentityPoolRolesRequestMarshaller    marshaller = new SetIdentityPoolRolesRequestMarshaller();
            SetIdentityPoolRolesResponseUnmarshaller instance   = SetIdentityPoolRolesResponseUnmarshaller.Instance;

            return(Invoke <SetIdentityPoolRolesRequest, SetIdentityPoolRolesResponse>(request, marshaller, instance));
        }
Exemplo n.º 2
0
        public void SetIdentityPoolRolesAsync(string identityPoolId, Dictionary <string, string> roles, AmazonServiceCallback <SetIdentityPoolRolesRequest, SetIdentityPoolRolesResponse> callback, AsyncOptions options = null)
        {
            SetIdentityPoolRolesRequest setIdentityPoolRolesRequest = new SetIdentityPoolRolesRequest();

            setIdentityPoolRolesRequest.IdentityPoolId = identityPoolId;
            setIdentityPoolRolesRequest.Roles          = roles;
            SetIdentityPoolRolesAsync(setIdentityPoolRolesRequest, callback, options);
        }
Exemplo n.º 3
0
        /// <summary>
        /// Initiates the asynchronous execution of the SetIdentityPoolRoles operation.
        /// </summary>
        ///
        /// <param name="request">Container for the necessary parameters to execute the SetIdentityPoolRoles 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 <SetIdentityPoolRolesResponse> SetIdentityPoolRolesAsync(SetIdentityPoolRolesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller   = new SetIdentityPoolRolesRequestMarshaller();
            var unmarshaller = SetIdentityPoolRolesResponseUnmarshaller.Instance;

            return(InvokeAsync <SetIdentityPoolRolesRequest, SetIdentityPoolRolesResponse>(request, marshaller,
                                                                                           unmarshaller, cancellationToken));
        }
        /// <summary>
        /// Initiates the asynchronous execution of the SetIdentityPoolRoles operation.
        /// <seealso cref="Amazon.CognitoIdentity.IAmazonCognitoIdentity"/>
        /// </summary>
        /// <param name="request">Container for the necessary parameters to execute the SetIdentityPoolRoles operation.</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>void</returns>
        public void SetIdentityPoolRolesAsync(SetIdentityPoolRolesRequest request, AmazonServiceCallback callback, object state)
        {
            if (!AmazonInitializer.IsInitialized)
            {
                throw new Exception("AWSPrefab is not added to the scene");
            }

            ThreadPool.QueueUserWorkItem(new WaitCallback(delegate
            {
                var marshaller   = new SetIdentityPoolRolesRequestMarshaller();
                var unmarshaller = SetIdentityPoolRolesResponseUnmarshaller.Instance;
                Invoke(request, callback, state, marshaller, unmarshaller, signer);
            }));
            return;
        }
Exemplo n.º 5
0
        public void SetIdentityPoolRolesAsync(SetIdentityPoolRolesRequest request, AmazonServiceCallback <SetIdentityPoolRolesRequest, SetIdentityPoolRolesResponse> callback, AsyncOptions options = null)
        {
            options = ((options == null) ? new AsyncOptions() : options);
            SetIdentityPoolRolesRequestMarshaller    marshaller = new SetIdentityPoolRolesRequestMarshaller();
            SetIdentityPoolRolesResponseUnmarshaller instance   = SetIdentityPoolRolesResponseUnmarshaller.Instance;
            Action <AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null;

            if (callback != null)
            {
                callbackHelper = delegate(AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao)
                {
                    AmazonServiceResult <SetIdentityPoolRolesRequest, SetIdentityPoolRolesResponse> responseObject = new AmazonServiceResult <SetIdentityPoolRolesRequest, SetIdentityPoolRolesResponse>((SetIdentityPoolRolesRequest)req, (SetIdentityPoolRolesResponse)res, ex, ao.State);
                    callback(responseObject);
                };
            }
            BeginInvoke(request, marshaller, instance, options, callbackHelper);
        }