TinyliciousConnectionConfig Interface
Parameters for establishing a connection with the a Tinylicious service.
Signature
export interface TinyliciousConnectionConfig
Properties
| Property | Modifiers | Default Value | Type | Description |
|---|---|---|---|---|
| domain | optional |
|
string | Optional. Override of the domain |
| port | optional |
|
number | Optional. Override of the port |
| tokenProvider | optional |
@fluidframework/tinylicious-driver#InsecureTinyliciousTokenProvider | ITokenProvider | Optional. Override of tokenProvider. If a param is not provided, TinyliciousConnectionConfig will use the default tokenProvider which is InsecureTinyliciousTokenProvider with default scopes, which are document read, write and summarizer write. |
Property Details
domain
Optional. Override of the domain
Signature
domain?: string;
Type: string
port
Optional. Override of the port
Signature
port?: number;
Type: number
tokenProvider
Optional. Override of tokenProvider. If a param is not provided, TinyliciousConnectionConfig will use the default tokenProvider which is InsecureTinyliciousTokenProvider with default scopes, which are document read, write and summarizer write.
Signature
tokenProvider?: ITokenProvider;
Type: ITokenProvider