using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
namespace Amazon.S3.Model
{
///
/// This class contains the mfa codes used authentication
///
public class MfaCodes
{
///
/// Gets and sets the serial number of the authentication device
///
public string SerialNumber
{
get;
set;
}
///
/// Gets and sets the displated value on the authentication device
///
public string AuthenticationValue
{
get;
set;
}
///
/// The formatted string of the mfa codes to be passed to S3.
///
public string FormattedMfaCodes
{
get { return string.Format(CultureInfo.InvariantCulture, "{0} {1}", SerialNumber, AuthenticationValue); }
}
}
}