Type AliasIntegrationTrimEnvironmentUsername<S>

IntegrationTrimEnvironmentUsername<S>: IntegrationTrimEnvironmentBase & {
    authType?: "USERNAME";
    password: ConstrainedSecret<S>;
    username: string;
}

Type Parameters