/*
* Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the cognito-identity-2014-06-30.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.CognitoIdentity.Model
{
///
/// Container for the parameters to the GetOpenIdTokenForDeveloperIdentity operation.
/// Registers (or retrieves) a Cognito IdentityId
and an OpenID Connect token
/// for a user authenticated by your backend authentication process. Supplying multiple
/// logins will create an implicit linked account. You can only specify one developer
/// provider as part of the Logins
map, which is linked to the identity pool.
/// The developer provider is the "domain" by which Cognito will refer to your users.
///
///
///
/// You can use GetOpenIdTokenForDeveloperIdentity
to create a new identity
/// and to link new logins (that is, user credentials issued by a public provider or developer
/// provider) to an existing identity. When you want to create a new identity, the IdentityId
/// should be null. When you want to associate a new login with an existing authenticated/unauthenticated
/// identity, you can do so by providing the existing IdentityId
. This API
/// will create the identity in the specified IdentityPoolId
.
///
///
///
/// You must use AWS Developer credentials to call this API.
///
///
public partial class GetOpenIdTokenForDeveloperIdentityRequest : AmazonCognitoIdentityRequest
{
private string _identityId;
private string _identityPoolId;
private Dictionary _logins = new Dictionary();
private long? _tokenDuration;
///
/// Gets and sets the property IdentityId.
///
/// A unique identifier in the format REGION:GUID.
///
///
[AWSProperty(Min=1, Max=55)]
public string IdentityId
{
get { return this._identityId; }
set { this._identityId = value; }
}
// Check to see if IdentityId property is set
internal bool IsSetIdentityId()
{
return this._identityId != null;
}
///
/// Gets and sets the property IdentityPoolId.
///
/// An identity pool ID in the format REGION:GUID.
///
///
[AWSProperty(Required=true, Min=1, Max=55)]
public string IdentityPoolId
{
get { return this._identityPoolId; }
set { this._identityPoolId = value; }
}
// Check to see if IdentityPoolId property is set
internal bool IsSetIdentityPoolId()
{
return this._identityPoolId != null;
}
///
/// Gets and sets the property Logins.
///
/// A set of optional name-value pairs that map provider names to provider tokens. Each
/// name-value pair represents a user from a public provider or developer provider. If
/// the user is from a developer provider, the name-value pair will follow the syntax
/// "developer_provider_name": "developer_user_identifier"
. The developer
/// provider is the "domain" by which Cognito will refer to your users; you provided this
/// domain while creating/updating the identity pool. The developer user identifier is
/// an identifier from your backend that uniquely identifies a user. When you create an
/// identity pool, you can specify the supported logins.
///
///
[AWSProperty(Required=true, Max=10)]
public Dictionary Logins
{
get { return this._logins; }
set { this._logins = value; }
}
// Check to see if Logins property is set
internal bool IsSetLogins()
{
return this._logins != null && this._logins.Count > 0;
}
///
/// Gets and sets the property TokenDuration.
///
/// The expiration time of the token, in seconds. You can specify a custom expiration
/// time for the token so that you can cache it. If you don't provide an expiration time,
/// the token is valid for 15 minutes. You can exchange the token with Amazon STS for
/// temporary AWS credentials, which are valid for a maximum of one hour. The maximum
/// token duration you can set is 24 hours. You should take care in setting the expiration
/// time for a token, as there are significant security implications: an attacker could
/// use a leaked token to access your AWS resources for the token's duration.
///
///
///
/// Please provide for a small grace period, usually no more than 5 minutes, to account
/// for clock skew.
///
///
///
[AWSProperty(Min=1, Max=86400)]
public long TokenDuration
{
get { return this._tokenDuration.GetValueOrDefault(); }
set { this._tokenDuration = value; }
}
// Check to see if TokenDuration property is set
internal bool IsSetTokenDuration()
{
return this._tokenDuration.HasValue;
}
}
}