/* * 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 { /// /// Container for the parameters to the GetDashboardEmbedUrl operation. /// Generates a temporary session URL and authorization code(bearer token) that you can /// use to embed an Amazon QuickSight read-only dashboard in your website or application. /// Before you use this command, make sure that you have configured the dashboards and /// permissions. /// /// /// /// Currently, you can use GetDashboardEmbedURL only from the server, not /// from the user's browser. The following rules apply to the generated URL: /// /// /// /// For more information, see Embedding /// Analytics Using GetDashboardEmbedUrl in the Amazon QuickSight User Guide. /// /// /// /// For more information about the high-level steps for embedding and for an interactive /// demo of the ways you can customize embedding, visit the Amazon /// QuickSight Developer Portal. /// /// public partial class GetDashboardEmbedUrlRequest : AmazonQuickSightRequest { private List _additionalDashboardIds = new List(); private string _awsAccountId; private string _dashboardId; private EmbeddingIdentityType _identityType; private string _awsNamespace; private bool? _resetDisabled; private long? _sessionLifetimeInMinutes; private bool? _statePersistenceEnabled; private bool? _undoRedoDisabled; private string _userArn; /// /// Gets and sets the property AdditionalDashboardIds. /// /// A list of one or more dashboard IDs that you want anonymous users to have tempporary /// access to. Currently, the IdentityType parameter must be set to ANONYMOUS /// because other identity types authenticate as Amazon QuickSight or IAM users. For example, /// if you set "--dashboard-id dash_id1 --dashboard-id dash_id2 dash_id3 identity-type /// ANONYMOUS", the session can access all three dashboards. /// /// [AWSProperty(Min=1, Max=20)] public List AdditionalDashboardIds { get { return this._additionalDashboardIds; } set { this._additionalDashboardIds = value; } } // Check to see if AdditionalDashboardIds property is set internal bool IsSetAdditionalDashboardIds() { return this._additionalDashboardIds != null && this._additionalDashboardIds.Count > 0; } /// /// Gets and sets the property AwsAccountId. /// /// The ID for the Amazon Web Services account that contains the dashboard that you're /// embedding. /// /// [AWSProperty(Required=true, Min=12, Max=12)] public string AwsAccountId { get { return this._awsAccountId; } set { this._awsAccountId = value; } } // Check to see if AwsAccountId property is set internal bool IsSetAwsAccountId() { return this._awsAccountId != null; } /// /// Gets and sets the property DashboardId. /// /// The ID for the dashboard, also added to the Identity and Access Management (IAM) policy. /// /// [AWSProperty(Required=true, Min=1, Max=512)] public string DashboardId { get { return this._dashboardId; } set { this._dashboardId = value; } } // Check to see if DashboardId property is set internal bool IsSetDashboardId() { return this._dashboardId != null; } /// /// Gets and sets the property IdentityType. /// /// The authentication method that the user uses to sign in. /// /// [AWSProperty(Required=true)] public EmbeddingIdentityType IdentityType { get { return this._identityType; } set { this._identityType = value; } } // Check to see if IdentityType property is set internal bool IsSetIdentityType() { return this._identityType != null; } /// /// Gets and sets the property Namespace. /// /// The Amazon QuickSight namespace that contains the dashboard IDs in this request. If /// you're not using a custom namespace, set Namespace = default. /// /// [AWSProperty(Max=64)] public string Namespace { get { return this._awsNamespace; } set { this._awsNamespace = value; } } // Check to see if Namespace property is set internal bool IsSetNamespace() { return this._awsNamespace != null; } /// /// Gets and sets the property ResetDisabled. /// /// Remove the reset button on the embedded dashboard. The default is FALSE, which enables /// the reset button. /// /// public bool ResetDisabled { get { return this._resetDisabled.GetValueOrDefault(); } set { this._resetDisabled = value; } } // Check to see if ResetDisabled property is set internal bool IsSetResetDisabled() { return this._resetDisabled.HasValue; } /// /// Gets and sets the property SessionLifetimeInMinutes. /// /// How many minutes the session is valid. The session lifetime must be 15-600 minutes. /// /// [AWSProperty(Min=15, Max=600)] public long SessionLifetimeInMinutes { get { return this._sessionLifetimeInMinutes.GetValueOrDefault(); } set { this._sessionLifetimeInMinutes = value; } } // Check to see if SessionLifetimeInMinutes property is set internal bool IsSetSessionLifetimeInMinutes() { return this._sessionLifetimeInMinutes.HasValue; } /// /// Gets and sets the property StatePersistenceEnabled. /// /// Adds persistence of state for the user session in an embedded dashboard. Persistence /// applies to the sheet and the parameter settings. These are control settings that the /// dashboard subscriber (Amazon QuickSight reader) chooses while viewing the dashboard. /// If this is set to TRUE, the settings are the same when the subscriber /// reopens the same dashboard URL. The state is stored in Amazon QuickSight, not in a /// browser cookie. If this is set to FALSE, the state of the user session is not persisted. /// The default is FALSE. /// /// public bool StatePersistenceEnabled { get { return this._statePersistenceEnabled.GetValueOrDefault(); } set { this._statePersistenceEnabled = value; } } // Check to see if StatePersistenceEnabled property is set internal bool IsSetStatePersistenceEnabled() { return this._statePersistenceEnabled.HasValue; } /// /// Gets and sets the property UndoRedoDisabled. /// /// Remove the undo/redo button on the embedded dashboard. The default is FALSE, which /// enables the undo/redo button. /// /// public bool UndoRedoDisabled { get { return this._undoRedoDisabled.GetValueOrDefault(); } set { this._undoRedoDisabled = value; } } // Check to see if UndoRedoDisabled property is set internal bool IsSetUndoRedoDisabled() { return this._undoRedoDisabled.HasValue; } /// /// Gets and sets the property UserArn. /// /// The Amazon QuickSight user's Amazon Resource Name (ARN), for use with QUICKSIGHT /// identity type. You can use this for any Amazon QuickSight users in your account (readers, /// authors, or admins) authenticated as one of the following: /// ///
  • /// /// Active Directory (AD) users or group members /// ///
  • /// /// Invited nonfederated users /// ///
  • /// /// IAM users and IAM role-based sessions authenticated through Federated Single Sign-On /// using SAML, OpenID Connect, or IAM federation. /// ///
/// /// Omit this parameter for users in the third group – IAM users and IAM role-based sessions. /// ///
public string UserArn { get { return this._userArn; } set { this._userArn = value; } } // Check to see if UserArn property is set internal bool IsSetUserArn() { return this._userArn != null; } } }