@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
12 lines • 353 B
TypeScript
/** S3™ compatible credentials with secret */
export interface S3CredentialsWithSecret {
/** S3™ compatible access key */
access: string;
/** S3™ compatible access key secret */
secret: string;
/** Tenant id */
tenantId: string;
/** User id */
userId: string;
}
//# sourceMappingURL=S3CredentialsWithSecret.d.ts.map