/*
* 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
{
///
/// A rule that maps a claim name, a claim value, and a match type to a role ARN.
///
public partial class MappingRule
{
private string _claim;
private MappingRuleMatchType _matchType;
private string _roleARN;
private string _value;
///
/// Gets and sets the property Claim.
///
/// The claim name that must be present in the token, for example, "isAdmin" or "paid".
///
///
[AWSProperty(Required=true, Min=1, Max=64)]
public string Claim
{
get { return this._claim; }
set { this._claim = value; }
}
// Check to see if Claim property is set
internal bool IsSetClaim()
{
return this._claim != null;
}
///
/// Gets and sets the property MatchType.
///
/// The match condition that specifies how closely the claim value in the IdP token must
/// match Value
.
///
///
[AWSProperty(Required=true)]
public MappingRuleMatchType MatchType
{
get { return this._matchType; }
set { this._matchType = value; }
}
// Check to see if MatchType property is set
internal bool IsSetMatchType()
{
return this._matchType != null;
}
///
/// Gets and sets the property RoleARN.
///
/// The role ARN.
///
///
[AWSProperty(Required=true, Min=20, Max=2048)]
public string RoleARN
{
get { return this._roleARN; }
set { this._roleARN = value; }
}
// Check to see if RoleARN property is set
internal bool IsSetRoleARN()
{
return this._roleARN != null;
}
///
/// Gets and sets the property Value.
///
/// A brief string that the claim must match, for example, "paid" or "yes".
///
///
[AWSProperty(Required=true, Min=1, Max=128)]
public string Value
{
get { return this._value; }
set { this._value = value; }
}
// Check to see if Value property is set
internal bool IsSetValue()
{
return this._value != null;
}
}
}