GetDashboardEmbedUrlRequest
public struct GetDashboardEmbedUrlRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The ID for the AWS account that contains the dashboard that you’re embedding.
Declaration
Swift
public let awsAccountId: String
-
The ID for the dashboard, also added to the IAM policy.
Declaration
Swift
public let dashboardId: String
-
The authentication method that the user uses to sign in.
Declaration
Swift
public let identityType: IdentityType
-
Remove the reset button on the embedded dashboard. The default is FALSE, which enables the reset button.
Declaration
Swift
public let resetDisabled: Bool?
-
How many minutes the session is valid. The session lifetime must be 15-600 minutes.
Declaration
Swift
public let sessionLifetimeInMinutes: Int64?
-
Remove the undo/redo button on the embedded dashboard. The default is FALSE, which enables the undo/redo button.
Declaration
Swift
public let undoRedoDisabled: Bool?
-
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.
Declaration
Swift
public let userArn: String?
-
init(awsAccountId:dashboardId:identityType:resetDisabled:sessionLifetimeInMinutes:undoRedoDisabled:userArn:)
Undocumented
Declaration
Swift
public init(awsAccountId: String, dashboardId: String, identityType: IdentityType, resetDisabled: Bool? = nil, sessionLifetimeInMinutes: Int64? = nil, undoRedoDisabled: Bool? = nil, userArn: String? = nil)
-
Declaration
Swift
public func validate(name: String) throws