AdminResetUserPasswordRequestMarshaller
Namespace:
AWSSDK.CognitoIdentityProvider
We found 10 examples in language CSharp for this search.
You will see 25 fragments of code.
Other methods
Other methods
Project:aws-sdk-net
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
internal static AdminResetUserPasswordRequestMarshaller GetInstance()
{
return _instance;
}
Project:awssdks
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
internal static AdminResetUserPasswordRequestMarshaller GetInstance()
{
return _instance;
}
Project:aws-sdk-net-xamarin
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
internal static AdminResetUserPasswordRequestMarshaller GetInstance()
{
return _instance;
}
Project:aws-sdk-net
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
internal static AdminResetUserPasswordRequestMarshaller GetInstance()
{
return _instance;
}
Project:myawskendra
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
internal static AdminResetUserPasswordRequestMarshaller GetInstance()
{
return _instance;
}
Project:aws-sdk-net
File:AdminResetUserPasswordRequestMarshaller.cs
Examples:1
internal static AdminResetUserPasswordRequestMarshaller GetInstance()
{
return _instance;
}
Project:AmazonAWS
File:AmazonCognitoIdentityProviderClient.cs
Examples:1
#endregion
#region AdminResetUserPassword
internal AdminResetUserPasswordResponse AdminResetUserPassword(AdminResetUserPasswordRequest request)
{
var marshaller = new AdminResetUserPasswordRequestMarshaller();
var unmarshaller = AdminResetUserPasswordResponseUnmarshaller.Instance;
return Invoke<AdminResetUserPasswordRequest,AdminResetUserPasswordResponse>(request, marshaller, unmarshaller);
}
Project:aws-sdk-net-xamarin
File:AmazonCognitoIdentityProviderClient.cs
Examples:6
#endregion
#if AWS_ASYNC_ENUMERABLES_API
private ICognitoIdentityProviderPaginatorFactory _paginators;
/// <summary>
/// Paginators for the service
/// </summary>
public ICognitoIdentityProviderPaginatorFactory Paginators
{
get
{
if (this._paginators == null)
{
this._paginators = new CognitoIdentityProviderPaginatorFactory(this);
}
return this._paginators;
}
}
#endif
#region Overrides
/// <summary>
/// Creates the signer for the service.
/// </summary>
protected override AbstractAWSSigner CreateSigner()
{
return new AWS4Signer();
}
#endregion
#region Dispose
/// <summary>
/// Disposes the service client.
/// </summary>
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
#endregion
#region AddCustomAttributes
internal virtual AddCustomAttributesResponse AddCustomAttributes(AddCustomAttributesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddCustomAttributesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return Invoke<AddCustomAttributesResponse>(request, options);
}
/// <summary>
/// Adds additional user attributes to the user pool schema.
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AddCustomAttributes service method.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
///
/// <returns>The response from the AddCustomAttributes service method, as returned by CognitoIdentityProvider.</returns>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InternalErrorException">
/// This exception is thrown when Amazon Cognito encounters an internal error.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InvalidParameterException">
/// This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.NotAuthorizedException">
/// This exception is thrown when a user is not authorized.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.ResourceNotFoundException">
/// This exception is thrown when the Amazon Cognito service cannot find the requested
/// resource.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.TooManyRequestsException">
/// This exception is thrown when the user has made too many requests for a given operation.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.UserImportInProgressException">
/// This exception is thrown when you are trying to modify a user pool while a user import
/// job is in progress for that pool.
/// </exception>
/// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AddCustomAttributes">REST API Reference for AddCustomAttributes Operation</seealso>
public virtual Task<AddCustomAttributesResponse> AddCustomAttributesAsync(AddCustomAttributesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddCustomAttributesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return InvokeAsync<AddCustomAttributesResponse>(request, options, cancellationToken);
}
#endregion
#region AdminAddUserToGroup
internal virtual AdminAddUserToGroupResponse AdminAddUserToGroup(AdminAddUserToGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AdminAddUserToGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AdminAddUserToGroupResponseUnmarshaller.Instance;
return Invoke<AdminAddUserToGroupResponse>(request, options);
}
/// <summary>
/// Adds the specified user to the specified group.
///
///
/// <para>
/// Calling this action requires developer credentials.
/// </para>
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AdminAddUserToGroup service method.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
///
/// <returns>The response from the AdminAddUserToGroup service method, as returned by CognitoIdentityProvider.</returns>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InternalErrorException">
/// This exception is thrown when Amazon Cognito encounters an internal error.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InvalidParameterException">
/// This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.NotAuthorizedException">
/// This exception is thrown when a user is not authorized.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.ResourceNotFoundException">
/// This exception is thrown when the Amazon Cognito service cannot find the requested
/// resource.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.TooManyRequestsException">
/// This exception is thrown when the user has made too many requests for a given operation.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.UserNotFoundException">
/// This exception is thrown when a user is not found.
/// </exception>
/// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminAddUserToGroup">REST API Reference for AdminAddUserToGroup Operation</seealso>
public virtual Task<AdminAddUserToGroupResponse> AdminAddUserToGroupAsync(AdminAddUserToGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AdminAddUserToGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AdminAddUserToGroupResponseUnmarshaller.Instance;
return InvokeAsync<AdminAddUserToGroupResponse>(request, options, cancellationToken);
}
Project:aws-sdk-net
File:AmazonCognitoIdentityProviderClient.cs
Examples:6
#endregion
#if AWS_ASYNC_ENUMERABLES_API
private ICognitoIdentityProviderPaginatorFactory _paginators;
/// <summary>
/// Paginators for the service
/// </summary>
public ICognitoIdentityProviderPaginatorFactory Paginators
{
get
{
if (this._paginators == null)
{
this._paginators = new CognitoIdentityProviderPaginatorFactory(this);
}
return this._paginators;
}
}
#endif
#region Overrides
/// <summary>
/// Creates the signer for the service.
/// </summary>
protected override AbstractAWSSigner CreateSigner()
{
return new AWS4Signer();
}
#endregion
#region Dispose
/// <summary>
/// Disposes the service client.
/// </summary>
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
#endregion
#region AddCustomAttributes
internal virtual AddCustomAttributesResponse AddCustomAttributes(AddCustomAttributesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddCustomAttributesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return Invoke<AddCustomAttributesResponse>(request, options);
}
/// <summary>
/// Adds additional user attributes to the user pool schema.
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AddCustomAttributes service method.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
///
/// <returns>The response from the AddCustomAttributes service method, as returned by CognitoIdentityProvider.</returns>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InternalErrorException">
/// This exception is thrown when Amazon Cognito encounters an internal error.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InvalidParameterException">
/// This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.NotAuthorizedException">
/// This exception is thrown when a user is not authorized.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.ResourceNotFoundException">
/// This exception is thrown when the Amazon Cognito service cannot find the requested
/// resource.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.TooManyRequestsException">
/// This exception is thrown when the user has made too many requests for a given operation.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.UserImportInProgressException">
/// This exception is thrown when you are trying to modify a user pool while a user import
/// job is in progress for that pool.
/// </exception>
/// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AddCustomAttributes">REST API Reference for AddCustomAttributes Operation</seealso>
public virtual Task<AddCustomAttributesResponse> AddCustomAttributesAsync(AddCustomAttributesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddCustomAttributesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return InvokeAsync<AddCustomAttributesResponse>(request, options, cancellationToken);
}
#endregion
#region AdminAddUserToGroup
internal virtual AdminAddUserToGroupResponse AdminAddUserToGroup(AdminAddUserToGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AdminAddUserToGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AdminAddUserToGroupResponseUnmarshaller.Instance;
return Invoke<AdminAddUserToGroupResponse>(request, options);
}
/// <summary>
/// Adds the specified user to the specified group.
///
///
/// <para>
/// Calling this action requires developer credentials.
/// </para>
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AdminAddUserToGroup service method.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
///
/// <returns>The response from the AdminAddUserToGroup service method, as returned by CognitoIdentityProvider.</returns>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InternalErrorException">
/// This exception is thrown when Amazon Cognito encounters an internal error.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InvalidParameterException">
/// This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.NotAuthorizedException">
/// This exception is thrown when a user is not authorized.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.ResourceNotFoundException">
/// This exception is thrown when the Amazon Cognito service cannot find the requested
/// resource.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.TooManyRequestsException">
/// This exception is thrown when the user has made too many requests for a given operation.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.UserNotFoundException">
/// This exception is thrown when a user is not found.
/// </exception>
/// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminAddUserToGroup">REST API Reference for AdminAddUserToGroup Operation</seealso>
public virtual Task<AdminAddUserToGroupResponse> AdminAddUserToGroupAsync(AdminAddUserToGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AdminAddUserToGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AdminAddUserToGroupResponseUnmarshaller.Instance;
return InvokeAsync<AdminAddUserToGroupResponse>(request, options, cancellationToken);
}
Project:aws-sdk-net
File:AmazonCognitoIdentityProviderClient.cs
Examples:6
#endregion
#if AWS_ASYNC_ENUMERABLES_API
private ICognitoIdentityProviderPaginatorFactory _paginators;
/// <summary>
/// Paginators for the service
/// </summary>
public ICognitoIdentityProviderPaginatorFactory Paginators
{
get
{
if (this._paginators == null)
{
this._paginators = new CognitoIdentityProviderPaginatorFactory(this);
}
return this._paginators;
}
}
#endif
#region Overrides
/// <summary>
/// Creates the signer for the service.
/// </summary>
protected override AbstractAWSSigner CreateSigner()
{
return new AWS4Signer();
}
#endregion
#region Dispose
/// <summary>
/// Disposes the service client.
/// </summary>
protected override void Dispose(bool disposing)
{
base.Dispose(disposing);
}
#endregion
#region AddCustomAttributes
internal virtual AddCustomAttributesResponse AddCustomAttributes(AddCustomAttributesRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AddCustomAttributesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return Invoke<AddCustomAttributesResponse>(request, options);
}
/// <summary>
/// Adds additional user attributes to the user pool schema.
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AddCustomAttributes service method.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
///
/// <returns>The response from the AddCustomAttributes service method, as returned by CognitoIdentityProvider.</returns>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InternalErrorException">
/// This exception is thrown when Amazon Cognito encounters an internal error.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InvalidParameterException">
/// This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.NotAuthorizedException">
/// This exception is thrown when a user is not authorized.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.ResourceNotFoundException">
/// This exception is thrown when the Amazon Cognito service cannot find the requested
/// resource.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.TooManyRequestsException">
/// This exception is thrown when the user has made too many requests for a given operation.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.UserImportInProgressException">
/// This exception is thrown when you are trying to modify a user pool while a user import
/// job is in progress for that pool.
/// </exception>
/// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AddCustomAttributes">REST API Reference for AddCustomAttributes Operation</seealso>
public virtual Task<AddCustomAttributesResponse> AddCustomAttributesAsync(AddCustomAttributesRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AddCustomAttributesRequestMarshaller.Instance;
options.ResponseUnmarshaller = AddCustomAttributesResponseUnmarshaller.Instance;
return InvokeAsync<AddCustomAttributesResponse>(request, options, cancellationToken);
}
#endregion
#region AdminAddUserToGroup
internal virtual AdminAddUserToGroupResponse AdminAddUserToGroup(AdminAddUserToGroupRequest request)
{
var options = new InvokeOptions();
options.RequestMarshaller = AdminAddUserToGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AdminAddUserToGroupResponseUnmarshaller.Instance;
return Invoke<AdminAddUserToGroupResponse>(request, options);
}
/// <summary>
/// Adds the specified user to the specified group.
///
///
/// <para>
/// Calling this action requires developer credentials.
/// </para>
/// </summary>
/// <param name="request">Container for the necessary parameters to execute the AdminAddUserToGroup service method.</param>
/// <param name="cancellationToken">
/// A cancellation token that can be used by other objects or threads to receive notice of cancellation.
/// </param>
///
/// <returns>The response from the AdminAddUserToGroup service method, as returned by CognitoIdentityProvider.</returns>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InternalErrorException">
/// This exception is thrown when Amazon Cognito encounters an internal error.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.InvalidParameterException">
/// This exception is thrown when the Amazon Cognito service encounters an invalid parameter.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.NotAuthorizedException">
/// This exception is thrown when a user is not authorized.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.ResourceNotFoundException">
/// This exception is thrown when the Amazon Cognito service cannot find the requested
/// resource.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.TooManyRequestsException">
/// This exception is thrown when the user has made too many requests for a given operation.
/// </exception>
/// <exception cref="Amazon.CognitoIdentityProvider.Model.UserNotFoundException">
/// This exception is thrown when a user is not found.
/// </exception>
/// <seealso href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/AdminAddUserToGroup">REST API Reference for AdminAddUserToGroup Operation</seealso>
public virtual Task<AdminAddUserToGroupResponse> AdminAddUserToGroupAsync(AdminAddUserToGroupRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
{
var options = new InvokeOptions();
options.RequestMarshaller = AdminAddUserToGroupRequestMarshaller.Instance;
options.ResponseUnmarshaller = AdminAddUserToGroupResponseUnmarshaller.Instance;
return InvokeAsync<AdminAddUserToGroupResponse>(request, options, cancellationToken);
}
Amazon.CognitoIdentityProvider.Model.Internal.MarshallTransformations.AdminResetUserPasswordRequestMarshaller : IMarshaller
Constructors :
public AdminResetUserPasswordRequestMarshaller()Methods :
public IRequest Marshall(AmazonWebServiceRequest input = )public IRequest Marshall(AdminResetUserPasswordRequest publicRequest = )
public static AdminResetUserPasswordRequestMarshaller get_Instance()
public Type GetType()
public String ToString()
public Boolean Equals(Object obj = )
public Int32 GetHashCode()