/*
* Copyright 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 quicksight-2018-04-01.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.QuickSight.Model
{
///
/// A structure that contains the following account information elements:
///
/// -
///
/// Your Amazon QuickSight account name.
///
///
-
///
/// The edition of Amazon QuickSight that your account is using.
///
///
-
///
/// The notification email address that is associated with the Amazon QuickSight account.
///
///
///
-
///
/// The authentication type of the Amazon QuickSight account.
///
///
-
///
/// The status of the Amazon QuickSight account's subscription.
///
///
///
public partial class AccountInfo
{
private string _accountName;
private string _accountSubscriptionStatus;
private string _authenticationType;
private Edition _edition;
private string _notificationEmail;
///
/// Gets and sets the property AccountName.
///
/// The account name that you provided for the Amazon QuickSight subscription in your
/// Amazon Web Services account. You create this name when you sign up for Amazon QuickSight.
/// It's unique over all of Amazon Web Services, and it appears only when users sign in.
///
///
public string AccountName
{
get { return this._accountName; }
set { this._accountName = value; }
}
// Check to see if AccountName property is set
internal bool IsSetAccountName()
{
return this._accountName != null;
}
///
/// Gets and sets the property AccountSubscriptionStatus.
///
/// The status of your account subscription.
///
///
public string AccountSubscriptionStatus
{
get { return this._accountSubscriptionStatus; }
set { this._accountSubscriptionStatus = value; }
}
// Check to see if AccountSubscriptionStatus property is set
internal bool IsSetAccountSubscriptionStatus()
{
return this._accountSubscriptionStatus != null;
}
///
/// Gets and sets the property AuthenticationType.
///
/// The way that your Amazon QuickSight account is authenticated.
///
///
public string AuthenticationType
{
get { return this._authenticationType; }
set { this._authenticationType = value; }
}
// Check to see if AuthenticationType property is set
internal bool IsSetAuthenticationType()
{
return this._authenticationType != null;
}
///
/// Gets and sets the property Edition.
///
/// The edition of your Amazon QuickSight account.
///
///
public Edition Edition
{
get { return this._edition; }
set { this._edition = value; }
}
// Check to see if Edition property is set
internal bool IsSetEdition()
{
return this._edition != null;
}
///
/// Gets and sets the property NotificationEmail.
///
/// The email address that will be used for Amazon QuickSight to send notifications regarding
/// your Amazon Web Services account or Amazon QuickSight subscription.
///
///
public string NotificationEmail
{
get { return this._notificationEmail; }
set { this._notificationEmail = value; }
}
// Check to see if NotificationEmail property is set
internal bool IsSetNotificationEmail()
{
return this._notificationEmail != null;
}
}
}