GetTranscriptRequest

public struct GetTranscriptRequest : AWSShape
extension ConnectParticipant.GetTranscriptRequest: AWSPaginateStringToken

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The authentication token associated with the participant’s connection.

    Declaration

    Swift

    public let connectionToken: String
  • The contactId from the current contact chain for which transcript is needed.

    Declaration

    Swift

    public let contactId: String?
  • The maximum number of results to return in the page. Default: 10.

    Declaration

    Swift

    public let maxResults: Int?
  • The pagination token. Use the value returned previously in the next subsequent request to retrieve the next set of results.

    Declaration

    Swift

    public let nextToken: String?
  • The direction from StartPosition from which to retrieve message. Default: BACKWARD when no StartPosition is provided, FORWARD with StartPosition.

    Declaration

    Swift

    public let scanDirection: ScanDirection?
  • The sort order for the records. Default: DESCENDING.

    Declaration

    Swift

    public let sortOrder: SortKey?
  • A filtering option for where to start.

    Declaration

    Swift

    public let startPosition: StartPosition?
  • Undocumented

    Declaration

    Swift

    public init(connectionToken: String, contactId: String? = nil, maxResults: Int? = nil, nextToken: String? = nil, scanDirection: ScanDirection? = nil, sortOrder: SortKey? = nil, startPosition: StartPosition? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws