DescribeWorkspacesRequest

public struct DescribeWorkspacesRequest : AWSShape
extension WorkSpaces.DescribeWorkspacesRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The identifier of the bundle. All WorkSpaces that are created from this bundle are retrieved. You cannot combine this parameter with any other filter.

    Declaration

    Swift

    public let bundleId: String?
  • The identifier of the directory. In addition, you can optionally specify a specific directory user (see UserName). You cannot combine this parameter with any other filter.

    Declaration

    Swift

    public let directoryId: String?
  • The maximum number of items to return.

    Declaration

    Swift

    public let limit: Int?
  • If you received a NextToken from a previous call that was paginated, provide this token to receive the next set of results.

    Declaration

    Swift

    public let nextToken: String?
  • The name of the directory user. You must specify this parameter with DirectoryId.

    Declaration

    Swift

    public let userName: String?
  • The identifiers of the WorkSpaces. You cannot combine this parameter with any other filter. Because the CreateWorkspaces operation is asynchronous, the identifier it returns is not immediately available. If you immediately call DescribeWorkspaces with this identifier, no information is returned.

    Declaration

    Swift

    public let workspaceIds: [String]?
  • Undocumented

    Declaration

    Swift

    public init(bundleId: String? = nil, directoryId: String? = nil, limit: Int? = nil, nextToken: String? = nil, userName: String? = nil, workspaceIds: [String]? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws