SearchDashboardsRequest

public struct SearchDashboardsRequest : AWSShape
extension QuickSight.SearchDashboardsRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The ID of the AWS account that contains the user whose dashboards you’re searching for.

    Declaration

    Swift

    public let awsAccountId: String
  • The filters to apply to the search. Currently, you can search only by user name, for example, “Filters”: [ { “Name”: “QUICKSIGHT_USER”, “Operator”: “StringEquals”, “Value”: “arn:aws:quicksight:us-east-1:1:user/default/UserName1” } ]

    Declaration

    Swift

    public let filters: [DashboardSearchFilter]
  • The maximum number of results to be returned per request.

    Declaration

    Swift

    public let maxResults: Int?
  • The token for the next set of results, or null if there are no more results.

    Declaration

    Swift

    public let nextToken: String?
  • Undocumented

    Declaration

    Swift

    public init(awsAccountId: String, filters: [DashboardSearchFilter], maxResults: Int? = nil, nextToken: String? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws